Cleanup floater and add sanity checks

This commit is contained in:
Yamagi Burmeister 2014-02-04 17:29:21 +01:00
parent e2edf54062
commit 73899ec20c
2 changed files with 477 additions and 307 deletions

View file

@ -1,15 +1,13 @@
/* /* =======================================================================
============================================================================== *
* Mechanic.
floater *
* =======================================================================
==============================================================================
*/ */
#include "../../header/local.h" #include "../../header/local.h"
#include "float.h" #include "float.h"
static int sound_attack2; static int sound_attack2;
static int sound_attack3; static int sound_attack3;
static int sound_death1; static int sound_death1;
@ -18,26 +16,37 @@ static int sound_pain1;
static int sound_pain2; static int sound_pain2;
static int sound_sight; static int sound_sight;
void floater_sight (edict_t *self, edict_t *other)
{
gi.sound (self, CHAN_VOICE, sound_sight, 1, ATTN_NORM, 0);
}
void floater_idle (edict_t *self)
{
gi.sound (self, CHAN_VOICE, sound_idle, 1, ATTN_IDLE, 0);
}
void floater_dead(edict_t *self); void floater_dead(edict_t *self);
void floater_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point); void floater_die(edict_t *self, edict_t *inflictor, edict_t *attacker,
int damage, vec3_t point);
void floater_run(edict_t *self); void floater_run(edict_t *self);
void floater_wham(edict_t *self); void floater_wham(edict_t *self);
void floater_zap(edict_t *self); void floater_zap(edict_t *self);
void
floater_sight(edict_t *self, edict_t *other /* unused */)
{
if (!self)
{
return;
}
void floater_fire_blaster (edict_t *self) gi.sound(self, CHAN_VOICE, sound_sight, 1, ATTN_NORM, 0);
}
void
floater_idle(edict_t *self)
{
if (!self)
{
return;
}
gi.sound(self, CHAN_VOICE, sound_idle, 1, ATTN_IDLE, 0);
}
void
floater_fire_blaster(edict_t *self)
{ {
vec3_t start; vec3_t start;
vec3_t forward, right; vec3_t forward, right;
@ -45,12 +54,23 @@ void floater_fire_blaster (edict_t *self)
vec3_t dir; vec3_t dir;
int effect; int effect;
if (!self)
{
return;
}
if ((self->s.frame == FRAME_attak104) || (self->s.frame == FRAME_attak107)) if ((self->s.frame == FRAME_attak104) || (self->s.frame == FRAME_attak107))
{
effect = EF_HYPERBLASTER; effect = EF_HYPERBLASTER;
}
else else
{
effect = 0; effect = 0;
}
AngleVectors(self->s.angles, forward, right, NULL); AngleVectors(self->s.angles, forward, right, NULL);
G_ProjectSource (self->s.origin, monster_flash_offset[MZ2_FLOAT_BLASTER_1], forward, right, start); G_ProjectSource(self->s.origin, monster_flash_offset[MZ2_FLOAT_BLASTER_1], forward,
right, start);
VectorCopy(self->enemy->s.origin, end); VectorCopy(self->enemy->s.origin, end);
end[2] += self->enemy->viewheight; end[2] += self->enemy->viewheight;
@ -59,9 +79,7 @@ void floater_fire_blaster (edict_t *self)
monster_fire_blaster(self, start, dir, 1, 1000, MZ2_FLOAT_BLASTER_1, effect); monster_fire_blaster(self, start, dir, 1, 1000, MZ2_FLOAT_BLASTER_1, effect);
} }
mframe_t floater_frames_stand1[] = {
mframe_t floater_frames_stand1 [] =
{
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
@ -115,10 +133,15 @@ mframe_t floater_frames_stand1 [] =
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
{ai_stand, 0, NULL} {ai_stand, 0, NULL}
}; };
mmove_t floater_move_stand1 = {FRAME_stand101, FRAME_stand152, floater_frames_stand1, NULL};
mframe_t floater_frames_stand2 [] = mmove_t floater_move_stand1 = {
{ FRAME_stand101,
FRAME_stand152,
floater_frames_stand1,
NULL
};
mframe_t floater_frames_stand2[] = {
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
@ -172,18 +195,33 @@ mframe_t floater_frames_stand2 [] =
{ai_stand, 0, NULL}, {ai_stand, 0, NULL},
{ai_stand, 0, NULL} {ai_stand, 0, NULL}
}; };
mmove_t floater_move_stand2 = {FRAME_stand201, FRAME_stand252, floater_frames_stand2, NULL};
void floater_stand (edict_t *self) mmove_t floater_move_stand2 = {
FRAME_stand201,
FRAME_stand252,
floater_frames_stand2,
NULL
};
void
floater_stand(edict_t *self)
{ {
if (random() <= 0.5) if (!self)
self->monsterinfo.currentmove = &floater_move_stand1; {
else return;
self->monsterinfo.currentmove = &floater_move_stand2;
} }
mframe_t floater_frames_activate [] = if (random() <= 0.5)
{ {
self->monsterinfo.currentmove = &floater_move_stand1;
}
else
{
self->monsterinfo.currentmove = &floater_move_stand2;
}
}
mframe_t floater_frames_activate[] = {
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
@ -215,30 +253,40 @@ mframe_t floater_frames_activate [] =
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL} {ai_move, 0, NULL}
}; };
mmove_t floater_move_activate = {FRAME_actvat01, FRAME_actvat31, floater_frames_activate, NULL};
mframe_t floater_frames_attack1 [] = mmove_t floater_move_activate = {
{ FRAME_actvat01,
{ai_charge, 0, NULL}, // Blaster attack FRAME_actvat31,
{ai_charge, 0, NULL}, floater_frames_activate,
{ai_charge, 0, NULL}, NULL
{ai_charge, 0, floater_fire_blaster}, // BOOM (0, -25.8, 32.5) -- LOOP Starts
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, NULL},
{ai_charge, 0, NULL},
{ai_charge, 0, NULL},
{ai_charge, 0, NULL} // -- LOOP Ends
}; };
mmove_t floater_move_attack1 = {FRAME_attak101, FRAME_attak114, floater_frames_attack1, floater_run};
mframe_t floater_frames_attack2 [] = mframe_t floater_frames_attack1[] = {
{ {ai_charge, 0, NULL}, /* Blaster attack */
{ai_charge, 0, NULL}, // Claws {ai_charge, 0, NULL},
{ai_charge, 0, NULL},
{ai_charge, 0, floater_fire_blaster}, /* BOOM (0, -25.8, 32.5) -- LOOP Starts */
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, floater_fire_blaster},
{ai_charge, 0, NULL},
{ai_charge, 0, NULL},
{ai_charge, 0, NULL},
{ai_charge, 0, NULL} /* -- LOOP Ends */
};
mmove_t floater_move_attack1 = {
FRAME_attak101,
FRAME_attak114,
floater_frames_attack1,
floater_run
};
mframe_t floater_frames_attack2[] = {
{ai_charge, 0, NULL}, /* Claws */
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
@ -249,14 +297,14 @@ mframe_t floater_frames_attack2 [] =
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, floater_wham}, // WHAM (0, -45, 29}.6) -- LOOP Starts {ai_charge, 0, floater_wham}, /* WHAM (0, -45, 29}.6) -- LOOP Starts */
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, // -- LOOP Ends {ai_charge, 0, NULL}, /* -- LOOP Ends */
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
@ -264,10 +312,15 @@ mframe_t floater_frames_attack2 [] =
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL} {ai_charge, 0, NULL}
}; };
mmove_t floater_move_attack2 = {FRAME_attak201, FRAME_attak225, floater_frames_attack2, floater_run};
mframe_t floater_frames_attack3 [] = mmove_t floater_move_attack2 = {
{ FRAME_attak201,
FRAME_attak225,
floater_frames_attack2,
floater_run
};
mframe_t floater_frames_attack3[] = {
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
@ -276,7 +329,7 @@ mframe_t floater_frames_attack3 [] =
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, floater_zap}, // -- LOOP Starts {ai_charge, 0, floater_zap}, /* -- LOOP Starts */
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
@ -296,17 +349,22 @@ mframe_t floater_frames_attack3 [] =
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, // -- LOOP Ends {ai_charge, 0, NULL}, /* -- LOOP Ends */
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL}, {ai_charge, 0, NULL},
{ai_charge, 0, NULL} {ai_charge, 0, NULL}
}; };
mmove_t floater_move_attack3 = {FRAME_attak301, FRAME_attak334, floater_frames_attack3, floater_run};
mframe_t floater_frames_death [] = mmove_t floater_move_attack3 = {
{ FRAME_attak301,
FRAME_attak334,
floater_frames_attack3,
floater_run
};
mframe_t floater_frames_death[] = {
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
@ -321,10 +379,15 @@ mframe_t floater_frames_death [] =
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL} {ai_move, 0, NULL}
}; };
mmove_t floater_move_death = {FRAME_death01, FRAME_death13, floater_frames_death, floater_dead};
mframe_t floater_frames_pain1 [] = mmove_t floater_move_death = {
{ FRAME_death01,
FRAME_death13,
floater_frames_death,
floater_dead
};
mframe_t floater_frames_pain1[] = {
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
@ -333,10 +396,15 @@ mframe_t floater_frames_pain1 [] =
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL} {ai_move, 0, NULL}
}; };
mmove_t floater_move_pain1 = {FRAME_pain101, FRAME_pain107, floater_frames_pain1, floater_run};
mframe_t floater_frames_pain2 [] = mmove_t floater_move_pain1 = {
{ FRAME_pain101,
FRAME_pain107,
floater_frames_pain1,
floater_run
};
mframe_t floater_frames_pain2[] = {
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
@ -346,10 +414,15 @@ mframe_t floater_frames_pain2 [] =
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL} {ai_move, 0, NULL}
}; };
mmove_t floater_move_pain2 = {FRAME_pain201, FRAME_pain208, floater_frames_pain2, floater_run};
mframe_t floater_frames_pain3 [] = mmove_t floater_move_pain2 = {
{ FRAME_pain201,
FRAME_pain208,
floater_frames_pain2,
floater_run
};
mframe_t floater_frames_pain3[] = {
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL}, {ai_move, 0, NULL},
@ -363,10 +436,15 @@ mframe_t floater_frames_pain3 [] =
{ai_move, 0, NULL}, {ai_move, 0, NULL},
{ai_move, 0, NULL} {ai_move, 0, NULL}
}; };
mmove_t floater_move_pain3 = {FRAME_pain301, FRAME_pain312, floater_frames_pain3, floater_run};
mframe_t floater_frames_walk [] = mmove_t floater_move_pain3 = {
{ FRAME_pain301,
FRAME_pain312,
floater_frames_pain3,
floater_run
};
mframe_t floater_frames_walk[] = {
{ai_walk, 5, NULL}, {ai_walk, 5, NULL},
{ai_walk, 5, NULL}, {ai_walk, 5, NULL},
{ai_walk, 5, NULL}, {ai_walk, 5, NULL},
@ -420,10 +498,15 @@ mframe_t floater_frames_walk [] =
{ai_walk, 5, NULL}, {ai_walk, 5, NULL},
{ai_walk, 5, NULL} {ai_walk, 5, NULL}
}; };
mmove_t floater_move_walk = {FRAME_stand101, FRAME_stand152, floater_frames_walk, NULL};
mframe_t floater_frames_run [] = mmove_t floater_move_walk = {
{ FRAME_stand101,
FRAME_stand152,
floater_frames_walk,
NULL
};
mframe_t floater_frames_run[] = {
{ai_run, 13, NULL}, {ai_run, 13, NULL},
{ai_run, 13, NULL}, {ai_run, 13, NULL},
{ai_run, 13, NULL}, {ai_run, 13, NULL},
@ -477,86 +560,148 @@ mframe_t floater_frames_run [] =
{ai_run, 13, NULL}, {ai_run, 13, NULL},
{ai_run, 13, NULL} {ai_run, 13, NULL}
}; };
mmove_t floater_move_run = {FRAME_stand101, FRAME_stand152, floater_frames_run, NULL};
void floater_run (edict_t *self) mmove_t floater_move_run = {
FRAME_stand101,
FRAME_stand152,
floater_frames_run,
NULL
};
void
floater_run(edict_t *self)
{ {
if (self->monsterinfo.aiflags & AI_STAND_GROUND) if (!self)
self->monsterinfo.currentmove = &floater_move_stand1; {
else return;
self->monsterinfo.currentmove = &floater_move_run;
} }
void floater_walk (edict_t *self) if (self->monsterinfo.aiflags & AI_STAND_GROUND)
{ {
self->monsterinfo.currentmove = &floater_move_stand1;
}
else
{
self->monsterinfo.currentmove = &floater_move_run;
}
}
void
floater_walk(edict_t *self)
{
if (!self)
{
return;
}
self->monsterinfo.currentmove = &floater_move_walk; self->monsterinfo.currentmove = &floater_move_walk;
} }
void floater_wham (edict_t *self) void
floater_wham(edict_t *self)
{ {
static vec3_t aim = {MELEE_DISTANCE, 0, 0}; static vec3_t aim = {MELEE_DISTANCE, 0, 0};
if (!self)
{
return;
}
gi.sound(self, CHAN_WEAPON, sound_attack3, 1, ATTN_NORM, 0); gi.sound(self, CHAN_WEAPON, sound_attack3, 1, ATTN_NORM, 0);
fire_hit(self, aim, 5 + rand() % 6, -50); fire_hit(self, aim, 5 + rand() % 6, -50);
} }
void floater_zap (edict_t *self) void
floater_zap(edict_t *self)
{ {
vec3_t forward, right; vec3_t forward, right;
vec3_t origin; vec3_t origin;
vec3_t dir; vec3_t dir;
vec3_t offset; vec3_t offset;
if (!self)
{
return;
}
VectorSubtract(self->enemy->s.origin, self->s.origin, dir); VectorSubtract(self->enemy->s.origin, self->s.origin, dir);
AngleVectors(self->s.angles, forward, right, NULL); AngleVectors(self->s.angles, forward, right, NULL);
//FIXME use a flash and replace these two lines with the commented one
VectorSet(offset, 18.5, -0.9, 10); VectorSet(offset, 18.5, -0.9, 10);
G_ProjectSource(self->s.origin, offset, forward, right, origin); G_ProjectSource(self->s.origin, offset, forward, right, origin);
gi.sound(self, CHAN_WEAPON, sound_attack2, 1, ATTN_NORM, 0); gi.sound(self, CHAN_WEAPON, sound_attack2, 1, ATTN_NORM, 0);
//FIXME use the flash, Luke
gi.WriteByte(svc_temp_entity); gi.WriteByte(svc_temp_entity);
gi.WriteByte(TE_SPLASH); gi.WriteByte(TE_SPLASH);
gi.WriteByte(32); gi.WriteByte(32);
gi.WritePosition(origin); gi.WritePosition(origin);
gi.WriteDir(dir); gi.WriteDir(dir);
gi.WriteByte (1); //sparks gi.WriteByte(1); /* sparks */
gi.multicast(origin, MULTICAST_PVS); gi.multicast(origin, MULTICAST_PVS);
T_Damage (self->enemy, self, self, dir, self->enemy->s.origin, vec3_origin, 5 + rand() % 6, -10, DAMAGE_ENERGY, MOD_UNKNOWN); T_Damage(self->enemy, self, self, dir, self->enemy->s.origin,
vec3_origin, 5 + rand() % 6, -10, DAMAGE_ENERGY, MOD_UNKNOWN);
} }
void floater_attack(edict_t *self) void
floater_attack(edict_t *self)
{ {
if (!self)
{
return;
}
self->monsterinfo.currentmove = &floater_move_attack1; self->monsterinfo.currentmove = &floater_move_attack1;
} }
void
void floater_melee(edict_t *self) floater_melee(edict_t *self)
{ {
if (random() < 0.5) if (!self)
self->monsterinfo.currentmove = &floater_move_attack3; {
else return;
self->monsterinfo.currentmove = &floater_move_attack2;
} }
if (random() < 0.5)
{
self->monsterinfo.currentmove = &floater_move_attack3;
}
else
{
self->monsterinfo.currentmove = &floater_move_attack2;
}
}
void floater_pain (edict_t *self, edict_t *other, float kick, int damage) void
floater_pain(edict_t *self, edict_t *other /* unused */, float kick, int damage)
{ {
int n; int n;
if (!self)
{
return;
}
if (self->health < (self->max_health / 2)) if (self->health < (self->max_health / 2))
{
self->s.skinnum = 1; self->s.skinnum = 1;
}
if (level.time < self->pain_debounce_time) if (level.time < self->pain_debounce_time)
{
return; return;
}
self->pain_debounce_time = level.time + 3; self->pain_debounce_time = level.time + 3;
if (skill->value == 3) if (skill->value == 3)
return; // no pain anims in nightmare {
return; /* no pain anims in nightmare */
}
n = (rand() + 1) % 3; n = (rand() + 1) % 3;
if (n == 0) if (n == 0)
{ {
gi.sound(self, CHAN_VOICE, sound_pain1, 1, ATTN_NORM, 0); gi.sound(self, CHAN_VOICE, sound_pain1, 1, ATTN_NORM, 0);
@ -569,8 +714,14 @@ void floater_pain (edict_t *self, edict_t *other, float kick, int damage)
} }
} }
void floater_dead (edict_t *self) void
floater_dead(edict_t *self)
{ {
if (!self)
{
return;
}
VectorSet(self->mins, -16, -16, -24); VectorSet(self->mins, -16, -16, -24);
VectorSet(self->maxs, 16, 16, -8); VectorSet(self->maxs, 16, 16, -8);
self->movetype = MOVETYPE_TOSS; self->movetype = MOVETYPE_TOSS;
@ -579,16 +730,30 @@ void floater_dead (edict_t *self)
gi.linkentity(self); gi.linkentity(self);
} }
void floater_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point) void
floater_die(edict_t *self, edict_t *inflictor /* unused */, edict_t *attacker /* unused */,
int damage /* unused */, vec3_t point /* unused */)
{ {
if (!self)
{
return;
}
gi.sound(self, CHAN_VOICE, sound_death1, 1, ATTN_NORM, 0); gi.sound(self, CHAN_VOICE, sound_death1, 1, ATTN_NORM, 0);
BecomeExplosion1(self); BecomeExplosion1(self);
} }
/*QUAKED monster_floater (1 .5 0) (-16 -16 -24) (16 16 32) Ambush Trigger_Spawn Sight /*
* QUAKED monster_floater (1 .5 0) (-16 -16 -24) (16 16 32) Ambush Trigger_Spawn Sight
*/ */
void SP_monster_floater (edict_t *self) void
SP_monster_floater(edict_t *self)
{ {
if (!self)
{
return;
}
if (deathmatch->value) if (deathmatch->value)
{ {
G_FreeEdict(self); G_FreeEdict(self);
@ -631,12 +796,15 @@ void SP_monster_floater (edict_t *self)
gi.linkentity(self); gi.linkentity(self);
if (random() <= 0.5) if (random() <= 0.5)
{
self->monsterinfo.currentmove = &floater_move_stand1; self->monsterinfo.currentmove = &floater_move_stand1;
}
else else
{
self->monsterinfo.currentmove = &floater_move_stand2; self->monsterinfo.currentmove = &floater_move_stand2;
}
self->monsterinfo.scale = MODEL_SCALE; self->monsterinfo.scale = MODEL_SCALE;
flymonster_start(self); flymonster_start(self);
} }

View file

@ -1,6 +1,9 @@
// G:\quake2\baseq2\models/monsters/float /* =======================================================================
*
// This file generated by ModelGen - Do NOT Modify * Mechanic animations.
*
* =======================================================================
*/
#define FRAME_actvat01 0 #define FRAME_actvat01 0
#define FRAME_actvat02 1 #define FRAME_actvat02 1
@ -250,5 +253,4 @@
#define FRAME_stand250 245 #define FRAME_stand250 245
#define FRAME_stand251 246 #define FRAME_stand251 246
#define FRAME_stand252 247 #define FRAME_stand252 247
#define MODEL_SCALE 1.000000 #define MODEL_SCALE 1.000000