forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simobj.cc
339 lines (289 loc) · 9.26 KB
/
simobj.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
/*
* Copyright (c) 1997 - 2001 Hj. Malthaner
*
* This file is part of the Simutrans project under the artistic license.
* (see license.txt)
*/
/*
* Basic class of all visible things
*
* Hj. Maltahner
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "simdebug.h"
#include "display/simimg.h"
#include "simcolor.h"
#include "display/simgraph.h"
#include "display/viewport.h"
#include "gui/simwin.h"
#include "player/simplay.h"
#include "simobj.h"
#include "simworld.h"
#include "obj/baum.h"
#include "vehicle/simvehicle.h"
#include "dataobj/translator.h"
#include "dataobj/loadsave.h"
#include "boden/grund.h"
#include "gui/obj_info.h"
#include "utils/cbuffer_t.h"
#include "utils/simstring.h"
/**
* Pointer to the world of this thing. Static to conserve space.
* Change to instance variable once more than one world is available.
* @author Hj. Malthaner
*/
karte_ptr_t obj_t::welt;
bool obj_t::show_owner = false;
void obj_t::init()
{
pos = koord3d::invalid;
xoff = 0;
yoff = 0;
owner_n = PLAYER_UNOWNED;
flags = no_flags;
set_flag(dirty);
}
obj_t::obj_t()
{
init();
}
obj_t::obj_t(koord3d pos)
{
init();
this->pos = pos;
}
// removes an object and tries to delete it also from the corresponding objlist
obj_t::~obj_t()
{
destroy_win((ptrdiff_t)this);
if(flags¬_on_map || !welt->is_within_limits(pos.get_2d())) {
return;
}
// find object on the map and remove it
grund_t *gr = welt->lookup(pos);
if(!gr || !gr->obj_remove(this)) {
// not found? => try harder at all map locations
dbg->warning("obj_t::~obj_t()","couldn't remove %p from %d,%d,%d",this, pos.x , pos.y, pos.z);
// first: try different height ...
gr = welt->access(pos.get_2d())->get_boden_von_obj(this);
if(gr && gr->obj_remove(this)) {
dbg->warning("obj_t::~obj_t()",
"removed %p from %d,%d,%d, but it should have been on %d,%d,%d",
this,
gr->get_pos().x, gr->get_pos().y, gr->get_pos().z,
pos.x, pos.y, pos.z);
return;
}
// then search entire map
koord k;
for(k.y=0; k.y<welt->get_size().y; k.y++) {
for(k.x=0; k.x<welt->get_size().x; k.x++) {
grund_t *gr = welt->access(k)->get_boden_von_obj(this);
if (gr && gr->obj_remove(this)) {
dbg->warning("obj_t::~obj_t()",
"removed %p from %d,%d,%d, but it should have been on %d,%d,%d",
this,
gr->get_pos().x, gr->get_pos().y, gr->get_pos().z,
pos.x, pos.y, pos.z);
return;
}
}
}
}
}
/**
* sets owner of object
*/
void obj_t::set_owner(player_t *player)
{
int i = welt->sp2num(player);
assert(i>=0);
owner_n = (uint8)i;
}
player_t *obj_t::get_owner() const
{
return welt->get_player(owner_n);
}
/* the only general info we can give is the name
* we want to format it nicely,
* with two linebreaks at the end => thus the little extra effort
*/
void obj_t::info(cbuffer_t & buf) const
{
char translation[256];
char const* const owner =
owner_n == 1 ? translator::translate("Eigenbesitz\n") :
owner_n == PLAYER_UNOWNED ? translator::translate("Kein Besitzer\n") :
get_owner()->get_name();
tstrncpy(translation, owner, lengthof(translation));
// remove trailing linebreaks etc.
rtrim(translation);
buf.append( translation );
// only append linebreaks if not empty
if( buf.len()>0 ) {
buf.append( "\n\n" );
}
}
void obj_t::show_info()
{
create_win( new obj_infowin_t(this), w_info, (ptrdiff_t)this);
}
bool obj_t::has_managed_lifecycle() const {
return false;
}
// returns NULL, if removal is allowed
const char *obj_t::is_deletable(const player_t *player)
{
if(owner_n==PLAYER_UNOWNED || welt->get_player(owner_n) == player || welt->get_public_player() == player) {
return NULL;
}
else {
return "Der Besitzer erlaubt das Entfernen nicht";
}
}
void obj_t::rdwr(loadsave_t *file)
{
xml_tag_t d( file, "obj_t" );
if( file->is_version_less(101, 0) ) {
pos.rdwr( file );
}
sint8 byte = (sint8)(((sint16)16*(sint16)xoff)/OBJECT_OFFSET_STEPS);
file->rdwr_byte(byte);
xoff = (sint8)(((sint16)byte*OBJECT_OFFSET_STEPS)/16);
byte = (sint8)(((sint16)16*(sint16)yoff)/OBJECT_OFFSET_STEPS);
file->rdwr_byte(byte);
yoff = (sint8)(((sint16)byte*OBJECT_OFFSET_STEPS)/16);
byte = owner_n;
file->rdwr_byte(byte);
owner_n = byte;
}
/**
* draw the object
* the dirty-flag is reset from objlist_t::display_obj_fg, or objlist_t::display_overlay when multithreaded
*/
void obj_t::display(int xpos, int ypos CLIP_NUM_DEF) const
{
image_id image = get_image();
image_id const outline_image = get_outline_image();
if( image!=IMG_EMPTY || outline_image!=IMG_EMPTY ) {
const int raster_width = get_current_tile_raster_width();
const bool is_dirty = get_flag(obj_t::dirty);
if (vehicle_base_t const* const v = obj_cast<vehicle_base_t>(this)) {
// vehicles need finer steps to appear smoother
v->get_screen_offset( xpos, ypos, raster_width );
}
xpos += tile_raster_scale_x(get_xoff(), raster_width);
ypos += tile_raster_scale_y(get_yoff(), raster_width);
const int start_ypos = ypos;
for( int j=0; image!=IMG_EMPTY; ) {
if( owner_n != PLAYER_UNOWNED ) {
if( obj_t::show_owner ) {
display_blend( image, xpos, ypos, owner_n, color_idx_to_rgb(welt->get_player(owner_n)->get_player_color1()+2) | OUTLINE_FLAG | TRANSPARENT75_FLAG, 0, is_dirty CLIP_NUM_PAR);
}
else {
display_color( image, xpos, ypos, owner_n, true, is_dirty CLIP_NUM_PAR);
}
}
else {
display_normal( image, xpos, ypos, 0, true, is_dirty CLIP_NUM_PAR);
}
// this obj has another image on top (e.g. skyscraper)
ypos -= raster_width;
image = get_image(++j);
}
if( outline_image != IMG_EMPTY ) {
// transparency?
const FLAGGED_PIXVAL transparent = get_outline_colour();
if( TRANSPARENT_FLAGS&transparent ) {
// only transparent outline
display_blend( get_outline_image(), xpos, start_ypos, owner_n, transparent, 0, is_dirty CLIP_NUM_PAR);
}
else if( obj_t::get_flag( highlight ) ) {
// highlight this tile
display_blend( get_image(), xpos, start_ypos, owner_n, color_idx_to_rgb(COL_RED) | OUTLINE_FLAG | TRANSPARENT75_FLAG, 0, is_dirty CLIP_NUM_PAR);
}
}
else if( obj_t::get_flag( highlight ) ) {
// highlight this tile
display_blend( get_image(), xpos, start_ypos, owner_n, color_idx_to_rgb(COL_RED) | OUTLINE_FLAG | TRANSPARENT75_FLAG, 0, is_dirty CLIP_NUM_PAR);
}
}
}
// called during map rotation
void obj_t::rotate90()
{
// most basic: rotate coordinate
pos.rotate90( welt->get_size().y-1 );
if(xoff!=0) {
sint8 new_dx = -2*yoff;
yoff = xoff/2;
xoff = new_dx;
}
}
#ifdef MULTI_THREAD
void obj_t::display_after(int xpos, int ypos, const sint8 clip_num) const
#else
void obj_t::display_after(int xpos, int ypos, bool) const
#endif
{
image_id image = get_front_image();
if( image != IMG_EMPTY ) {
const int raster_width = get_current_tile_raster_width();
const bool is_dirty = get_flag( obj_t::dirty );
xpos += tile_raster_scale_x( get_xoff(), raster_width );
ypos += tile_raster_scale_y( get_yoff(), raster_width );
if( owner_n != PLAYER_UNOWNED ) {
if( obj_t::show_owner ) {
display_blend( image, xpos, ypos, owner_n, color_idx_to_rgb(welt->get_player(owner_n)->get_player_color1()+2) | OUTLINE_FLAG | TRANSPARENT75_FLAG, 0, is_dirty CLIP_NUM_PAR);
}
else if( obj_t::get_flag( highlight ) ) {
// highlight this tile
display_blend( image, xpos, ypos, owner_n, color_idx_to_rgb(COL_RED) | OUTLINE_FLAG | TRANSPARENT75_FLAG, 0, is_dirty CLIP_NUM_PAR);
}
else {
display_color( image, xpos, ypos, owner_n, true, is_dirty CLIP_NUM_PAR);
}
}
else if( obj_t::get_flag( highlight ) ) {
// highlight this tile
display_blend( image, xpos, ypos, owner_n, color_idx_to_rgb(COL_RED) | OUTLINE_FLAG | TRANSPARENT75_FLAG, 0, is_dirty CLIP_NUM_PAR);
}
else {
display_normal( image, xpos, ypos, 0, true, is_dirty CLIP_NUM_PAR);
}
}
}
/*
* when a vehicle moves or a cloud moves, it needs to mark the old spot as dirty (to copy to screen)
* sometimes they have an extra offset, this is the yoff parameter
* @author prissi
*/
void obj_t::mark_image_dirty(image_id image, sint16 yoff) const
{
if( image != IMG_EMPTY ) {
const sint16 rasterweite = get_tile_raster_width();
int xpos=0, ypos=0;
if( is_moving() ) {
vehicle_base_t const* const v = obj_cast<vehicle_base_t>(this);
// vehicles need finer steps to appear smoother
v->get_screen_offset( xpos, ypos, get_tile_raster_width() );
}
viewport_t *vp = welt->get_viewport();
scr_coord scr_pos = vp->get_screen_coord(get_pos(), koord(get_xoff(), get_yoff()));
// xpos, ypos, yoff are already in pixel units, no scaling needed
// mark the region after the image as dirty
display_mark_img_dirty( image, scr_pos.x + xpos, scr_pos.y + ypos + yoff);
// too close to border => set dirty to be sure (smoke, skyscrapers, birds, or the like)
KOORD_VAL xbild, ybild, wbild, hbild;
display_get_image_offset( image, &xbild, &ybild, &wbild, &hbild );
const sint16 distance_to_border = 3 - (yoff+get_yoff()+ybild)/(rasterweite/4);
if( pos.x <= distance_to_border || pos.y <= distance_to_border ) {
// but only if the image is actually visible ...
if( scr_pos.x+xbild+wbild >= 0 && xpos <= display_get_width() && scr_pos.y+ybild+hbild >= 0 && ypos+ybild < display_get_height() ) {
welt->set_background_dirty();
}
}
}
}