mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-03 16:13:34 +08:00
78 lines
1.3 KiB
C++
78 lines
1.3 KiB
C++
|
|
#pragma once
|
|
|
|
#include "game.h"
|
|
#include "entity.h"
|
|
|
|
enum eLandingGearState
|
|
{
|
|
LGS_UP,
|
|
LGS_DOWN,
|
|
};
|
|
|
|
//-----------------------------------------------------------
|
|
|
|
class CVehicle : public CEntity
|
|
{
|
|
public:
|
|
|
|
char _gap48[4];
|
|
|
|
VEHICLE_TYPE *m_pVehicle;
|
|
|
|
char _gap50[33];
|
|
|
|
int field_71;
|
|
|
|
char _gap75[4];
|
|
|
|
BYTE m_byteColor1;
|
|
BYTE m_byteColor2;
|
|
BOOL m_bHasNewColor;
|
|
|
|
char _gap7F[57];
|
|
|
|
CVehicle( int iType, float fPosX, float fPosY, float fPosZ, float fRotation = 0.0f, BOOL bKeepModelLoaded = FALSE, int a8 = 0);
|
|
|
|
void ResetPointers();
|
|
|
|
void SetLockedState(int iLocked);
|
|
UINT GetVehicleSubtype();
|
|
|
|
float GetHealth();
|
|
void SetHealth(float fHealth);
|
|
void SetColor(BYTE byteColor1, BYTE byteColor2);
|
|
void UpdateColor();
|
|
|
|
BOOL HasSunk();
|
|
BOOL IsWrecked();
|
|
BOOL IsDriverLocalPlayer();
|
|
BOOL IsATrainPart();
|
|
BOOL HasTurret();
|
|
BOOL HasADriver();
|
|
|
|
void SetHydraThrusters(DWORD dwDirection);
|
|
DWORD GetHydraThrusters();
|
|
|
|
|
|
UINT GetPassengersMax();
|
|
|
|
void SetSirenOn(BYTE byteState);
|
|
BOOL IsSirenOn();
|
|
void SetAlarmState(WORD wState);
|
|
void SetLandingGearState(eLandingGearState state);
|
|
eLandingGearState GetLandingGearState();
|
|
|
|
void SetEngineState(BOOL bState);
|
|
|
|
void LinkToInterior(int iInterior);
|
|
|
|
void SetHornState(BYTE byteState);
|
|
|
|
BOOL IsOccupied();
|
|
|
|
|
|
};
|
|
|
|
//-----------------------------------------------------------
|