Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
car.c
Go to the documentation of this file.
1
4{
5 // simulation
9
10 // miscellaneous
12 PLAYER
13};
14
15
16
30
31
32
39
40
41
43enum CarGear
44{
47 FIRST,
48 SECOND,
63};
64
65
66
75
76
84
85class CarOwnerState : TransportOwnerState
86{
87};
88
89class CarMove : TransportMove
90{
91};
92
94class Car extends Transport
95{
97 protected override event typename GetOwnerStateType()
98 {
99 return CarOwnerState;
100 }
101
103 protected override event typename GetMoveType()
104 {
105 return CarMove;
106 }
107
109 proto native float GetSpeedometer();
110
113 {
114 return Math.AbsFloat(GetSpeedometer());
115 }
116
117 override bool IsAreaAtDoorFree( int currentSeat, float maxAllowedObjHeight = 0.5, float horizontalExtents = 0.5, float playerHeight = 1.7 )
118 {
119 vector transform[4];
120
121 vector extents;
122
123 extents[0] = horizontalExtents;
124 extents[1] = playerHeight;
125 extents[2] = horizontalExtents;
126
127 float speed = GetSpeedometerAbsolute();
128 if (speed > 8)
129 extents[2] = extents[2] * 6;
130 if (speed > 8)
131 extents[0] = 2;
132
133 return IsAreaAtDoorFree( currentSeat, maxAllowedObjHeight, extents, transform );
134 }
135
136 override Shape DebugFreeAreaAtDoor( int currentSeat, float maxAllowedObjHeight = 0.5, float horizontalExtents = 0.5, float playerHeight = 1.7 )
137 {
138 int color = ARGB(20, 0, 255, 0);
139
140 vector transform[4];
141
142 vector extents;
143
144 extents[0] = horizontalExtents;
145 extents[1] = playerHeight;
146 extents[2] = horizontalExtents;
147
148 float speed = GetSpeedometerAbsolute();
149 if (speed > 8)
150 extents[2] = extents[2] * 6;
151 if (speed > 8)
152 extents[0] = 2;
153
154 if (!IsAreaAtDoorFree( currentSeat, maxAllowedObjHeight, extents, transform ))
155 {
156 color = ARGB(20, 255, 0, 0);
157 }
158
159 Shape shape = Debug.DrawBox(-extents * 0.5, extents * 0.5, color);
160 shape.SetMatrix(transform);
161 return shape;
162 }
163
164 protected bool DetectFlippedUsingWheels(VehicleFlippedContext ctx, bool disallowSide)
165 {
166 if (disallowSide && (vector.Dot(GetDirectionUp(), vector.Up) < 0.7))
167 {
168 // return as "flipped", vehicle isn't pointing enough up to be reasonably certain
169 return true;
170 }
171
172 int wheelCount = WheelCount();
173
174 for (int wheelIdx = 0; wheelIdx < wheelCount; wheelIdx++)
175 {
176 if (!WheelHasContact(wheelIdx))
177 {
178 // wheel not in contact, then we could be flipped, we assume there exist other predicates
179 return true;
180 }
181 }
182
183 // all wheels in contact (or zero registered wheels), then we are in contact
184 return false;
185 }
186
187
189 proto native float GetSteering();
190
192 proto native void SetSteering(float value, bool unused0 = false);
193
195 proto native float GetThrottle();
196
198 proto native void SetThrottle(float value);
199
201 proto native int GetClutch();
202
204 proto native void SetClutch(float value);
205
207 proto native float GetBrake();
208
210 proto native void SetBrake(float value, float unused0 = 0, bool unused1 = false);
211
213 proto native float GetHandbrake();
214
216 proto native void SetHandbrake(float value);
217
219 proto native void SetBrakesActivateWithoutDriver(bool activate = true);
220
222 proto native float EngineGetRPMMin();
223
225 proto native float EngineGetRPMIdle();
226
228 proto native float EngineGetRPMMax();
229
231 proto native float EngineGetRPMRedline();
232
234 proto native float EngineGetRPM();
235
237 proto native bool EngineIsOn();
238
240 proto native void EngineStart();
241
243 proto native void EngineStop();
244
246 proto native vector GetEnginePos();
247
249 proto native void SetEnginePos(vector pos);
250
252 proto native int GetCurrentGear();
253
255 proto native int GetGear();
256
258 proto native int GetNeutralGear();
259
261 proto native int GetGearCount();
262
264 proto native void ShiftUp();
265
267 proto native void ShiftTo(int gear);
268
270 proto native void ShiftDown();
271
274
277
279 proto native bool WheelIsAnyLocked();
280
286 proto native float WheelGetAngularVelocity( int wheelIdx );
287
293 proto native bool WheelHasContact( int wheelIdx );
294
300 proto native vector WheelGetContactPosition( int wheelIdx );
301
307 proto native vector WheelGetContactNormal( int wheelIdx );
308
314 proto native vector WheelGetDirection( int wheelIdx );
315
321 proto native SurfaceInfo WheelGetSurface( int wheelIdx );
322
328 proto native CarWheelWaterState WheelGetWaterState( int wheelIdx );
329
335 proto native EntityAI WheelGetEntity( int wheelIdx );
336
342 proto native bool WheelIsLocked( int wheelIdx );
343
345 proto native int WheelCount();
346
348 proto native int WheelCountPresent();
349
355 proto native float GetFluidCapacity(CarFluid fluid);
356
363 proto native float GetFluidFraction(CarFluid fluid);
364
366 proto native void Leak(CarFluid fluid, float amount);
367
369 proto native void LeakAll(CarFluid fluid);
370
372 proto native void Fill(CarFluid fluid, float amount);
373
380 {
381 // engine can start by default
382 return true;
383 }
384
389
393 void OnEngineStop() {}
394
401 void OnGearChanged(int newGear, int oldGear)
402 {
403 }
404
413 void OnFluidChanged(CarFluid fluid, float newValue, float oldValue) {}
414
423 float OnSound(CarSoundCtrl ctrl, float oldValue)
424 {
425 // just use the computed value by the game code
426 return oldValue;
427 }
428
429 [Obsolete("no replacement")]
430 proto native void ForcePosition(vector pos);
431
432 [Obsolete("no replacement")]
433 proto native void ForceDirection(vector dir);
434
435 [Obsolete("Use methods directly on Car")]
437
438 [Obsolete("Use Car.IsTurbo")]
439 proto native float GetThrustTurbo();
440
441 [Obsolete("Use Car.IsGentle")]
442 proto native float GetThrustGentle();
443
444 [Obsolete("Use Car.GetThrottle")]
445 proto native float GetThrust();
446
447 [Obsolete("Use Car.SetThrottle/Car.SetTurbo/Car.SetGentle")]
448 proto native void SetThrust(float in, float gentle = 0, float turbo = 0);
449
450 [Obsolete("no replacement")];
451 proto native void SetClutchState(bool in);
452
453 [Obsolete("Use Car.GetGearCount")]
454 proto native int GetGearsCount();
455
456};
457
458
459
462{
463 private void CarController() {}
464 private void ~CarController() {}
465
467 proto float GetSteering();
474 proto void SetSteering( float in, bool analog = false );
475
477 proto float GetThrustTurbo();
479 proto float GetThrustGentle();
481 proto float GetThrust();
489 proto void SetThrust( float in, float gentle = 0, float turbo = 0 );
490
492 proto float GetBrake();
499 proto void SetBrake( float in, float panic = 0 );
500
502 proto int GetGear();
503
504 proto void ShiftUp();
505 proto void ShiftTo( CarGear gear );
506 proto void ShiftDown();
507};
enum CarGearboxType ELEVENTH
CarAutomaticGearboxMode
Enumerated automatic gearbox modes. (native, do not change or extend)
Definition car.c:69
@ R
reverse
Definition car.c:71
@ N
neutral
Definition car.c:72
@ D
drive
Definition car.c:73
@ P
park
Definition car.c:70
enum CarGearboxType THIRTEENTH
enum CarGearboxType EIGTH
enum CarGearboxType SECOND
enum CarGearboxType FOURTH
enum CarGearboxType NINTH
enum CarGearboxType SIXTEENTH
enum CarGearboxType FIFTH
enum CarGearboxType FIFTEENTH
CarSoundCtrl
Car's sound controller list. (native, do not change or extend)
Definition car.c:4
@ SPEED
speed of the car in km/h
Definition car.c:8
@ RPM
engine's RPM
Definition car.c:7
@ DOORS
indicates if doors are open
Definition car.c:11
@ ENGINE
indicates if engine is ON
Definition car.c:6
@ PLAYER
indicates if driver is controlled by player
Definition car.c:12
CarWheelWaterState
Enumerated car wheel water state. (native, do not change or extend)
Definition car.c:79
@ ON_LAND
if the wheel is on or above land
Definition car.c:80
@ UNDER_WATER
if the wheel is under a water plane
Definition car.c:82
@ IN_WATER
if the wheel is partially within some water plane
Definition car.c:81
enum CarGearboxType SEVENTH
enum CarGearboxType SIXTH
CarFluid
Type of vehicle's fluid. (native, do not change or extend)
Definition car.c:19
@ USER4
reserved for user / modding support
Definition car.c:28
@ OIL
Definition car.c:21
@ USER1
reserved for user / modding support
Definition car.c:25
@ USER2
reserved for user / modding support
Definition car.c:26
@ BRAKE
Definition car.c:22
@ FUEL
Definition car.c:20
@ COOLANT
Definition car.c:23
@ USER3
reserved for user / modding support
Definition car.c:27
enum CarGearboxType THIRD
enum CarGearboxType REVERSE
Enumerated vehicle's gears. (native, do not change or extend)
CarGearboxType
Enumerated gearbox types. (native, do not change or extend)
Definition car.c:35
@ AUTOMATIC
automatic transmission with torque converter between engine and gearbox
Definition car.c:37
@ MANUAL
classic manual transmission with friction plates between engine and gearbox
Definition car.c:36
enum CarGearboxType FIRST
enum CarGearboxType TENTH
enum CarGearboxType TWELFTH
enum CarGearboxType FOURTEENTH
enum CarGearboxType NEUTRAL
DEPRECATED class left for backwards compatibility, methods are available on car itself now.
Definition car.c:462
Definition car.c:90
Definition debug.c:2
Definition enmath.c:7
Native class for boats - handles physics simulation.
Definition boat.c:28
proto native void SetThrust(float in, float gentle=0, float turbo=0)
float OnSound(CarSoundCtrl ctrl, float oldValue)
Definition car.c:423
proto native float GetHandbrake()
Returns the current handbrake value in range <0, 1>.
proto native vector WheelGetContactNormal(int wheelIdx)
proto native void ShiftUp()
Shifts the future gear up, triggering gearbox simulation.
proto native bool WheelHasContact(int wheelIdx)
proto native void SetEnginePos(vector pos)
Override the position of engine (model space)
proto native int GetCurrentGear()
Returns the index of the current gear, -1 if there is no engine.
proto native void SetSteering(float value, bool unused0=false)
Sets the future steering value.
void OnEngineStop()
Definition car.c:393
proto native void Fill(CarFluid fluid, float amount)
Adds to the specified fluid the specified amount.
proto native float GetThrustTurbo()
proto native float GetThrustGentle()
proto native float EngineGetRPM()
Returns engine's rpm value.
proto native void ShiftDown()
Shifts the future gear down, triggering gearbox simulation.
proto native float WheelGetAngularVelocity(int wheelIdx)
proto native CarWheelWaterState WheelGetWaterState(int wheelIdx)
float GetSpeedometerAbsolute()
Returns the current speed of the vehicle in km/h. Value is absolute.
Definition car.c:112
override event GetMoveType()
Definition car.c:103
proto native void Leak(CarFluid fluid, float amount)
Removes from the specified fluid the specified amount.
proto native float EngineGetRPMIdle()
Returns engine's idle rpm before engine stalls.
proto native int WheelCountPresent()
Number of actually attached wheels (hubs only)
proto native bool EngineIsOn()
Returns true when engine is running, false otherwise.
proto native int GetClutch()
Returns the value of how much the clutch is disengaged.
proto native int GetNeutralGear()
Returns the index of the neutral gear.
proto native void SetThrottle(float value)
Sets the future throttle value.
proto native EntityAI WheelGetEntity(int wheelIdx)
proto native void SetClutch(float value)
Sets the future clutch value.
proto native CarAutomaticGearboxMode GearboxGetMode()
Returns gearbox mode. This is useful when car has automatic gearbox.
proto native int WheelCount()
How many wheel can be attached to a car (hubs only)
proto native void EngineStart()
Starts the engine.
proto native void ShiftTo(int gear)
Shifts the future gear to selected gear, triggering gearbox simulation.
proto native float EngineGetRPMMin()
Returns engine's min operating rpm.
proto native bool WheelIsAnyLocked()
Returns true if any of the wheels are locked in terms of its movement.
proto native CarController GetController()
proto native void ForceDirection(vector dir)
proto native void EngineStop()
Stops the engine.
override event GetOwnerStateType()
Definition car.c:97
proto native float GetThrottle()
Returns the actual throttle value in range <0, 1>.
proto native float GetBrake()
Returns the current brake value in range <0, 1>.
proto native float GetThrust()
proto native vector WheelGetDirection(int wheelIdx)
proto native bool WheelIsLocked(int wheelIdx)
override bool IsAreaAtDoorFree(int currentSeat, float maxAllowedObjHeight=0.5, float horizontalExtents=0.5, float playerHeight=1.7)
Definition car.c:117
proto native void LeakAll(CarFluid fluid)
Removes all the specified fluid from vehicle.
proto native float GetSpeedometer()
Returns the current speed of the vehicle in km/h.
proto native float GetFluidFraction(CarFluid fluid)
proto native vector WheelGetContactPosition(int wheelIdx)
proto native SurfaceInfo WheelGetSurface(int wheelIdx)
proto native int GetGear()
Returns the index of the future gear, -1 if there is no engine.
proto native CarGearboxType GearboxGetType()
Returns gearbox type. See CarGearboxType enum for more info.
proto native void SetHandbrake(float value)
Sets the future handbrake value.
bool DetectFlippedUsingWheels(VehicleFlippedContext ctx, bool disallowSide)
Definition car.c:164
proto native float GetFluidCapacity(CarFluid fluid)
proto native float EngineGetRPMMax()
Returns engine's max rpm before engine blows up.
proto native void ForcePosition(vector pos)
proto native void SetBrakesActivateWithoutDriver(bool activate=true)
Sets if brakes should activate without a driver present.
void OnGearChanged(int newGear, int oldGear)
Definition car.c:401
override Shape DebugFreeAreaAtDoor(int currentSeat, float maxAllowedObjHeight=0.5, float horizontalExtents=0.5, float playerHeight=1.7)
Definition car.c:136
bool OnBeforeEngineStart()
Definition car.c:379
proto native float EngineGetRPMRedline()
Returns engine's maximal working rpm without damaging the engine.
proto native float GetSteering()
Returns the current steering value in range <-1, 1>.
void OnEngineStart()
Definition car.c:388
proto native vector GetEnginePos()
Get actual position of engine (model space)
proto native int GetGearsCount()
proto native void SetClutchState(bool in)
proto native int GetGearCount()
Returns the number of gears.
proto native void SetBrake(float value, float unused0=0, bool unused1=false)
Sets the future brake value.
void OnFluidChanged(CarFluid fluid, float newValue, float oldValue)
Definition car.c:413
class DiagMenu Shape
don't call destructor directly. Use Destroy() instead
void Obsolete(string msg="")
Definition enscript.c:371
int ARGB(int a, int r, int g, int b)
Definition proto.c:322