forked from teamhimeh/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simpeople.cc
132 lines (99 loc) · 2.52 KB
/
simpeople.cc
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
* simpeople.h
*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project and may not be used
* in other projects without written permission of the author.
*/
#include <stdio.h>
#include "simdebug.h"
#include "simworld.h"
#include "simimg.h"
#include "simpeople.h"
#include "simtools.h"
#include "simmem.h"
#include "boden/grund.h"
#include "dataobj/loadsave.h"
#include "tpl/slist_mit_gewichten_tpl.h"
#include "besch/fussgaenger_besch.h"
int fussgaenger_t::count = 0;
int fussgaenger_t::strecke[] = {6000, 11000, 15000, 20000, 25000, 30000, 35000, 40000};
slist_mit_gewichten_tpl<const fussgaenger_besch_t *> fussgaenger_t::liste;
stringhashtable_tpl<const fussgaenger_besch_t *> fussgaenger_t::table;
bool fussgaenger_t::register_besch(const fussgaenger_besch_t *besch)
{
liste.append(besch);
table.put(besch->gib_name(), besch);
return true;
}
bool fussgaenger_t::laden_erfolgreich()
{
if(liste.count() == 0) {
DBG_MESSAGE("fussgaenger_t", "No pedestrians found - feature disabled");
}
return true ;
}
int fussgaenger_t::gib_anzahl_besch()
{
return liste.count();
}
fussgaenger_t::fussgaenger_t(karte_t *welt, loadsave_t *file)
: verkehrsteilnehmer_t(welt)
{
rdwr(file);
setze_max_speed(128);
schritte = strecke[count & 3];
sum = 0;
count ++;
is_sync = true;
welt->sync_add(this);
}
fussgaenger_t::fussgaenger_t(karte_t *welt, koord3d pos)
: verkehrsteilnehmer_t(welt, pos)
{
setze_max_speed(128);
besch = liste.gib_gewichted(simrand(liste.gib_gesamtgewicht()));
schritte = strecke[count & 7];
sum = 0;
count ++;
is_sync = false;
}
fussgaenger_t::~fussgaenger_t()
{
if(is_sync) {
welt->sync_remove(this);
}
}
bool fussgaenger_t::sync_step(long delta_t)
{
verkehrsteilnehmer_t::sync_step(delta_t);
current_speed = 128;
sum += delta_t;
return (is_sync = sum < schritte);
}
void fussgaenger_t::rdwr(loadsave_t *file)
{
verkehrsteilnehmer_t::rdwr(file);
const char *s = NULL;
if(!file->is_loading()) {
s = besch->gib_name();
}
file->rdwr_str(s, "N");
if(file->is_loading()) {
besch = table.get(s);
// unknow pedestrian => create random new one
if(besch == 0) {
besch = liste.gib_gewichted(simrand(liste.gib_gesamtgewicht()));
}
guarded_free(const_cast<char *>(s));
}
}
void fussgaenger_t::calc_bild()
{
if(welt->lookup(gib_pos())->ist_im_tunnel()) {
setze_bild(0, IMG_LEER);
} else {
setze_bild(0,besch->gib_bild_nr(ribi_t::gib_dir(gib_fahrtrichtung())));
}
}