summaryrefslogtreecommitdiff
path: root/src/engine/vehicles/Boat.h
blob: dcdd89977fd5c9d8fbe33c9a20d9f626a5bba19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once

#include <libultraship.h>
#include "Actor.h"
#include <vector>

extern "C" {
#include "main.h"
#include "vehicles.h"
}

class ABoat : public AActor {
    public:

    const char* Type = "mk:boat";
    size_t Index;
    bool IsActive; // The paddle wheel boat only shows up if the number of players is < 3
    Vec3f Position;
    Vec3f Velocity;
    u16 WaypointIndex;
    s16 ActorIndex;
    f32 Speed;
    s16 RotY = 0;
    s32 SomeFlags;

    int32_t SmokeParticles[128];
    int32_t NextParticlePtr = 0;
    int16_t AnotherSmokeTimer = 0;
    int16_t SmokeTimer = 0;

    explicit ABoat(f32 speed, uint32_t waypoint);

    ~ABoat() {
        _count--;
    }

    static size_t GetCount() {
        return _count;
    }

    virtual void Tick() override;
    virtual void Draw(Camera* camera) override;
    virtual void VehicleCollision(s32 playerId, Player* player) override;
    virtual s32 AddSmoke(size_t, Vec3f, f32);
    virtual bool IsMod() override;
private:
    static size_t _count;

};