mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-16 09:21:51 +00:00
109 lines
2.7 KiB
C
109 lines
2.7 KiB
C
|
// Emacs style mode select -*- C++ -*-
|
||
|
//-----------------------------------------------------------------------------
|
||
|
//
|
||
|
// $Id:$
|
||
|
//
|
||
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
||
|
//
|
||
|
// This source is available for distribution and/or modification
|
||
|
// only under the terms of the DOOM Source Code License as
|
||
|
// published by id Software. All rights reserved.
|
||
|
//
|
||
|
// The source is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
|
||
|
// for more details.
|
||
|
//
|
||
|
// DESCRIPTION:
|
||
|
// Sprite animation.
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
#ifndef __P_PSPR_H__
|
||
|
#define __P_PSPR_H__
|
||
|
|
||
|
// Basic data types.
|
||
|
// Needs fixed point, and BAM angles.
|
||
|
#include "m_fixed.h"
|
||
|
#include "tables.h"
|
||
|
|
||
|
|
||
|
//
|
||
|
// Needs to include the precompiled
|
||
|
// sprite animation tables.
|
||
|
// Header generated by multigen utility.
|
||
|
// This includes all the data for thing animation,
|
||
|
// i.e. the Thing Atrributes table
|
||
|
// and the Frame Sequence table.
|
||
|
#include "info.h"
|
||
|
|
||
|
#define WEAPONBOTTOM 128*FRACUNIT
|
||
|
|
||
|
// [RH] +0x6000 helps it meet the screen bottom
|
||
|
// at higher resolutions while still being in
|
||
|
// the right spot at 320x200.
|
||
|
#define WEAPONTOP (32*FRACUNIT+0x6000)
|
||
|
|
||
|
|
||
|
//
|
||
|
// Overlay psprites are scaled shapes
|
||
|
// drawn directly on the view screen,
|
||
|
// coordinates are given for a 320*200 view screen.
|
||
|
//
|
||
|
typedef enum
|
||
|
{
|
||
|
ps_weapon,
|
||
|
ps_flash,
|
||
|
ps_targetcenter,
|
||
|
ps_targetleft,
|
||
|
ps_targetright,
|
||
|
NUMPSPRITES
|
||
|
|
||
|
} psprnum_t;
|
||
|
|
||
|
inline FArchive &operator<< (FArchive &arc, psprnum_t &i)
|
||
|
{
|
||
|
BYTE val = (BYTE)i;
|
||
|
arc << val;
|
||
|
i = (psprnum_t)val;
|
||
|
return arc;
|
||
|
}
|
||
|
|
||
|
typedef struct pspdef_s
|
||
|
{
|
||
|
FState* state; // a NULL state means not active
|
||
|
int tics;
|
||
|
fixed_t sx;
|
||
|
fixed_t sy;
|
||
|
|
||
|
} pspdef_t;
|
||
|
|
||
|
FArchive &operator<< (FArchive &, pspdef_t &);
|
||
|
|
||
|
class player_s;
|
||
|
|
||
|
void P_SetPsprite (player_s *player, int position, FState *state);
|
||
|
void P_SetPspriteNF (player_s *player, int position, FState *state);
|
||
|
void P_CalcSwing (player_s *player);
|
||
|
void P_BringUpWeapon (player_s *player);
|
||
|
void P_FireWeapon (player_s *player);
|
||
|
void P_DropWeapon (player_s *player);
|
||
|
void P_BobWeapon (player_s *player, pspdef_t *psp, fixed_t *x, fixed_t *y);
|
||
|
void P_BulletSlope (AActor *mo);
|
||
|
void P_GunShot (AActor *mo, BOOL accurate, const TypeInfo *pufftype);
|
||
|
|
||
|
void A_WeaponReady (AActor *actor);
|
||
|
void A_ReFire (AActor *actor);
|
||
|
void A_CheckReload (AActor *actor);
|
||
|
void A_Lower (AActor *actor);
|
||
|
void A_Raise (AActor *actor);
|
||
|
void A_GunFlash (AActor *actor);
|
||
|
void A_Light0 (AActor *actor);
|
||
|
void A_Light1 (AActor *actor);
|
||
|
void A_Light2 (AActor *actor);
|
||
|
|
||
|
extern angle_t bulletpitch;
|
||
|
|
||
|
#endif // __P_PSPR_H__
|