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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
|
/*
* Copyright (c) 1997 - 2001 Hansjrg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#include "simdebug.h"
#include "simdings.h"
#include "simgraph.h"
#include "simplan.h"
#include "simworld.h"
#include "simhalt.h"
#include "simplay.h"
#include "simdebug.h"
#include "simconst.h"
#include "besch/grund_besch.h"
#include "boden/grund.h"
#include "boden/boden.h"
#include "boden/fundament.h"
#include "boden/wasser.h"
#include "boden/tunnelboden.h"
#include "boden/brueckenboden.h"
#include "boden/monorailboden.h"
#include "dings/zeiger.h"
#include "dataobj/loadsave.h"
#include "dataobj/umgebung.h"
#include "gui/karte.h"
// deletes also all grounds in this array!
planquadrat_t::~planquadrat_t()
{
if(ground_size==0) {
// empty
}
else if(ground_size==1) {
delete data.one;
}
else {
while(ground_size>0) {
ground_size --;
delete data.some[ground_size];
}
delete [] data.some;
}
if(halt_list_count) {
delete [] halt_list;
}
halt_list_count = 0;
// to avoid access to this tile
ground_size = 0;
data.one = NULL;
}
grund_t *
planquadrat_t::gib_boden_von_obj(ding_t *obj) const
{
if(ground_size==1) {
if(data.one && data.one->obj_ist_da(obj)) {
return data.one;
}
}
else {
for(uint8 i=0; i<ground_size; i++) {
if(data.some[i]->obj_ist_da(obj)) {
return data.some[i];
}
}
}
return NULL;
}
void planquadrat_t::boden_hinzufuegen(grund_t *bd)
{
assert(!bd->ist_karten_boden());
if(ground_size==0) {
// completely empty
data.one = bd;
ground_size = 1;
reliefkarte_t::gib_karte()->calc_map_pixel(bd->gib_pos().gib_2d());
return;
}
else if(ground_size==1) {
// needs to convert to array
// assert(data.one->gib_hoehe()!=bd->gib_hoehe());
if(data.one->gib_hoehe()==bd->gib_hoehe()) {
DBG_MESSAGE("planquadrat_t::boden_hinzufuegen()","addition ground %s at (%i,%i,%i) will be ignored!",bd->gib_name(),bd->gib_pos().x,bd->gib_pos().y,bd->gib_pos().z);
return;
}
grund_t **tmp = new grund_t *[2];
tmp[0] = data.one;
tmp[1] = bd;
data.some = tmp;
ground_size = 2;
reliefkarte_t::gib_karte()->calc_map_pixel(bd->gib_pos().gib_2d());
return;
}
else {
// insert into array
uint8 i;
for(i=1; i<ground_size; i++) {
if(data.some[i]->gib_hoehe()>=bd->gib_hoehe()) {
break;
}
}
if(i<ground_size && data.some[i]->gib_hoehe()==bd->gib_hoehe()) {
DBG_MESSAGE("planquadrat_t::boden_hinzufuegen()","addition ground %s at (%i,%i,%i) will be ignored!",bd->gib_name(),bd->gib_pos().x,bd->gib_pos().y,bd->gib_pos().z);
return;
}
bd->set_kartenboden(false);
// extend array if needed
grund_t **tmp = new grund_t *[ground_size+1];
for( uint8 j=0; j<i; j++ ) {
tmp[j] = data.some[j];
}
tmp[i] = bd;
while(i<ground_size) {
tmp[i+1] = data.some[i];
i++;
}
ground_size ++;
delete [] data.some;
data.some = tmp;
reliefkarte_t::gib_karte()->calc_map_pixel(bd->gib_pos().gib_2d());
}
}
bool planquadrat_t::boden_entfernen(grund_t *bd)
{
assert(!bd->ist_karten_boden() && ground_size>0);
if(ground_size==1) {
ground_size = 0;
data.one = NULL;
return true;
}
else {
for(uint8 i=0; i<ground_size; i++) {
if(data.some[i]==bd) {
// found
while(i<ground_size) {
data.some[i] = data.some[i+1];
i++;
}
ground_size --;
// below 2?
if(ground_size==1) {
grund_t *tmp=data.some[0];
delete [] data.some;
data.one = tmp;
}
return true;
}
}
}
assert(0);
return false;
}
void
planquadrat_t::kartenboden_setzen(grund_t *bd)
{
assert(bd);
grund_t *tmp = gib_kartenboden();
if(tmp) {
boden_ersetzen(tmp,bd);
}
else {
data.one = bd;
ground_size = 1;
bd->set_kartenboden(true);
}
bd->calc_bild();
reliefkarte_t::gib_karte()->calc_map_pixel(bd->gib_pos().gib_2d());
}
/**
* Ersetzt Boden alt durch neu, lscht Boden alt.
* @author Hansjrg Malthaner
*/
void planquadrat_t::boden_ersetzen(grund_t *alt, grund_t *neu)
{
assert(alt!=NULL && neu!=NULL);
#ifdef COVER_TILES
if(alt->get_flag(grund_t::is_cover_tile)) {
neu->set_flag(grund_t::is_cover_tile);
}
#endif
if(ground_size<=1) {
assert(data.one==alt || ground_size==0);
data.one = neu;
ground_size = 1;
neu->set_kartenboden(true);
}
else {
for(uint8 i=0; i<ground_size; i++) {
if(data.some[i]==alt) {
data.some[i] = neu;
neu->set_kartenboden(i==0);
break;
}
}
}
// transfer text and delete
if(alt) {
if(alt->get_flag(grund_t::has_text)) {
neu->set_flag(grund_t::has_text);
alt->clear_flag(grund_t::has_text);
}
// transfer all objects
while( alt->gib_top()>0 ) {
neu->obj_add( alt->obj_remove_top() );
}
// delete old ground
delete alt;
}
}
void
planquadrat_t::rdwr(karte_t *welt, loadsave_t *file)
{
if(file->is_saving()) {
if(ground_size==1) {
data.one->rdwr(file);
}
else {
for(int i=0; i<ground_size; i++) {
data.some[i]->rdwr(file);
}
}
file->wr_obj_id(-1);
}
else {
grund_t *gr;
//DBG_DEBUG("planquadrat_t::rdwr()","Reading boden");
do {
grund_t::typ gtyp = (grund_t::typ)file->rd_obj_id();
switch(gtyp) {
case -1: gr = NULL; break;
case grund_t::boden: gr = new boden_t(welt, file); break;
case grund_t::wasser: gr = new wasser_t(welt, file); break;
case grund_t::fundament: gr = new fundament_t(welt, file); break;
case grund_t::tunnelboden: gr = new tunnelboden_t(welt, file); break;
case grund_t::brueckenboden: gr = new brueckenboden_t(welt, file); break;
case grund_t::monorailboden: gr = new monorailboden_t(welt, file); break;
default:
gr = 0; // Hajo: keep compiler happy, fatal() never returns
dbg->fatal("planquadrat_t::rdwr()","Error while loading game: Unknown ground type '%d'",gtyp);
}
// check if we have a matching building here, otherwise set to nothing
if (gr && gtyp == grund_t::fundament && gr->find<gebaeude_t>() == NULL) {
koord3d pos = gr->gib_pos();
// show normal ground here
grund_t *neu = new boden_t(welt, pos, 0);
if(gr->get_flag(grund_t::has_text)) {
neu->set_flag(grund_t::has_text);
gr->clear_flag(grund_t::has_text);
}
// transfer all objects
while( gr->gib_top()>0 ) {
neu->obj_add( gr->obj_remove_top() );
}
delete gr;
gr = neu;
//DBG_MESSAGE("planquadrat_t::rwdr", "unknown building (or prepare for factory) at %d,%d replaced by normal ground!", pos.x,pos.y);
}
// we should also check for ground below factories
if(gr) {
if(ground_size==0) {
data.one = gr;
ground_size = 1;
gr->set_kartenboden(true);
}
else {
boden_hinzufuegen(gr);
}
}
} while(gr != 0);
}
}
// start a new month (an change seasons)
void planquadrat_t::check_season(const long month)
{
if(ground_size==0) {
}
else if(ground_size==1) {
data.one->check_season(month);
}
else {
for(uint8 i=0; i<ground_size; i++) {
data.some[i]->check_season(month);
}
}
}
void planquadrat_t::abgesenkt(karte_t *welt)
{
grund_t *gr = gib_kartenboden();
if(gr) {
koord k=gr->gib_pos().gib_2d();
uint8 slope = welt->calc_natural_slope(k);
gr->obj_loesche_alle(NULL);
gr->setze_pos(koord3d(k,welt->min_hgt(k)));
if(welt->max_hgt(k) <= welt->gib_grundwasser() && gr->gib_typ()!=grund_t::wasser) {
kartenboden_setzen(new wasser_t(welt, gr->gib_pos()) );
}
else {
reliefkarte_t::gib_karte()->calc_map_pixel(k);
}
gr->setze_grund_hang( slope );
}
}
void planquadrat_t::angehoben(karte_t *welt)
{
grund_t *gr = gib_kartenboden();
if(gr) {
koord k ( gr->gib_pos().gib_2d() );
uint8 slope = welt->calc_natural_slope(k);
gr->obj_loesche_alle(NULL);
gr->setze_pos(koord3d(k,welt->min_hgt(k)));
if (welt->max_hgt(k) > welt->gib_grundwasser() && gr->gib_typ()==grund_t::wasser) {
kartenboden_setzen(new boden_t(welt, gr->gib_pos(), slope ) );
}
else {
gr->setze_grund_hang( slope );
reliefkarte_t::gib_karte()->calc_map_pixel(k);
}
}
}
void planquadrat_t::display_boden(const sint16 xpos, const sint16 ypos) const
{
grund_t *gr=gib_kartenboden();
if(!gr->get_flag(grund_t::draw_as_ding)) {
gr->display_boden(xpos, ypos);
}
}
void
planquadrat_t::display_dinge(const sint16 xpos, const sint16 ypos, const sint16 raster_tile_width, bool called_by_simview) const
{
grund_t *gr=gib_kartenboden();
//const bool kartenboden_dirty = gr->get_flag(grund_t::dirty);
if(gr->get_flag(grund_t::draw_as_ding)) {
gr->display_boden(xpos, ypos);
}
gr->display_dinge(xpos, ypos, called_by_simview);
if(ground_size>1) {
const sint16 h0 = gr->gib_hoehe();
for(uint8 i=1; i<ground_size; i++) {
gr=data.some[i];
const sint16 yypos = ypos - tile_raster_scale_y( (gr->gib_hoehe()-h0)*TILE_HEIGHT_STEP/Z_TILE_STEP, raster_tile_width);
gr->display_boden(xpos, yypos );
gr->display_dinge(xpos, yypos, called_by_simview );
}
}
}
void planquadrat_t::display_overlay(const sint16 xpos, const sint16 ypos) const
{
grund_t *gr=gib_kartenboden();
// display station owner boxes
if(umgebung_t::station_coverage_show && halt_list_count>0) {
if(umgebung_t::use_transparency_station_coverage) {
// only transparent outline
image_id img = gib_kartenboden()->gib_bild();
if(img==IMG_LEER) {
// default image (since i.e. foundations do not have an image)
img = grund_besch_t::ausserhalb->gib_bild(hang_t::flach);
}
for(int halt_count = 0; halt_count < halt_list_count; halt_count++) {
const PLAYER_COLOR_VAL transparent = PLAYER_FLAG | OUTLINE_FLAG | (halt_list[halt_count]->gib_besitzer()->get_player_color1() + 4);
display_img_blend( img, xpos, ypos, transparent | TRANSPARENT25_FLAG, 0, 0);
}
/*
// unfourtunately, too expensive for display
// plot player outline colours - we always plot in order of players so that the order of the stations in halt_list
// doesn't affect the colour displayed [since blend(col1,blend(col2,screen)) != blend(col2,blend(col1,screen))]
for(int spieler_count = 0; spieler_count<MAX_PLAYER_COUNT; spieler_count++) {
spieler_t *display_player = gr->get_welt()->gib_spieler(spieler_count);
const PLAYER_COLOR_VAL transparent = PLAYER_FLAG | OUTLINE_FLAG | (display_player->get_player_color1() * 4 + 4);
for(int halt_count = 0; halt_count < halt_list_count; halt_count++) {
if(halt_list[halt_count]->gib_besitzer() == display_player) {
display_img_blend( img, xpos, ypos, transparent | TRANSPARENT25_FLAG, 0, 0);
}
}
}
*/
}
else {
const sint16 raster_tile_width = get_tile_raster_width();
// opaque boxes (
const sint16 r=raster_tile_width/8;
const sint16 x=xpos+raster_tile_width/2-r;
const sint16 y=ypos+(raster_tile_width*3)/4-r - (gib_kartenboden()->gib_grund_hang()? tile_raster_scale_y(8,raster_tile_width): 0);
const bool kartenboden_dirty = gr->get_flag(grund_t::dirty);
// suitable start search
for(sint16 h=halt_list_count-1; h>=0; h-- ) {
display_fillbox_wh_clip(x - h * 2, y + h * 2, r, r, PLAYER_FLAG | (halt_list[h]->gib_besitzer()->get_player_color1() + 4), kartenboden_dirty);
}
}
}
if(ground_size>1) {
const sint16 h0 = gr->gib_hoehe();
for(uint8 i=0; i<ground_size; i++) {
gr=data.some[i];
const sint16 yypos = ypos - (gr->gib_hoehe()-h0)*get_tile_raster_width()/(2*Z_TILE_STEP);
gr->display_overlay(xpos, yypos );
}
}
else {
gr->display_overlay(xpos, ypos );
}
}
/**
* Manche Bden knnen zu Haltestellen gehren.
* Der Zeiger auf die Haltestelle wird hiermit gesetzt.
* @author Hj. Malthaner
*/
void planquadrat_t::setze_halt(halthandle_t halt)
{
#ifdef DEBUG
if(halt.is_bound() && this_halt.is_bound() && halt!=this_halt) {
koord k = (ground_size>0) ? gib_kartenboden()->gib_pos().gib_2d() : koord::invalid;
dbg->warning("planquadrat_t::setze_halt()","assign new halt to already bound halt at (%i,%i)!", k.x, k.y );
}
#endif
this_halt = halt;
}
// these functions are private helper functions for halt_list
void planquadrat_t::halt_list_remove( halthandle_t halt )
{
for( uint8 i=0; i<halt_list_count; i++ ) {
if(halt_list[i]==halt) {
for( uint8 j=i+1; j<halt_list_count; j++ ) {
halt_list[j-1] = halt_list[j];
}
halt_list_count--;
break;
}
}
}
void planquadrat_t::halt_list_insert_at( halthandle_t halt, uint8 pos )
{
// extend list?
if((halt_list_count%4)==0) {
halthandle_t *tmp = new halthandle_t[halt_list_count+4];
if(halt_list!=NULL) {
// now insert
for( uint8 i=0; i<halt_list_count; i++ ) {
tmp[i] = halt_list[i];
}
delete [] halt_list;
}
halt_list = tmp;
}
// now insert
for( uint8 i=halt_list_count; i>pos; i-- ) {
halt_list[i] = halt_list[i-1];
}
halt_list[pos] = halt;
halt_list_count ++;
}
/* The following functions takes at least 8 bytes of memory per tile but speed up passenger generation *
* @author prissi
*/
void planquadrat_t::add_to_haltlist(halthandle_t halt)
{
if(halt.is_bound()) {
spieler_t *sp=halt->gib_besitzer();
unsigned insert_pos = 0;
// quick and dirty way to our 2d koodinates ...
const koord pos = gib_kartenboden()->gib_pos().gib_2d();
// exact position does matter only for passenger/mail transport
if(sp!=NULL && sp->has_passenger() && halt_list_count>0 ) {
halt_list_remove(halt);
// since only the first one gets all the passengers, we want the closest one for passenger transport to be on top
for(insert_pos=0; insert_pos<halt_list_count; insert_pos++) {
// not a passenger KI or other is farer away
if (!halt_list[insert_pos]->gib_besitzer()->has_passenger() ||
abs_distance(halt_list[insert_pos]->get_next_pos(pos), pos) > abs_distance(halt->get_next_pos(pos), pos))
{
halt_list_insert_at( halt, insert_pos );
return;
}
}
// not found
}
else {
// just look, if it is not there ...
for(insert_pos=0; insert_pos<halt_list_count; insert_pos++) {
if(halt_list[insert_pos]==halt) {
// do not add twice
return;
}
}
}
// first or no passenger or append to the end ...
halt_list_insert_at( halt, halt_list_count );
}
}
/**
* removes the halt from a ground
* however this funtion check, whether there is really no other part still reachable
* @author prissi
*/
void planquadrat_t::remove_from_haltlist(karte_t *welt, halthandle_t halt)
{
// quick and dirty way to our 2d koodinates ...
const koord pos = gib_kartenboden()->gib_pos().gib_2d();
int cov = welt->gib_einstellungen()->gib_station_coverage();
for (int y = -cov; y <= cov; y++) {
for (int x = -cov; x <= cov; x++) {
koord test_pos = pos+koord(x,y);
const planquadrat_t *pl = welt->lookup(test_pos);
if(pl && pl->gib_halt()==halt ) {
// still conncected => do nothing
return;
}
}
}
// if we reached here, we are not connected to this halt anymore
halt_list_remove(halt);
}
/**
* true, if this halt is reachable from here
* @author prissi
*/
bool planquadrat_t::is_connected(halthandle_t halt) const
{
for( uint8 i=0; i<halt_list_count; i++ ) {
if(halt_list[i]==halt) {
return true;
}
}
return false;
}
|