2006-02-24 04:48:15 +00:00
|
|
|
#ifndef __A_SHAREDGLOBAL_H__
|
|
|
|
#define __A_SHAREDGLOBAL_H__
|
|
|
|
|
|
|
|
#include "dobject.h"
|
|
|
|
#include "info.h"
|
|
|
|
#include "actor.h"
|
|
|
|
|
2006-04-12 01:50:09 +00:00
|
|
|
class FDecalTemplate;
|
2006-02-24 04:48:15 +00:00
|
|
|
struct vertex_s;
|
2008-03-21 17:35:49 +00:00
|
|
|
struct side_t;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
extern void P_SpawnDirt (AActor *actor, fixed_t radius);
|
|
|
|
|
2006-11-25 12:25:05 +00:00
|
|
|
bool P_MorphPlayer (player_s *player);
|
|
|
|
bool P_UndoPlayerMorph (player_s *player, bool force);
|
|
|
|
|
|
|
|
bool P_MorphMonster (AActor *actor, const PClass *morphClass);
|
|
|
|
bool P_UpdateMorphedMonster (AActor *actor);
|
|
|
|
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-12 01:50:09 +00:00
|
|
|
class DBaseDecal : public DThinker
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-04-12 01:50:09 +00:00
|
|
|
DECLARE_CLASS (DBaseDecal, DThinker)
|
2008-03-12 02:56:11 +00:00
|
|
|
HAS_OBJECT_POINTERS
|
2006-02-24 04:48:15 +00:00
|
|
|
public:
|
2006-04-12 01:50:09 +00:00
|
|
|
DBaseDecal ();
|
2006-04-13 02:01:40 +00:00
|
|
|
DBaseDecal (fixed_t z);
|
|
|
|
DBaseDecal (int statnum, fixed_t z);
|
2006-04-12 01:50:09 +00:00
|
|
|
DBaseDecal (const AActor *actor);
|
|
|
|
DBaseDecal (const DBaseDecal *basis);
|
|
|
|
|
|
|
|
void Serialize (FArchive &arc);
|
2006-02-24 04:48:15 +00:00
|
|
|
void Destroy ();
|
2008-03-21 17:35:49 +00:00
|
|
|
int StickToWall (side_t *wall, fixed_t x, fixed_t y);
|
|
|
|
fixed_t GetRealZ (const side_t *wall) const;
|
2006-04-12 01:50:09 +00:00
|
|
|
void SetShade (DWORD rgb);
|
|
|
|
void SetShade (int r, int g, int b);
|
2008-03-21 17:35:49 +00:00
|
|
|
void Spread (const FDecalTemplate *tpl, side_t *wall, fixed_t x, fixed_t y, fixed_t z);
|
|
|
|
void GetXY (side_t *side, fixed_t &x, fixed_t &y) const;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-12 01:50:09 +00:00
|
|
|
static void SerializeChain (FArchive &arc, DBaseDecal **firstptr);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-12 01:50:09 +00:00
|
|
|
DBaseDecal *WallNext, **WallPrev;
|
|
|
|
|
2006-04-13 02:01:40 +00:00
|
|
|
fixed_t LeftDistance;
|
|
|
|
fixed_t Z;
|
|
|
|
fixed_t ScaleX, ScaleY;
|
|
|
|
fixed_t Alpha;
|
2006-04-12 01:50:09 +00:00
|
|
|
DWORD AlphaColor;
|
|
|
|
WORD Translation;
|
|
|
|
WORD PicNum;
|
2006-05-03 14:54:48 +00:00
|
|
|
DWORD RenderFlags;
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
FRenderStyle RenderStyle;
|
2006-04-12 01:50:09 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
protected:
|
2008-03-21 17:35:49 +00:00
|
|
|
virtual DBaseDecal *CloneSelf (const FDecalTemplate *tpl, fixed_t x, fixed_t y, fixed_t z, side_t *wall) const;
|
|
|
|
void CalcFracPos (side_t *wall, fixed_t x, fixed_t y);
|
2006-02-24 04:48:15 +00:00
|
|
|
void Remove ();
|
2006-04-12 01:50:09 +00:00
|
|
|
|
2008-03-21 17:35:49 +00:00
|
|
|
static void SpreadLeft (fixed_t r, vertex_s *v1, side_t *feelwall);
|
|
|
|
static void SpreadRight (fixed_t r, side_t *feelwall, fixed_t wallsize);
|
2006-02-24 04:48:15 +00:00
|
|
|
};
|
|
|
|
|
2006-04-12 01:50:09 +00:00
|
|
|
class DImpactDecal : public DBaseDecal
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-04-12 01:50:09 +00:00
|
|
|
DECLARE_CLASS (DImpactDecal, DBaseDecal)
|
2006-02-24 04:48:15 +00:00
|
|
|
public:
|
2006-04-13 02:01:40 +00:00
|
|
|
DImpactDecal (fixed_t z);
|
2008-03-21 17:35:49 +00:00
|
|
|
DImpactDecal (side_t *wall, const FDecalTemplate *templ);
|
2006-04-12 01:50:09 +00:00
|
|
|
|
2008-03-21 17:35:49 +00:00
|
|
|
static DImpactDecal *StaticCreate (const char *name, fixed_t x, fixed_t y, fixed_t z, side_t *wall, PalEntry color=0);
|
|
|
|
static DImpactDecal *StaticCreate (const FDecalTemplate *tpl, fixed_t x, fixed_t y, fixed_t z, side_t *wall, PalEntry color=0);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void BeginPlay ();
|
|
|
|
void Destroy ();
|
|
|
|
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
static void SerializeTime (FArchive &arc);
|
|
|
|
|
|
|
|
protected:
|
2008-03-21 17:35:49 +00:00
|
|
|
DBaseDecal *CloneSelf (const FDecalTemplate *tpl, fixed_t x, fixed_t y, fixed_t z, side_t *wall) const;
|
2006-04-13 02:01:40 +00:00
|
|
|
static void CheckMax ();
|
2006-04-12 01:50:09 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DImpactDecal();
|
2006-02-24 04:48:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AAmbientSound : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (AAmbientSound, AActor)
|
|
|
|
public:
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
|
|
|
|
void BeginPlay ();
|
|
|
|
void Tick ();
|
|
|
|
void Activate (AActor *activator);
|
|
|
|
void Deactivate (AActor *activator);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool bActive;
|
|
|
|
private:
|
|
|
|
void SetTicker (struct AmbientSound *ambient);
|
|
|
|
int NextCheck;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ATeleportFog : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (ATeleportFog, AActor)
|
|
|
|
public:
|
|
|
|
void PostBeginPlay ();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ATeleportDest : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (ATeleportDest, AActor)
|
|
|
|
};
|
|
|
|
|
|
|
|
class ASkyViewpoint : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (ASkyViewpoint, AActor)
|
|
|
|
public:
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
void BeginPlay ();
|
2007-12-17 22:18:52 +00:00
|
|
|
void Destroy ();
|
2006-02-24 04:48:15 +00:00
|
|
|
bool bInSkybox;
|
|
|
|
bool bAlways;
|
|
|
|
ASkyViewpoint *Mate;
|
|
|
|
fixed_t PlaneAlpha;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DFlashFader : public DThinker
|
|
|
|
{
|
|
|
|
DECLARE_CLASS (DFlashFader, DThinker)
|
|
|
|
HAS_OBJECT_POINTERS
|
|
|
|
public:
|
|
|
|
DFlashFader (float r1, float g1, float b1, float a1,
|
|
|
|
float r2, float g2, float b2, float a2,
|
|
|
|
float time, AActor *who);
|
|
|
|
~DFlashFader ();
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
void Tick ();
|
|
|
|
AActor *WhoFor() { return ForWho; }
|
|
|
|
void Cancel ();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
float Blends[2][4];
|
|
|
|
int TotalTics;
|
|
|
|
int StartTic;
|
2008-03-12 02:56:11 +00:00
|
|
|
TObjPtr<AActor> ForWho;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void SetBlend (float time);
|
|
|
|
DFlashFader ();
|
|
|
|
};
|
|
|
|
|
2006-07-01 00:21:36 +00:00
|
|
|
class DEarthquake : public DThinker
|
|
|
|
{
|
|
|
|
DECLARE_CLASS (DEarthquake, DThinker)
|
|
|
|
HAS_OBJECT_POINTERS
|
|
|
|
public:
|
|
|
|
DEarthquake (AActor *center, int intensity, int duration, int damrad, int tremrad);
|
|
|
|
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
void Tick ();
|
|
|
|
|
2008-03-12 02:56:11 +00:00
|
|
|
TObjPtr<AActor> m_Spot;
|
2006-07-01 00:21:36 +00:00
|
|
|
fixed_t m_TremorRadius, m_DamageRadius;
|
|
|
|
int m_Intensity;
|
|
|
|
int m_Countdown;
|
|
|
|
int m_QuakeSFX;
|
|
|
|
|
|
|
|
static int StaticGetQuakeIntensity (AActor *viewer);
|
|
|
|
|
|
|
|
private:
|
|
|
|
DEarthquake ();
|
|
|
|
};
|
|
|
|
|
2006-08-17 09:54:42 +00:00
|
|
|
class AMorphProjectile : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (AMorphProjectile, AActor)
|
|
|
|
public:
|
|
|
|
int DoSpecialDamage (AActor *target, int damage);
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
|
2006-08-31 00:16:12 +00:00
|
|
|
FNameNoInit PlayerClass, MonsterClass;
|
2006-08-17 09:54:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AMorphedMonster : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (AMorphedMonster, AActor)
|
|
|
|
HAS_OBJECT_POINTERS
|
|
|
|
public:
|
|
|
|
void Tick ();
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
void Die (AActor *source, AActor *inflictor);
|
|
|
|
void Destroy ();
|
|
|
|
|
2008-03-12 02:56:11 +00:00
|
|
|
TObjPtr<AActor> UnmorphedMe;
|
2006-08-17 09:54:42 +00:00
|
|
|
int UnmorphTime;
|
|
|
|
DWORD FlagsSave;
|
|
|
|
};
|
|
|
|
|
2006-10-20 04:04:04 +00:00
|
|
|
class AMapMarker : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR(AMapMarker, AActor)
|
|
|
|
public:
|
|
|
|
void BeginPlay ();
|
|
|
|
void Activate (AActor *activator);
|
|
|
|
void Deactivate (AActor *activator);
|
|
|
|
};
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
#endif //__A_SHAREDGLOBAL_H__
|