Jumpgate state fix.
This commit is contained in:
parent
c175ccb35f
commit
c215dc75d3
|
@ -66,7 +66,7 @@
|
|||
"type" : "ET_JUMPGATE",
|
||||
"x" : 48,
|
||||
"y" : 48,
|
||||
"active" : 0
|
||||
"flags" : "+EF_DISABLED"
|
||||
}
|
||||
],
|
||||
"spawners" : [
|
||||
|
@ -93,7 +93,7 @@
|
|||
{
|
||||
"function" : "ENEMIES_KILLED 80",
|
||||
"lines" : [
|
||||
"MSG_BOX UNF Hopper;We're picking up a lot of chatter on the mercenaries' channels. They're not happy how things are going.",
|
||||
"MSG_BOX UNF Hopper;We're picking up a lot of chatter on the mercenaries' channels. They're not happy with how things are going.",
|
||||
"MSG_BOX Wing Commander;Then let's concentrate on making them even more unhappy."
|
||||
]
|
||||
},
|
||||
|
|
|
@ -32,8 +32,15 @@ static float portalAngle;
|
|||
|
||||
Entity *spawnJumpgate(int side, long flags)
|
||||
{
|
||||
Entity *jumpgate = spawnEntity();
|
||||
Entity *jumpgate;
|
||||
|
||||
if (battle.jumpgate)
|
||||
{
|
||||
printf("ERROR: Only one jumpgate is allowed\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
jumpgate = spawnEntity();
|
||||
jumpgate->type = ET_JUMPGATE;
|
||||
jumpgate->health = jumpgate->maxHealth = 1;
|
||||
jumpgate->texture = getTexture("gfx/entities/jumpgate.png");
|
||||
|
@ -41,6 +48,10 @@ Entity *spawnJumpgate(int side, long flags)
|
|||
jumpgate->draw = draw;
|
||||
jumpgate->side = side;
|
||||
jumpgate->flags = EF_NO_MT_BOX+EF_IMMORTAL+EF_AI_IGNORE;
|
||||
if (flags & EF_DISABLED)
|
||||
{
|
||||
jumpgate->flags |= EF_DISABLED;
|
||||
}
|
||||
|
||||
addNodes(jumpgate, flags);
|
||||
|
||||
|
@ -49,6 +60,8 @@ Entity *spawnJumpgate(int side, long flags)
|
|||
|
||||
SDL_QueryTexture(jumpgate->texture, NULL, NULL, &jumpgate->w, &jumpgate->h);
|
||||
|
||||
battle.jumpgate = jumpgate;
|
||||
|
||||
return jumpgate;
|
||||
}
|
||||
|
||||
|
@ -129,6 +142,7 @@ static void think(void)
|
|||
self->thinkTime = 4;
|
||||
|
||||
self->angle += 0.1;
|
||||
|
||||
if (self->angle >= 360)
|
||||
{
|
||||
self->angle -= 360;
|
||||
|
@ -139,20 +153,13 @@ static void think(void)
|
|||
handleFleeingEntities();
|
||||
}
|
||||
|
||||
if (!battle.jumpgate)
|
||||
{
|
||||
battle.jumpgate = self;
|
||||
}
|
||||
|
||||
if (battle.jumpgate == self)
|
||||
{
|
||||
portalAngle += 2;
|
||||
|
||||
if (portalAngle >= 360)
|
||||
{
|
||||
portalAngle -= 360;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void handleFleeingEntities(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue