/* 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 "entities.h" static Entity deadHead; static Entity *deadTail; static void drawEntity(Entity *e); static void doEntity(void); static void alignComponents(void); static void drawEntity(Entity *e); static void activateEpicFighters(int n, int side); static void restrictToGrid(Entity *e); static void drawTargetRects(Entity *e); static int drawComparator(const void *a, const void *b); void initEntities(void) { memset(&deadHead, 0, sizeof(Entity)); deadTail = &deadHead; } Entity *spawnEntity(void) { Entity *e = malloc(sizeof(Entity)); memset(e, 0, sizeof(Entity)); e->id = battle.entId++; e->active = 1; battle.entityTail->next = e; battle.entityTail = e; return e; } void doEntities(void) { int numAllies, numEnemies; int numActiveAllies, numActiveEnemies; Entity *e, *prev; prev = &battle.entityHead; numAllies = numEnemies = numActiveAllies = numActiveEnemies = 0; destroyGrid(); for (e = battle.entityHead.next ; e != NULL ; e = e->next) { if (e->active && e->alive != ALIVE_DEAD) { addToGrid(e); } } if (dev.playerImmortal) { player->health = player->maxHealth; player->shield = player->maxShield; } for (e = battle.entityHead.next ; e != NULL ; e = e->next) { if (dev.allImmortal) { e->health = e->maxHealth; e->shield = e->maxShield; } if (e->active) { self = e; e->reload = MAX(e->reload - 1, 0); if (e->shieldRechargeRate) { if (e->shield >= 0) { if (--e->shieldRecharge <= 0) { e->shield = MIN(e->shield + 1, e->maxShield); e->shieldRecharge = e->shieldRechargeRate; } } else { e->shield++; } } e->armourHit = MAX(e->armourHit - 25, 0); e->shieldHit = MAX(e->shieldHit - 5, 0); e->systemHit = MAX(e->systemHit - 25, 0); e->aiDamageTimer = MAX(e->aiDamageTimer - 1, 0); if (!e->aiDamageTimer) { e->aiDamagePerSec = 0; e->aiFlags &= ~AIF_EVADE; } switch (e->type) { case ET_FIGHTER: doFighter(); break; case ET_CAPITAL_SHIP: doCapitalShip(); break; default: doEntity(); break; } if (e->alive == ALIVE_ALIVE || e->alive == ALIVE_DYING) { if (e->action != NULL) { if (dev.noEntityActions) { e->thinkTime = 2; } if (--e->thinkTime <= 0) { e->thinkTime = 0; e->action(); } } doRope(e); restrictToGrid(e); if (!e->speed) { e->dx = e->dy = 0; } e->x += e->dx; e->y += e->dy; } else { if (e == battle.entityTail) { battle.entityTail = prev; } if (e == battle.missionTarget) { battle.missionTarget = NULL; } if (e == player) { player = NULL; battle.playerSelect = battle.epic; } cutRope(e); prev->next = e->next; /* move to dead list */ e->next = NULL; deadTail->next = e; deadTail = e; e = prev; } } if (e->type == ET_FIGHTER || e->type == ET_CAPITAL_SHIP) { if (e->side == SIDE_ALLIES) { numAllies++; if (e->health > 0 && e->active) { numActiveAllies++; } } else { numEnemies++; if (e->health > 0 && e->active) { numActiveEnemies++; } } } prev = e; } battle.numAllies = (battle.epic) ? numAllies : numActiveAllies; battle.numEnemies = (battle.epic) ? numEnemies : numActiveEnemies; if (!battle.numInitialEnemies) { battle.numInitialEnemies = battle.numEnemies; } if (battle.epic && battle.stats[STAT_TIME] % FPS == 0) { if (numAllies > battle.epicFighterLimit) { activateEpicFighters(battle.epicFighterLimit - numActiveAllies, SIDE_ALLIES); } if (numEnemies > battle.epicFighterLimit) { activateEpicFighters(battle.epicFighterLimit - numActiveEnemies, SIDE_NONE); } } alignComponents(); } static void restrictToGrid(Entity *e) { float force; if (e->x <= GRID_RESTRICTION_SIZE) { force = GRID_RESTRICTION_SIZE - e->x; e->dx += force * 0.001; e->dx *= 0.95; } if (e->y <= GRID_RESTRICTION_SIZE) { force = GRID_RESTRICTION_SIZE - e->y; e->dy += force * 0.001; e->dy *= 0.95; } if (e->x >= (GRID_SIZE * GRID_CELL_WIDTH) - GRID_RESTRICTION_SIZE) { force = e->x - ((GRID_SIZE * GRID_CELL_WIDTH) - GRID_RESTRICTION_SIZE); e->dx -= force * 0.001; e->dx *= 0.95; } if (e->y >= (GRID_SIZE * GRID_CELL_HEIGHT) - GRID_RESTRICTION_SIZE) { force = e->y - ((GRID_SIZE * GRID_CELL_HEIGHT) - GRID_RESTRICTION_SIZE); e->dy -= force * 0.001; e->dy *= 0.95; } } static void doEntity(void) { if (self->die) { if (self->health <= 0 && self->alive == ALIVE_ALIVE) { self->health = 0; self->alive = ALIVE_DYING; self->die(); if (self == battle.missionTarget) { battle.missionTarget = NULL; } } } else { if (self->alive == ALIVE_DYING) { self->alive = ALIVE_DEAD; } else if (self->health <= 0) { self->alive = ALIVE_DYING; } } } static void alignComponents(void) { Entity *e; float x, y; float c, s; for (e = battle.entityHead.next ; e != NULL ; e = e->next) { if (e->type == ET_CAPITAL_SHIP_COMPONENT || e->type == ET_CAPITAL_SHIP_GUN || e->type == ET_CAPITAL_SHIP_ENGINE) { s = sin(TO_RAIDANS(e->owner->angle)); c = cos(TO_RAIDANS(e->owner->angle)); x = (e->offsetX * c) - (e->offsetY * s); y = (e->offsetX * s) + (e->offsetY * c); x += e->owner->x; y += e->owner->y; e->x = x; e->y = y; if (e->flags & EF_STATIC) { e->angle = e->owner->angle; } } } } void drawEntities(void) { Entity *e, **candidates; int i; candidates = getAllEntsWithin(battle.camera.x, battle.camera.y, SCREEN_WIDTH, SCREEN_HEIGHT, NULL); /* count number of candidates for use with qsort */ for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i]) {} qsort(candidates, i, sizeof(Entity*), drawComparator); for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i]) { if (e->active) { drawEntity(e); } drawTargetRects(e); drawRope(e); } } static void drawEntity(Entity *e) { SDL_SetTextureColorMod(e->texture, 255, 255, 255); if (e->armourHit > 0) { SDL_SetTextureColorMod(e->texture, 255, 255 - e->armourHit, 255 - e->armourHit); } if (e->systemHit > 0) { SDL_SetTextureColorMod(e->texture, 255 - e->systemHit, 255, 255); } blitRotated(e->texture, e->x - battle.camera.x, e->y - battle.camera.y, e->angle); if (e->shieldHit > 0) { drawShieldHitEffect(e); } SDL_SetTextureColorMod(e->texture, 255, 255, 255); } static void drawTargetRects(Entity *e) { SDL_Rect r; int size = MAX(e->w, e->h) + 16; if (player != NULL && e == player->target) { r.x = e->x - (size / 2) - battle.camera.x; r.y = e->y - (size / 2) - battle.camera.y; r.w = size; r.h = size; SDL_SetRenderDrawColor(app.renderer, 255, 0, 0, 255); SDL_RenderDrawRect(app.renderer, &r); } if ((e == battle.missionTarget || e->flags & EF_MISSION_TARGET) && (e->flags & EF_NO_MT_BOX) == 0) { r.x = e->x - (size / 2) - battle.camera.x - 4; r.y = e->y - (size / 2) - battle.camera.y - 4; r.w = size + 8; r.h = size + 8; SDL_SetRenderDrawColor(app.renderer, 0, 255, 0, 255); SDL_RenderDrawRect(app.renderer, &r); } } void activateEntities(char *names) { Entity *e; char *name; name = strtok(names, ";"); while (name) { for (e = battle.entityHead.next ; e != NULL ; e = e->next) { if (strcmp(e->name, name) == 0) { e->active = 1; if (e->type == ET_CAPITAL_SHIP) { updateCapitalShipComponentProperties(e); } } } name = strtok(NULL, ";"); } } void activateEntityGroups(char *groupNames) { Entity *e; char *groupName; groupName = strtok(groupNames, ";"); while (groupName) { for (e = battle.entityHead.next ; e != NULL ; e = e->next) { if (strcmp(e->groupName, groupName) == 0) { e->active = 1; } } groupName = strtok(NULL, ";"); } } static void activateEpicFighters(int n, int side) { Entity *e; if (n > 0) { for (e = battle.entityHead.next ; e != NULL ; e = e->next) { if (!e->active && e->type == ET_FIGHTER && !(e->flags & EF_NO_EPIC) && ((side == SIDE_ALLIES && e->side == SIDE_ALLIES) || (side != SIDE_ALLIES && e->side != SIDE_ALLIES))) { e->active = 1; if (--n <= 0) { return; } } } } } static int drawComparator(const void *a, const void *b) { Entity *e1 = *((Entity**)a); Entity *e2 = *((Entity**)b); return e2->type - e1->type; } void destroyEntities(void) { Entity *e; while (deadHead.next) { e = deadHead.next; deadHead.next = e->next; free(e); } deadTail = &deadHead; }