Skip to main content

Show Posts

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.

Messages - gerw

1
Incorporated Patches and Solved Bug Reports / Re: [patch] make profiling working again
Thank you for your comments.

Apart from clock_gettime() not being available on Windows, the manpage states that it will not work properly on Multicors. Thus I think the time(NULL) should be rather kept.
The problem is, that time(NULL) returns seconds and not milliseconds. I searched the internet and there seems to be no posix way to get milliseconds...


Quote
Moreover, I want to do profiling without fast forward (for instance on graphic updates). Thus I took out the mandantory fast forward for profiling. The second ifdef is also not needed, since you will use profiling usually with a loaded game. Anyway, looking for quit_month seems a wiser choice here.
Coupling the fast forward to the "until" is a good choice!
6
Incorporated Patches and Solved Bug Reports / Re: [patch] Stop Counting in rebuild_destinations()
Ok. But we should do it step-by-step. Here's a roadmap:

1. simconvoi_t::get_catg_index (maybe sorted).
Or what about a bit-field: vector_tpl<bool> enabled_catg_index(length: max_index_catg); enabled_catg_index[ i ] == true <=> catg_index i can be transported by convoy => Then the same for lines

2. stations keeping track of their lineless convoys

2.5. Optimize rebuild_destinations

3. local schedule_counter, global reroute counter.

3.5. Optimize reroute_goods


If it is ok, I will do this in the next weeks (months, years, centuries,...) ;)
7
Incorporated Patches and Solved Bug Reports / Re: [patch] Stop Counting in rebuild_destinations()
I support this. Actually I did the same for EXP.
I thought of a variable simconvoi_t::add_catg_index_is_dirty and every time a vehicle changes, this is set to false. If now get_add_catg_index is called and it is dirty, it is recalculated. With this you have almost none overhead (and then you won't need doubled code ;) ).
8
Incorporated Patches and Solved Bug Reports / Re: [patch] Stop Counting in rebuild_destinations()
Some code doubling is better, since the gathering of the goods of lineless convoi take some time. This is especially true, if then the owner is wrong or the convoi does not stops at the own stop. Based on your patch, this would be my suggestion.
Argh, I don't like to view a diff of patches ;)

Ok, my notes:
 - I would like to use an uint32 to index the convoys rather than this iterator beast - at least for me it is a beast...
 - The convoys could cache the catg_index-vector. This would take a little bit memory, but saves comp. time.
 - If the stations also have a list of lineless convoys, we could save even more comp. time (I've done this successfully some time ago). Also players would benefit from this, if this list is displayed at the stations details.


Can you commit your suggestion, so we have a common basis for the next suggestions? (The patches would become smaller and easier to read).

Quote
(And the iterator require preincrement, although for vectors this is not enforced by the code. Also I dislike *xyz->operator[](inxed) compared to (*xyz)[index]. Is there a reason which using the long code?)
No, it's only personal preference - I don't like the (*xyz)[idx] ;)
9
Incorporated Patches and Solved Bug Reports / Re: r2848 win pak128 Stops - Destination changed after reloading savegames
Btw, formerly bound handles could be treated easily as not equal, since their ids differ!
Yes.
Quote
However this would break code in some places, I fear. And I see no gain, unbound should be unbound.
Mmh. My idea was, that two unbound handles are always unequal (even if they have the same "entry"). Currently, unbound handles are "sometimes" equal and sometimes not. This is somehow inconsistent, but equality of unbound handles isn't tested often in the game, I think. And since the bug is fixed in r2850, we don't have to touch this (yet).
10
Incorporated Patches and Solved Bug Reports / Re: r2848 win pak128 Stops - Destination changed after reloading savegames
Maybe get_halt() returned halthandle_t() and they made a big group.
Oh, yes. This is it: On loading, all ware_t gets a unique halthandle_t (this can get unbound after loading). But, if get_halt return halthandle_t(), all those ware_t have a handle with entry=0. And then the ==operator returns true. And then pax and mail gets joined...

Maybe we should think of halthandle_t()!=halthandle_t()? Matlab (a program for numerics), e.g., has NotANumber!=NotANumber. Maybe this is also usefull here.
11
Incorporated Patches and Solved Bug Reports / Re: r2848 win pak128 Stops - Destination changed after reloading savegames
Imho, this is a bug in simhalt_t::suche_route, since the connections are calculated correctly - or at least displayed correctly ;)

Edit:I don't even understand the lines arround. My modified code
Code: [Select]
	if(ziel.is_bound()) {
halthandle_t new_ziel = welt->lookup(ziel->get_init_pos())->get_halt();
if( ziel != new_ziel ) {
****ert(false);
}
}
else {
ziel = haltestelle_t::get_halt( welt, zielpos, NULL );
}
if(zwischenziel.is_bound()) {
halthandle_t new_zwischenziel = welt->lookup(zwischenziel->get_init_pos())->get_halt();
if( zwischenziel != new_zwischenziel ) {
****ert(false);
}
}

And indeed, if I delete the line you mentioned, all things are normal again. But I don't understand this...
15
Incorporated Patches and Solved Bug Reports / Re: [patch] Stop Counting in rebuild_destinations()
Make the bags by stops would make the test for already existing connections with lower stops count a little longer. SO I did not do this.
But if you have the bags, and you want to search for a warenziel_sorter_t with a small "stop", you have to look only in the bags with small numbers (< stop). I would guess, it could be a little bit faster.
21
Incorporated Patches and Solved Bug Reports / Re: [patch] Stop Counting in rebuild_destinations()
Any sorting routing would do essentially the same than this loop. There is no gain only looks prettier.
Shouldn't it be faster to sort it first (or keep it sorted all the time)? Or you make one basket for every value of warenzielsorter_t::stops?

Quote
I was aware that shorter lines may add non_identical_schedules. But on the other hand this routine is very time critical. Therefore I omitted this extra check if there is a longer match.
Yep. But I think, I was also wrong - only Knightly was right ;)
22
Incorporated Patches and Solved Bug Reports / Re: [small patch] Convoys load a mix of goods
But I think, the routine has a problem, discussed some time ago: If you have 100 packets, 1-98 are unfeasible, 99-100 are feasible. Then the first feasible packet has a chance of 99/100 and the other only 1/100.

However, I had the idea of sorting the simhalt_t::waren[] with respect to the next transfer stop. This would also speedup some routines (especially the hole_ab). Do you think it's a good idea?

Edit: I've read the thread again - at least you thought it's a good idea :)
23
Incorporated Patches and Solved Bug Reports / Re: [patch] Stop Counting in rebuild_destinations()
1st: Can somebody explain me the definition of
Code: [Select]
		inline bool operator == (const warenzielsorter_t &k) const {
return halt==k.halt  &&  stops<=k.stops  &&  catg_index==k.catg_index;
}
In line 1091 "!warenziele_by_stops.is_contained(wzs)" is true also, if the connection is already there, but the existent is longer. But then, one don't need to increase "non_identical_schedules".

2nd: And imho, it would be better in line 1160-1174 to sort the warenziele_by_stops by the stops variable rather than do this double loop.

3rd: Wouldn't it be better to do the stuff for the lines before the single convoys? Then lines would be preferred since they usually have the higher throughput.

4th: I would also prefer not to double the code in lines 1051-1104 and 1128-1154.
27
Incorporated Patches and Solved Bug Reports / Re: [r2818] Traffic prevents me from setting waypoints
That is fully intended, as other player could build stops or depots there and all strange stuff can happen.
But then, waypoints on public roads should also be forbidden, since one can place stops and depots there...

Or even worse: Build stop on public road, set schedule of vehicle to this stop, remove stop, other player builds depot/stop there...
28
Incorporated Patches and Solved Bug Reports / [bug+fix?] Changing player while dragging
When you change the player (shift+P) while you are dragging with the waybuilder, there remains some leftovers on the map.
Fix:
Code: [Select]
Index: simworld.cc
===================================================================
--- simworld.cc (revision 2821)
+++ simworld.cc (working copy)
@@ -4836,6 +4836,9 @@
  }
  }
  else {
+ // Exit the tool in order to get rid of leftovers.
+ werkzeug[active_player_nr]->exit( this, active_player );
+
  renew_menu = (active_player_nr==1  ||  new_player==1);
  active_player_nr = new_player;
  active_player = spieler[new_player];
However, I'm not sure, if it causes the right behaviour in a network game...
31
Incorporated Patches and Solved Bug Reports / Re: [bug r2762] Can't remove powerline by powerline remove tool
Ok, there was indeed an error in the patch. Now, it should be correct.

Code: [Select]
Index: simwerkz.cc
===================================================================
--- simwerkz.cc (revision 2762)
+++ simwerkz.cc (working copy)
@@ -1783,26 +1783,40 @@
                // found a route => check if I can delete anything on it
                for(  uint32 i=0;  can_delete  &&  i<verbindung.get_count();  i++  ) {
                        grund_t *gr=welt->lookup(verbindung.position_bei(i));
-                       if(  gr==NULL  ||  gr->get_weg(wt)==NULL  ||  (gr->is_halt()  &&  !spieler_t::check_owner( gr->get_halt()->get_besitzer(), sp ) )  ) {
+                       if(  gr==NULL  ) {
                                can_delete = false;
                                break;
                        }
-                       if(  gr->kann_alle_obj_entfernen(sp)!=NULL  ) {
-                               // we have to do a fine check
-                               for( uint i=0;  i<gr->get_top();  i++  ) {
-                                       ding_t *d = gr->obj_bei(i);
-                                       uint8 type = d->get_typ();
-                                       if(type>=ding_t::automobil  &&  type!=ding_t::aircraft) {
-                                               can_delete = false;
-                                               break;
+                       if(  wt!=powerline_wt  ) {
+                               if(  gr->get_weg(wt)==NULL  ||  (gr->is_halt()  &&  !spieler_t::check_owner( gr->get_halt()->get_besitzer(), sp ) )  ) {
+                                       can_delete = false;
+                                       break;
+                               }
+                               if(  gr->kann_alle_obj_entfernen(sp)!=NULL  ) {
+                                       // we have to do a fine check
+                                       for( uint i=0;  i<gr->get_top();  i++  ) {
+                                               ding_t *d = gr->obj_bei(i);
+                                               uint8 type = d->get_typ();
+                                               if(type>=ding_t::automobil  &&  type!=ding_t::aircraft) {
+                                                       can_delete = false;
+                                                       break;
+                                               }
+                                               // something else that is not mine ...
+                                               if(  d->ist_entfernbar(sp)!=NULL  &&  gr->get_leitung()==d  ) {
+                                                       can_delete = false;
+                                                       break;
+                                               }
                                        }
-                                       // something else that is not mine ...
-                                       if(  d->ist_entfernbar(sp)!=NULL  &&  gr->get_leitung()==d  ) {
-                                               can_delete = false;
-                                               break;
-                                       }
                                }
                        }
+                       else
+                       {
+                               leitung_t *lt = gr->get_leitung();
+                               can_delete = lt  &&  lt->ist_entfernbar(sp)==NULL;
+                               if( !can_delete ) {
+                                       break;
+                               }
+                       }
                }
        }
        DBG_MESSAGE("wkz_wayremover()", "route search returned %d", can_delete);
32
Incorporated Patches and Solved Bug Reports / Re: [bug r2762] Can't remove powerline by powerline remove tool
Fix:
Code: [Select]
Index: simwerkz.cc
===================================================================
--- simwerkz.cc (revision 2762)
+++ simwerkz.cc (working copy)
@@ -1783,26 +1783,38 @@
                // found a route => check if I can delete anything on it
                for(  uint32 i=0;  can_delete  &&  i<verbindung.get_count();  i++  ) {
                        grund_t *gr=welt->lookup(verbindung.position_bei(i));
-                       if(  gr==NULL  ||  gr->get_weg(wt)==NULL  ||  (gr->is_halt()  &&  !spieler_t::check_owner( gr->get_halt()->get_besitzer(), sp ) )  ) {
+                       if(  gr==NULL  ) {
                                can_delete = false;
                                break;
                        }
-                       if(  gr->kann_alle_obj_entfernen(sp)!=NULL  ) {
-                               // we have to do a fine check
-                               for( uint i=0;  i<gr->get_top();  i++  ) {
-                                       ding_t *d = gr->obj_bei(i);
-                                       uint8 type = d->get_typ();
-                                       if(type>=ding_t::automobil  &&  type!=ding_t::aircraft) {
-                                               can_delete = false;
-                                               break;
+                       if(  wt!=powerline_wt  ) {
+                               if(  gr->get_weg(wt)==NULL  ||  (gr->is_halt()  &&  !spieler_t::check_owner( gr->get_halt()->get_besitzer(), sp ) )  ) {
+                                       if(  gr->kann_alle_obj_entfernen(sp)!=NULL  ) {
+                                               // we have to do a fine check
+                                               for( uint i=0;  i<gr->get_top();  i++  ) {
+                                                       ding_t *d = gr->obj_bei(i);
+                                                       uint8 type = d->get_typ();
+                                                       if(type>=ding_t::automobil  &&  type!=ding_t::aircraft) {
+                                                               can_delete = false;
+                                                               break;
+                                                       }
+                                                       // something else that is not mine ...
+                                                       if(  d->ist_entfernbar(sp)!=NULL  &&  gr->get_leitung()==d  ) {
+                                                               can_delete = false;
+                                                               break;
+                                                       }
+                                               }
                                        }
-                                       // something else that is not mine ...
-                                       if(  d->ist_entfernbar(sp)!=NULL  &&  gr->get_leitung()==d  ) {
-                                               can_delete = false;
-                                               break;
-                                       }
                                }
                        }
+                       else
+                       {
+                               leitung_t *lt = gr->get_leitung();
+                               can_delete = lt  &&  lt->ist_entfernbar(sp)==NULL;
+                               if( !can_delete ) {
+                                       break;
+                               }
+                       }
                }
        }
        DBG_MESSAGE("wkz_wayremover()", "route search returned %d", can_delete);
33
Incorporated Patches and Solved Bug Reports / Re: [bug r2748] Quit during dragging underground tunnel tool
Fix (Fixes also two small issues with the preview):
Code: [Select]
Index: simwerkz.cc
===================================================================
--- simwerkz.cc (revision 2748)
+++ simwerkz.cc (working copy)
@@ -1487,7 +1487,7 @@
        calc_route( bauigel, start, end );
 
        uint8 offset = (besch->get_styp()==1  &&  besch->get_wtyp()!=air_wt) ? 1 : 0;
-       if(  bauigel.get_count()>2  ) {
+       if(  bauigel.get_count() > 1  ) {
                // Set tooltip first (no dummygrounds, if bauigel.calc_casts() is called).
                win_set_static_tooltip( tooltip_with_price("Building costs estimates", -bauigel.calc_costs() ) );
 
@@ -1654,7 +1654,7 @@
 
        welt->lookup_kartenboden(end.get_2d())->clear_flag(grund_t::marked);
 
-       if(  bauigel.get_count()>2  ) {
+       if(  bauigel.get_count() > 1  ) {
                // Set tooltip first (no dummygrounds, if bauigel.calc_casts() is called).
                win_set_static_tooltip( tooltip_with_price("Building costs estimates", -bauigel.calc_costs() ) );
 
Index: bauer/wegbauer.cc
===================================================================
--- bauer/wegbauer.cc   (revision 2748)
+++ bauer/wegbauer.cc   (working copy)
@@ -1438,6 +1438,9 @@
        if(ok) {
 DBG_MESSAGE("wegbauer_t::intern_calc_straight_route()","found straight route max_n=%i",get_count()-1);
        }
+       else {
+               route.clear();
+       }
 }