1
Pak128.Britain-Ex / Re: How to get started on balancing properly
and encourages cascading to lighter duties.
This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.
and encourages cascading to lighter duties.
accounting for inflation would be quite a task too.
convoy.state = LOADINGsomewhere.
case LOADING:Here
laden();
void convoi_t::laden() //"load" (Babelfish)All good.
{
//Calculate average speed
//@author: jamespetts
const uint32 journey_distance = accurate_distance(fahr[0]->get_pos().get_2d(), fahr[0]->last_stop_pos);
const double journey_time = (welt->get_zeit_ms() - last_departure_time) / 4096.0F;
const uint16 average_speed = ((double)journey_distance / journey_time) * 20.0;
book(average_speed, CONVOI_AVERAGE_SPEED);
last_departure_time = welt->get_zeit_ms();
// Recalculate comfort
book(get_comfort(), CONVOI_COMFORT);
for(uint8 i = 0; i < anz_vehikel; i++)
{
// Accumulate distance
slist_iterator_tpl<ware_t> iter_cargo(fahr[i]->get_fracht());
while(iter_cargo.next())
{
iter_cargo.access_current().add_distance(journey_distance);
}
}
A question about this - will p****engers continue to pile into an overcrowded vehicle (thus compromising their comfort and therefore the player's profitability) if non-overcrowded vehicles are available?
Also, what happens if, during loading of one convoy, another convoy arrives which will reach the destination faster?
Perhaps this is of little relevance to p****engers in any event, as it is seldom sensible to set them to wait for a certain loading level; but perhaps overcrowding at least should be excluded from the loading queue?
That is not correct: waiting time is destination dependent: see the "detail" display on the stations' dialogue boxes, which gives per-destination waiting and travelling times.
new_connexion->waiting_time = halt_list[h]->get_average_waiting_time(halt_list[t], catg);simhalt.cc:
new_connexion->waiting_time = get_average_waiting_time(current_halt, category);It is not destination-specific.
connexion* existing_connexion = connexions[category]->get(current_halt);James, i think waiting time must be used here too.
if(existing_connexion->journey_time > new_connexion->journey_time)
{
// The new connexion is better - replace it.
delete existing_connexion;
connexions[category]->set(current_halt, new_connexion);
}
but it seems to me that there is a more fundamental problem here than simply tampering with the variables.
Perhaps the "bulk goods loading tower" could have parameters that increase goods revenue and/or reduce loading time by, say, 20% (these would be cumulative; five of them would reduce loading time to .8^5 = 33%, not zero).
...if we had hotels/restaurants they could multiply p****enger revenue and decrease loading time similarly. And again cumulatively, if a restaurant increases p****enger revenue by 20%, then five of them would give you 1.2^5 = 2.5 times the revenue.
for longer platforms - you can add the platform to road or rail - its already in as current
if(gr->ist_w****er()) {But for all other is not, it is level-based. (besch->get_level())
[SKIP]
if(besch->get_enabled()&1)
{
capacity[0] += besch->get_station_capacity();
}
if(besch->get_enabled()&2)
{
capacity[1] += besch->get_station_capacity();
}
if(besch->get_enabled()&4)
{
capacity[2] += besch->get_station_capacity();
}
}
else
{
// no sperate capacities: sum up all
capacity[0] += besch->get_station_capacity();
capacity[2] = capacity[1] = capacity[0];
}
}
continue;
}
if( welt->get_einstellungen()->is_seperate_halt_capacities() ) {
if(besch->get_enabled()&1) {
capacity[0] += besch->get_level()*32;
}
if(besch->get_enabled()&2) {
capacity[1] += besch->get_level()*32;
}
if(besch->get_enabled()&4) {
capacity[2] += besch->get_level()*32;
}
}
else {
// no sperate capacities: sum up all
capacity[0] += besch->get_level()*32;
capacity[2] = capacity[1] = capacity[0];
}
Great ideas, especially the ship transport - it is awful to see the ships going through each other and being stapled at the harbour.
It's also clear that we needed fewer short-range trips and more medium-to-long-range ones.
After 15 years of playing I have already hundreds of them.
# now river stuffFrom pak64 pak/config/simuconf.tab
# first river type (should be defined in pak dependent file)
# The highest number is the smallest. A river with max_speed==0 is not navigavable by ships.
#river_type[0] = river
#river_type[1] = small_river
#river_type[2] = just_the source
# rivers:From openpak128/config/simuconf.tab
# The highest number is the smallest. A river with max_speed==0 is not navigavable by ships.
river_type[0] = river
river_type[1] = river2
river_type[0] = river_00From pak128.britain/config/simuconf.tab
river_type[1] = river_01
river_type[2] = river_02
river_type[3] = river_03
river_type[4] = river_04
river_type[0] = River3
river_type[1] = River2
river_type[2] = River1
river_type[3] = River0