mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-15 03:59:06 +00:00
221 lines
5.4 KiB
C
221 lines
5.4 KiB
C
|
/** \file entities.h
|
||
|
* Snowballs 2 specific code for managing the entities
|
||
|
*/
|
||
|
|
||
|
/* Copyright, 2001 Nevrax Ltd.
|
||
|
*
|
||
|
* This file is part of NEVRAX SNOWBALLS.
|
||
|
* NEVRAX SNOWBALLS 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, or (at your option)
|
||
|
* any later version.
|
||
|
|
||
|
* NEVRAX SNOWBALLS 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 NEVRAX SNOWBALLS; see the file COPYING. If not, write to the
|
||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
||
|
* MA 02111-1307, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef ENTITIES_H
|
||
|
#define ENTITIES_H
|
||
|
|
||
|
//
|
||
|
// Includes
|
||
|
//
|
||
|
|
||
|
#include <string>
|
||
|
#include <map>
|
||
|
#include <queue>
|
||
|
|
||
|
#include <nel/misc/vector.h>
|
||
|
#include <nel/misc/time_nl.h>
|
||
|
|
||
|
#include <nel/3d/animation_time.h>
|
||
|
#include <nel/3d/u_instance.h>
|
||
|
#include <nel/3d/u_skeleton.h>
|
||
|
|
||
|
#include "physics.h"
|
||
|
#include "animation.h"
|
||
|
|
||
|
//
|
||
|
// External definitions
|
||
|
//
|
||
|
|
||
|
namespace NLSOUND
|
||
|
{
|
||
|
class USource;
|
||
|
}
|
||
|
|
||
|
namespace NLPACS
|
||
|
{
|
||
|
class UMovePrimitive;
|
||
|
}
|
||
|
|
||
|
namespace NL3D
|
||
|
{
|
||
|
class UVisualCollisionEntity;
|
||
|
class UPlayList;
|
||
|
}
|
||
|
|
||
|
namespace SBCLIENT {
|
||
|
|
||
|
//
|
||
|
// External classes
|
||
|
//
|
||
|
|
||
|
// An entity that will move through the landscape.
|
||
|
// The possible entities are the Self (the player's avatar), the Other and the Snowball
|
||
|
class CEntity
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
// Create a default entity
|
||
|
CEntity () :
|
||
|
Id(0xffffffff), Name("<Unknown>"), Angle(0.0f), AuxiliaryAngle(0.0f), InterpolatedAuxiliaryAngle(0.0f),
|
||
|
AutoMove(false), Instance(NULL), Skeleton(NULL),
|
||
|
Particule(NULL), Source(NULL), IsWalking(false), WasWalking(false), IsAiming(false), WasAiming(false),
|
||
|
/*CurrentAnim(NoAnim), */NextEmptySlot(0), PlayList(NULL), BotState(0)
|
||
|
{ }
|
||
|
|
||
|
|
||
|
// The id of the entity
|
||
|
uint32 Id;
|
||
|
|
||
|
// The name of the entity
|
||
|
std::string Name;
|
||
|
|
||
|
// Contain the target position for this entity
|
||
|
NLMISC::CVector ServerPosition;
|
||
|
|
||
|
// Contain the current position of the entity
|
||
|
NLMISC::CVector Position;
|
||
|
|
||
|
// The immediate speed of the entity
|
||
|
NLMISC::CVector ImmediateSpeed;
|
||
|
|
||
|
// The maximum speed of the entity
|
||
|
float Speed,
|
||
|
// The angle of the entity
|
||
|
Angle,
|
||
|
// Various angle controls for the interpolation
|
||
|
AuxiliaryAngle, InterpolatedAuxiliaryAngle;
|
||
|
|
||
|
// The trajectory (only for snowballs, defined in physics.h)
|
||
|
CTrajectory Trajectory;
|
||
|
|
||
|
|
||
|
// The state enum of the entity
|
||
|
enum TState { Appear, Normal, Disappear };
|
||
|
|
||
|
// The state of this entity
|
||
|
TState State;
|
||
|
// The date of the beginning of this state
|
||
|
NLMISC::TTime StateStartTime;
|
||
|
|
||
|
// The type enum of the entity
|
||
|
enum TType { Self, Other, Snowball };
|
||
|
|
||
|
// The type of this entity
|
||
|
TType Type;
|
||
|
|
||
|
// Is it an auto-moving entity
|
||
|
bool AutoMove;
|
||
|
|
||
|
// The PACS move primitive
|
||
|
NLPACS::UMovePrimitive *MovePrimitive;
|
||
|
// The collision entity (for ground snapping)
|
||
|
NL3D::UVisualCollisionEntity *VisualCollisionEntity;
|
||
|
// The mesh instance associated to this entity
|
||
|
NL3D::UInstance Instance;
|
||
|
// The skeleton binded to the instance
|
||
|
NL3D::USkeleton Skeleton;
|
||
|
// The particle system (for appear and disappear effects)
|
||
|
NL3D::UInstance Particule;
|
||
|
|
||
|
// The sound source associated to the entity
|
||
|
NLSOUND::USource *Source;
|
||
|
|
||
|
void setState (TState state);
|
||
|
|
||
|
bool IsWalking;
|
||
|
bool WasWalking;
|
||
|
bool IsAiming;
|
||
|
bool WasAiming;
|
||
|
|
||
|
// Playlist linked to this entity
|
||
|
// EAnim CurrentAnim;
|
||
|
uint NextEmptySlot;
|
||
|
NL3D::UPlayList *PlayList;
|
||
|
std::queue<EAnim> AnimQueue;
|
||
|
NL3D::CAnimationTime StartAnimationTime;
|
||
|
|
||
|
uint BotState;
|
||
|
NLMISC::TLocalTime BotStateStart;
|
||
|
};
|
||
|
|
||
|
//
|
||
|
// Enums
|
||
|
//
|
||
|
|
||
|
// The collision bits used by pacs (dynamic collisions)
|
||
|
enum
|
||
|
{
|
||
|
SelfCollisionBit = 1,
|
||
|
OtherCollisionBit = 2,
|
||
|
SnowballCollisionBit = 4,
|
||
|
StaticCollisionBit = 8
|
||
|
};
|
||
|
|
||
|
//
|
||
|
// External variables
|
||
|
//
|
||
|
|
||
|
// The entity representing the player avatar
|
||
|
extern CEntity *Self;
|
||
|
|
||
|
// The speed of the player
|
||
|
extern float PlayerSpeed;
|
||
|
// The speed of the snowball
|
||
|
extern float SnowballSpeed;
|
||
|
|
||
|
// The entities storage
|
||
|
extern std::map<uint32, CEntity> Entities;
|
||
|
typedef std::map<uint32, CEntity>::iterator EIT;
|
||
|
|
||
|
extern uint32 NextEID;
|
||
|
|
||
|
//
|
||
|
// External functions
|
||
|
//
|
||
|
|
||
|
EIT findEntity (uint32 eid, bool needAssert = true);
|
||
|
|
||
|
void addEntity (uint32 eid, std::string name, CEntity::TType type, const NLMISC::CVector &startPosition, const NLMISC::CVector &serverPosition);
|
||
|
void removeEntity (uint32 eid);
|
||
|
|
||
|
// when we turn online, we need to clear all offline entities
|
||
|
void removeAllEntitiesExceptUs ();
|
||
|
void deleteAllEntities();
|
||
|
|
||
|
void initEntities();
|
||
|
void updateEntities();
|
||
|
void releaseEntities();
|
||
|
|
||
|
// Reset the pacs position of an entity (in case pacs went wrong)
|
||
|
void resetEntityPosition(uint32 eid);
|
||
|
// Process the event when an entity shoots a snowball
|
||
|
void shotSnowball(uint32 sid, uint32 eid, const NLMISC::CVector &start, const NLMISC::CVector &target, float speed, float deflagRadius);
|
||
|
|
||
|
void renderEntitiesNames ();
|
||
|
|
||
|
} /* namespace SBCLIENT */
|
||
|
|
||
|
#endif // ENTITIES_H
|
||
|
|
||
|
/* End of entities.h */
|