raze/source/games/sw/src/sector.h

83 lines
2.5 KiB
C
Raw Normal View History

//-------------------------------------------------------------------------
/*
Copyright (C) 1997, 2005 - 3D Realms Entertainment
This file is part of Shadow Warrior version 1.2
Shadow Warrior 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Original Source: 1997 - Frank Maddin and Jim Norwood
Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms
*/
//-------------------------------------------------------------------------
#ifndef SECTOR_H
#define SECTOR_H
BEGIN_SW_NS
void SectorSetup(void);
DOOR_AUTO_CLOSE* SetDoorAutoClose(short SectorNum, short Type);
void DoDragging(void);
int MoveDoorVert(short door_sector, short dir, short door_speed);
int MoveDoorUp(short door_sector, short auto_close, short door_speed);
int MoveDoorDown(short door_sector, short dir, short door_speed);
int MoveDoorHoriz(short door_sector, short dir, short door_speed);
void DoDoorsClose(void);
short Switch(short SwitchSector);
2021-12-31 14:59:11 +00:00
void PlayerOperateEnv(PLAYER* pp);
int TeleportToSector(PLAYER* pp, int newsector);
2021-11-25 17:16:56 +00:00
int OperateSector(sectortype* sect,short player_is_operating);
2021-11-02 20:35:24 +00:00
int OperateSprite(DSWActor*, short player_is_operating);
2021-12-31 14:59:11 +00:00
void OperateTripTrigger(PLAYER* pp);
enum SO_SCALE_TYPE
{
SO_SCALE_NONE,
SO_SCALE_HOLD,
SO_SCALE_DEST,
SO_SCALE_RANDOM,
SO_SCALE_CYCLE,
SO_SCALE_RANDOM_POINT
};
#define SCALE_POINT_SPEED (4 + RandomRange(8))
2021-12-31 12:37:57 +00:00
struct NEAR_TAG_INFO
{
int dist;
sectortype* sectp;
walltype* wallp;
DSWActor* actor;
2021-12-31 12:37:57 +00:00
};
extern short nti_cnt;
void DoSpawnSpotsForKill(short match);
void DoSpawnSpotsForDamage(short match);
2021-12-31 14:59:11 +00:00
void DoMatchEverything(PLAYER* pp, short match, short state);
2020-09-09 18:32:24 +00:00
bool ComboSwitchTest(short combo_type,short match);
void DoSoundSpotStopSound(short match);
void DoSector(void);
2021-12-24 16:50:15 +00:00
int AnimateSwitch(DSWActor* actor, int tgt_value);
2021-11-02 20:35:24 +00:00
void ShootableSwitch(DSWActor*);
2021-12-31 14:50:44 +00:00
bool TestKillSectorObject(SECTOR_OBJECT* sop);
2021-11-02 19:58:26 +00:00
void WeaponExplodeSectorInRange(DSWActor*);
END_SW_NS
#endif