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
|
/*
* Copyright (c) 1997 - 2004 Hansjrg Malthaner
*
* Tool to place trees on the map
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#include <stdio.h>
#include "../simcolor.h"
#include "../simtools.h"
#include "../simworld.h"
#include "../simgraph.h"
#include "../simskin.h"
#include "../simwerkz.h"
#include "../simmenu.h"
#include "../dataobj/translator.h"
#include "../besch/bild_besch.h"
#include "../besch/grund_besch.h"
#include "../utils/cbuffer_t.h"
#include "../utils/simstring.h"
#include "baum_edit.h"
// new tool definition
wkz_plant_tree_t baum_edit_frame_t::baum_tool;
char baum_edit_frame_t::param_str[256];
static bool compare_baum_besch(const baum_besch_t* a, const baum_besch_t* b)
{
int diff = strcmp( translator::translate(a->get_name()), translator::translate(b->get_name()) );
if(diff ==0) {
diff = strcmp( a->get_name(), b->get_name() );
}
return diff < 0;
}
baum_edit_frame_t::baum_edit_frame_t(spieler_t* sp_, karte_t* welt) :
extend_edit_gui_t(translator::translate("baum builder"), sp_, welt),
baumlist(16)
{
bt_timeline.set_text( "Random age" );
remove_komponente( &bt_obsolete );
offset_of_comp -= D_BUTTON_HEIGHT;
besch = NULL;
baum_tool.set_default_param(NULL);
fill_list( is_show_trans_name );
resize( koord(0,0) );
}
// fill the current fablist
void baum_edit_frame_t::fill_list( bool translate )
{
baumlist.clear();
FOR(vector_tpl<baum_besch_t const*>, const i, baum_t::get_all_besch()) {
baumlist.insert_ordered(i, compare_baum_besch);
}
// now buil scrolled list
scl.clear_elements();
scl.set_selection(-1);
FOR(vector_tpl<baum_besch_t const*>, const i, baumlist) {
char const* const name = translate ? translator::translate(i->get_name()): i->get_name();
scl.append_element(new gui_scrolled_list_t::const_text_scrollitem_t(name, COL_BLACK));
if (i == besch) {
scl.set_selection(scl.get_count()-1);
}
}
// always update current selection (since the tool may depend on it)
change_item_info( scl.get_selection() );
}
void baum_edit_frame_t::change_item_info(sint32 entry)
{
for(int i=0; i<4; i++ ) {
img[i].set_image( IMG_LEER );
}
buf.clear();
if(entry>=0 && entry<(sint32)baumlist.get_count()) {
besch = baumlist[entry];
buf.append(translator::translate(besch->get_name()));
buf.append("\n\n");
// climates
buf.append( translator::translate("allowed climates:\n") );
uint16 cl = besch->get_allowed_climate_bits();
if(cl==0) {
buf.append( translator::translate("None") );
buf.append("\n");
}
else {
for(uint16 i=0; i<=arctic_climate; i++ ) {
if(cl & (1<<i)) {
buf.append(" - ");
buf.append(translator::translate(grund_besch_t::get_climate_name_from_bit((climate)i)));
buf.append("\n");
}
}
}
buf.printf( "\n%s %i\n", translator::translate("Seasons"), besch->get_seasons() );
if (char const* const maker = besch->get_copyright()) {
buf.append("\n");
buf.printf(translator::translate("Constructed by %s"), maker);
buf.append("\n");
}
info_text.recalc_size();
cont.set_groesse( info_text.get_groesse() + koord(0, 20) );
img[3].set_image( besch->get_bild_nr( 0, 3 ) );
sprintf( param_str, "%i%i,%s", bt_climates.pressed, bt_timeline.pressed, besch->get_name() );
baum_tool.set_default_param(param_str);
baum_tool.cursor = werkzeug_t::general_tool[WKZ_PLANT_TREE]->cursor;
welt->set_werkzeug( &baum_tool, sp );
}
else if(welt->get_werkzeug(sp->get_player_nr())==&baum_tool) {
besch = NULL;
welt->set_werkzeug( werkzeug_t::general_tool[WKZ_ABFRAGE], sp );
}
}
|