mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 21:41:07 +00:00
bc63b70d88
Conflicts: src/actor.h src/fragglescript/t_func.cpp src/g_doom/a_bossbrain.cpp src/g_doom/a_revenant.cpp src/g_heretic/a_hereticartifacts.cpp src/g_heretic/a_hereticweaps.cpp src/g_heretic/a_knight.cpp src/g_hexen/a_bishop.cpp src/g_hexen/a_clericholy.cpp src/g_hexen/a_dragon.cpp src/g_hexen/a_firedemon.cpp src/g_hexen/a_flechette.cpp src/g_hexen/a_heresiarch.cpp src/g_hexen/a_hexenspecialdecs.cpp src/g_hexen/a_iceguy.cpp src/g_hexen/a_korax.cpp src/g_hexen/a_magelightning.cpp src/g_hexen/a_serpent.cpp src/g_hexen/a_spike.cpp src/g_hexen/a_wraith.cpp src/g_raven/a_minotaur.cpp src/g_shared/a_bridge.cpp src/g_shared/a_pickups.cpp src/g_shared/a_randomspawner.cpp src/g_strife/a_alienspectres.cpp src/g_strife/a_crusader.cpp src/g_strife/a_entityboss.cpp src/g_strife/a_inquisitor.cpp src/g_strife/a_loremaster.cpp src/g_strife/a_programmer.cpp src/g_strife/a_sentinel.cpp src/g_strife/a_spectral.cpp src/g_strife/a_strifestuff.cpp src/g_strife/a_strifeweapons.cpp src/g_strife/a_thingstoblowup.cpp src/p_local.h src/r_utility.cpp
112 lines
2.9 KiB
C++
112 lines
2.9 KiB
C++
static FRandom pr_fly("GetOffMeFly");
|
|
|
|
//===========================================================================
|
|
//
|
|
// FindCorpse
|
|
//
|
|
// Finds a corpse to buzz around. We can't use a blockmap check because
|
|
// corpses generally aren't linked into the blockmap.
|
|
//
|
|
//===========================================================================
|
|
|
|
static AActor *FindCorpse(AActor *fly, sector_t *sec, int recurselimit)
|
|
{
|
|
AActor *fallback = NULL;
|
|
sec->validcount = validcount;
|
|
|
|
// Search the current sector
|
|
for (AActor *check = sec->thinglist; check != NULL; check = check->snext)
|
|
{
|
|
if (check == fly)
|
|
continue;
|
|
if (!(check->flags & MF_CORPSE))
|
|
continue;
|
|
if (!P_CheckSight(fly, check))
|
|
continue;
|
|
fallback = check;
|
|
if (pr_fly(2)) // 50% chance to try to pick a different corpse
|
|
continue;
|
|
return check;
|
|
}
|
|
if (--recurselimit <= 0 || (fallback != NULL && pr_fly(2)))
|
|
{
|
|
return fallback;
|
|
}
|
|
// Try neighboring sectors
|
|
for (int i = 0; i < sec->linecount; ++i)
|
|
{
|
|
line_t *line = sec->lines[i];
|
|
sector_t *sec2 = (line->frontsector == sec) ? line->backsector : line->frontsector;
|
|
if (sec2 != NULL && sec2->validcount != validcount)
|
|
{
|
|
AActor *neighbor = FindCorpse(fly, sec2, recurselimit);
|
|
if (neighbor != NULL)
|
|
{
|
|
return neighbor;
|
|
}
|
|
}
|
|
}
|
|
return fallback;
|
|
}
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_FlySearch)
|
|
{
|
|
// The version from the retail beta is not so great for general use:
|
|
// 1. Pick one of the first fifty thinkers at random.
|
|
// 2. Starting from that thinker, find one that is an actor, not itself,
|
|
// and within sight. Give up after 100 sequential thinkers.
|
|
// It's effectively useless if there are more than 150 thinkers on a map.
|
|
//
|
|
// So search the sectors instead. We can't potentially find something all
|
|
// the way on the other side of the map and we can't find invisible corpses,
|
|
// but at least we aren't crippled on maps with lots of stuff going on.
|
|
PARAM_ACTION_PROLOGUE;
|
|
|
|
validcount++;
|
|
AActor *other = FindCorpse(self, self->Sector, 5);
|
|
if (other != NULL)
|
|
{
|
|
self->target = other;
|
|
self->SetState(self->FindState("Buzz"));
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_FlyBuzz)
|
|
{
|
|
PARAM_ACTION_PROLOGUE;
|
|
|
|
AActor *targ = self->target;
|
|
|
|
if (targ == NULL || !(targ->flags & MF_CORPSE) || pr_fly() < 5)
|
|
{
|
|
self->SetIdle();
|
|
return 0;
|
|
}
|
|
|
|
angle_t ang = self->AngleTo(targ);
|
|
self->angle = ang;
|
|
self->args[0]++;
|
|
ang >>= ANGLETOFINESHIFT;
|
|
if (!P_TryMove(self, self->X() + 6 * finecosine[ang], self->Y() + 6 * finesine[ang], true))
|
|
{
|
|
self->SetIdle(true);
|
|
return 0;
|
|
}
|
|
if (self->args[0] & 2)
|
|
{
|
|
self->velx += (pr_fly() - 128) << BOBTOFINESHIFT;
|
|
self->vely += (pr_fly() - 128) << BOBTOFINESHIFT;
|
|
}
|
|
int zrand = pr_fly();
|
|
if (targ->Z() + 5*FRACUNIT < self->Z() && zrand > 150)
|
|
{
|
|
zrand = -zrand;
|
|
}
|
|
self->velz = zrand << BOBTOFINESHIFT;
|
|
if (pr_fly() < 40)
|
|
{
|
|
S_Sound(self, CHAN_VOICE, self->ActiveSound, 0.5f, ATTN_STATIC);
|
|
}
|
|
return 0;
|
|
}
|