summaryrefslogtreecommitdiff
path: root/game/vehicles/railloco.cpp
blob: baa9b8167dee3c573ec2763e4a5966ac62408745 (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
#include "railloco.h"
#include "game/vehicles/vehicle.h"
#include "gfx/gl/transform.h"
#include <glm/glm.hpp>
#include <maths.h>

void
RailLoco::tick(TickDuration dur)
{
	linkDist += dur.count() * speed;
	while (linkDist > link->length) {
		location = link->positionAt(link->length, linkDir);
		const auto & nexts {link->nexts[1 - linkDir]};
		const auto next = std::find_if(nexts.begin(), nexts.end(), [ang = location.GetRot().y](const Link::Next & n) {
			return std::abs(normalize(n.first->ends[n.second].second - ang)) < 0.1F;
		});
		if (next != nexts.end()) {
			linkDist -= link->length;
			link = next->first;
			linkDir = next->second;
		}
		else {
			linkDist = link->length;
			speed = 0;
		}
	}
	location = link->positionAt(linkDist, linkDir);
}

Brush47::Brush47(LinkPtr l) : RailLoco(l, "brush47.obj", "brush47.png") { }