tbftss/src/battle/objectives.c

179 lines
3.6 KiB
C
Raw Normal View History

2015-10-20 13:51:49 +02:00
/*
Copyright (C) 2015 Parallel Realities
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "objectives.h"
void completeConditions(void);
2015-10-20 13:51:49 +02:00
void failIncompleteObjectives(void);
void doObjectives(void)
{
int objectiveFailed;
2015-10-29 12:08:47 +01:00
int numHiddenObjectives;
2015-10-20 13:51:49 +02:00
Objective *o;
battle.numObjectivesComplete = battle.numObjectivesTotal = 0;
objectiveFailed = 0;
2015-10-29 12:08:47 +01:00
numHiddenObjectives = 0;
2015-10-20 13:51:49 +02:00
for (o = battle.objectiveHead.next ; o != NULL ; o = o->next)
{
2015-10-29 12:08:47 +01:00
if (o->active)
{
2015-10-29 12:08:47 +01:00
if (!o->isCondition)
{
battle.numObjectivesTotal++;
}
}
else
{
numHiddenObjectives++;
}
2015-10-20 13:51:49 +02:00
if (o->currentValue == o->targetValue)
{
2015-10-21 20:21:45 +02:00
switch (o->status)
{
case OS_COMPLETE:
battle.numObjectivesComplete++;
break;
case OS_FAILED:
if (!o->isOptional)
2015-10-21 20:21:45 +02:00
{
objectiveFailed = 1;
2015-10-21 20:21:45 +02:00
}
break;
}
2015-10-20 13:51:49 +02:00
}
}
2015-10-21 20:21:45 +02:00
if (battle.status == MS_IN_PROGRESS)
2015-10-20 13:51:49 +02:00
{
2015-10-29 12:08:47 +01:00
if (numHiddenObjectives == 0 && battle.numObjectivesTotal > 0 && battle.numObjectivesComplete == battle.numObjectivesTotal)
2015-10-21 20:21:45 +02:00
{
2015-10-26 09:10:13 +01:00
completeMission();
2015-10-21 20:21:45 +02:00
completeConditions();
2015-10-21 20:21:45 +02:00
updateChallenges();
}
2015-10-20 13:51:49 +02:00
if (objectiveFailed)
2015-10-21 20:21:45 +02:00
{
2015-10-26 09:10:13 +01:00
failMission();
failIncompleteObjectives();
2015-10-21 20:21:45 +02:00
}
2015-10-20 13:51:49 +02:00
}
}
void updateObjective(char *name, int type)
2015-10-20 13:51:49 +02:00
{
Objective *o;
for (o = battle.objectiveHead.next ; o != NULL ; o = o->next)
{
2015-10-29 12:08:47 +01:00
if (o->active && !o->isCondition && o->targetType == type && o->currentValue < o->targetValue && strcmp(o->targetName, name) == 0)
2015-10-20 13:51:49 +02:00
{
2015-10-21 20:21:45 +02:00
o->currentValue++;
2015-10-20 13:51:49 +02:00
if (o->targetValue - o->currentValue <= 10)
{
addHudMessage(colors.cyan, "%s - %d / %d", o->description, o->currentValue, o->targetValue);
}
else if (o->currentValue % 10 == 0)
{
addHudMessage(colors.cyan, "%s - %d / %d", o->description, o->currentValue, o->targetValue);
}
if (o->currentValue == o->targetValue)
{
2015-10-21 20:21:45 +02:00
o->status = OS_COMPLETE;
addHudMessage(colors.green, "%s - Objective Complete!", o->description);
}
}
}
}
void updateCondition(char *name, int type)
2015-10-21 20:21:45 +02:00
{
Objective *o;
for (o = battle.objectiveHead.next ; o != NULL ; o = o->next)
{
2015-10-29 12:08:47 +01:00
if (o->active && o->isCondition && o->targetType == type && o->currentValue < o->targetValue && strcmp(o->targetName, name) == 0)
2015-10-21 20:21:45 +02:00
{
o->currentValue++;
if (o->currentValue == o->targetValue)
{
o->status = OS_FAILED;
addHudMessage(colors.red, "%s - Objective Failed!", o->description);
2015-10-20 13:51:49 +02:00
}
}
}
}
void completeConditions(void)
{
Objective *o;
for (o = battle.objectiveHead.next ; o != NULL ; o = o->next)
{
if (o->isCondition)
{
o->status = OS_COMPLETE;
}
}
}
2015-10-20 13:51:49 +02:00
void failIncompleteObjectives(void)
{
Objective *o;
for (o = battle.objectiveHead.next ; o != NULL ; o = o->next)
{
if (o->status != OS_COMPLETE)
{
o->status = OS_FAILED;
}
}
}
2015-10-29 12:08:47 +01:00
void activateObjective(int num)
{
int i = 0;
Objective *o;
for (o = battle.objectiveHead.next ; o != NULL ; o = o->next)
{
if (i == num)
{
addHudMessage(colors.cyan, "New Objectives : %s", o->description);
o->active = 1;
return;
}
i++;
}
}