JGR's Patch Pack

Forum for technical discussions regarding development. If you have a general suggestion, problem or comment, please use one of the other forums.

Moderator: OpenTTD Developers

SparkyMarkyR33
Engineer
Engineer
Posts: 10
Joined: 16 Feb 2020 17:18

Re: JGR's Patch Pack

Post by SparkyMarkyR33 »

Hey everyone

I am curious, is it possible to highlight certain signals placed on the network to make them easier to see so I can replace them such as a console command?
I'm trying to enable realistic train braking, but as my network is large it's extremely hard any find 2-way or pre-signals I've placed
User avatar
wallyweb
Tycoon
Tycoon
Posts: 6102
Joined: 27 Nov 2004 15:05
Location: Canada

Re: JGR's Patch Pack

Post by wallyweb »

SparkyMarkyR33 wrote: 15 Feb 2021 02:40 I am curious, is it possible to highlight certain signals placed on the network to make them easier to see so I can replace them such as a console command?
I'm trying to enable realistic train braking, but as my network is large it's extremely hard any find 2-way or pre-signals I've placed
I assume you are using the electric signals.
In the "Settings" window you can set a year before which all signals are semaphore.
These are taller than the electrics.
Simply select a year later than the one your game is at.
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

SparkyMarkyR33 wrote: 15 Feb 2021 02:40 Hey everyone

I am curious, is it possible to highlight certain signals placed on the network to make them easier to see so I can replace them such as a console command?
I'm trying to enable realistic train braking, but as my network is large it's extremely hard any find 2-way or pre-signals I've placed
There's a console command for finding these signals: it's "find_non_realistic_braking_signal".

There's some info about realistic braking on the wiki now: here.
Ex TTDPatch Coder
Patch Pack, Github
Eddi
Tycoon
Tycoon
Posts: 8267
Joined: 17 Jan 2007 00:14

Re: JGR's Patch Pack

Post by Eddi »

just a random comment from an unintroduced outsider....


wouldn't it be easier to just treat all signals as path signals, if realistic braking is on?
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

Eddi wrote: 15 Feb 2021 10:28 just a random comment from an unintroduced outsider....


wouldn't it be easier to just treat all signals as path signals, if realistic braking is on?
That is effectively what is done now.
However, there is no sensible way to handle two-way block signals or pre-signals, as these make no sense in the context of PBS. Generally PBS-style networks should not have any of these anyway.
Ex TTDPatch Coder
Patch Pack, Github
SparkyMarkyR33
Engineer
Engineer
Posts: 10
Joined: 16 Feb 2020 17:18

Re: JGR's Patch Pack

Post by SparkyMarkyR33 »

Sorry, I didn't realise I had to introduce myself? But hey, I'm Mark as you could probably guess from my username.

And I know it would of been easier to use path signals, however I started a project years ago and been using this OpenTTD build for a little while, so some of my old work had some signals that was used before I knew proper signal placement. That obviously meant looking over many signals to find the issues, and there's only so much you can look over until your eyes don't notice the little yellow or white bars on the signal posts (especially the ones facing away from you). Or even a mis-clicked two-way signal. So naturally after many hours looking over my entire network I posted the question.

But cheers JGR, that console command took a few seconds to find 3 signals. :D :bow:
User avatar
luk3Z
Traffic Manager
Traffic Manager
Posts: 197
Joined: 25 Dec 2005 17:42
Location: Kielce, Poland (Mars sometimes)

Re: JGR's Patch Pack

Post by luk3Z »

What is this "9. Industry cargo generation factor (added in v0.39.2)" ?
Find new graphics easier:
GRFCrawler -> http://grfcrawler.tt-forums.net
BaNaNaS -> https://bananas.openttd.org/
32 bit gfx in OTTD (32bpp) -> https://wiki.openttd.org/en/Community/N ... 20graphics
TTDPatch 2.6 -> viewtopic.php?f=19&t=67694
How to subtract tax from income (workaround) -> viewtopic.php?t=89763&start=20
How to ban distance from income -> Simple Cargo Decay Override
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

luk3Z wrote: 15 Feb 2021 21:17 What is this "9. Industry cargo generation factor (added in v0.39.2)" ?
A scaling factor setting for industry cargo generation was added in version 0.39.2. You can use this for primary industry output scaling.
Ex TTDPatch Coder
Patch Pack, Github
User avatar
Snail
Tycoon
Tycoon
Posts: 1283
Joined: 28 Apr 2003 18:52
Contact:

Re: JGR's Patch Pack

Post by Snail »

JGR wrote: 15 Feb 2021 10:23 There's some info about realistic braking on the wiki now: here.
I think "realistic braking" is a very interesting feature, and with some extra work it could be done even better.
For example, it looks like the calculation of the required distance to stop only takes into account the train speed and not its weight, and this is not realistic at all (a long freight train going at 50 km/h will require a longer distance to stop than a racecar going at 100 km/h).

Also, in my set I've done a lot of work around a train's "breaking force"; I require a certain number of wagons with brakes in the consist, and I differentiate engines based on their braking power. I'd love it if I could blend that concept with this new feature, ideally changing the required distance to stop according to the consist's braking force.

Is there a specific thread for realistic braking as a feature?
The French Narrow Gauge Train Set is now released! Get it here
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

Snail wrote: 16 Feb 2021 00:17
JGR wrote: 15 Feb 2021 10:23 There's some info about realistic braking on the wiki now: here.
I think "realistic braking" is a very interesting feature, and with some extra work it could be done even better.
For example, it looks like the calculation of the required distance to stop only takes into account the train speed and not its weight, and this is not realistic at all (a long freight train going at 50 km/h will require a longer distance to stop than a racecar going at 100 km/h).

Also, in my set I've done a lot of work around a train's "breaking force"; I require a certain number of wagons with brakes in the consist, and I differentiate engines based on their braking power. I'd love it if I could blend that concept with this new feature, ideally changing the required distance to stop according to the consist's braking force.

Is there a specific thread for realistic braking as a feature?
The calculation of the train's deceleration does take into account its weight. However most trains will meet the deceleration cap. Turning up the freight wagon weight multiplier or moving downhill will make the effect of train weight more pronounced.

There is no NewGRF spec support for any sort of braking parameters at present, which limits what can be done on a per model or per vehicle basis. At the moment the braking force is (for realistic acceleration) based on the engine power/TE + the usual drag forces + an extra constant force per unit train length (loosely modeling braked wagons). A braking deceleration for distance calculations which can be achieved over the whole speed range given power/TE limits and variable drag is then calculated. Downhill is slightly more complicated but uses similar principles.
Potentially something could be added to override that or supply custom values but obviously this would not work in trunk and you'd have to conditionally skip those bits in your GRF.

If you open the train's debug window the deceleration values used for prediction of the braking distance are shown as
decel and uncapped decel.

The scaling in OpenTTD limits how realistic the braking profile can be and still make sense in game. Trains decelerating slower than they accelerate seems very odd in game and limits how stingy you can be on braking parameters.

There isn't a separate thread for it, so far at least.
Ex TTDPatch Coder
Patch Pack, Github
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

Snail wrote: 07 Feb 2021 16:48 Hi,

I'm trying to compile it on my MacOS X 10.12 using HomeBrew and CMake 3.19.2, and I get the following error:

Code: Select all

[ 38%] Building CXX object src/settingsgen/CMakeFiles/settingsgen.dir/settingsgen.cpp.o
In file included from /roba/OpenTTD-patches-jgrpp040/src/settingsgen/settingsgen.cpp:14:
/roba/OpenTTD-patches-jgrpp040/src/settingsgen/../ini_type.h:15:10: fatal error: 
      'optional' file not found
#include <optional>
         ^~~~~~~~~~
1 error generated.
make[2]: *** [src/settingsgen/CMakeFiles/settingsgen.dir/settingsgen.cpp.o] Error 1
make[1]: *** [src/settingsgen/CMakeFiles/settingsgen.dir/all] Error 2
make: *** [all] Error 2
Any suggestions on how to fix this?

Thanks in advance!
Would you mind trying with the tmp-jgrpp-apple branch from Github, and seeing whether that works?
(`git fetch && git checkout tmp-jgrpp-apple` or https://github.com/JGRennison/OpenTTD-p ... -apple.zip)

Thanks.
Ex TTDPatch Coder
Patch Pack, Github
ino
Traffic Manager
Traffic Manager
Posts: 152
Joined: 09 Apr 2017 14:58

Re: JGR's Patch Pack

Post by ino »

Can't 2-way block signal be treat as two-way PBS? i.e. it's equivalent to if you placed to standard PBS side-by-side facing the different direction.

I actually use 2-way signal in my single-track railway line where the train operation is interlocked using slots. e.g. allow at most two trains per direction. Say I have single-track A-----S------B where S is the two-way signal. A and B are path signal with routefinding restriction. Two slots: A->B and B->A, each has capacity of 2. Train approaching A will first check if B->A is zero, and if it is, then it will try to acquire A->B slot, etc.
User avatar
Snail
Tycoon
Tycoon
Posts: 1283
Joined: 28 Apr 2003 18:52
Contact:

Re: JGR's Patch Pack

Post by Snail »

JGR wrote: 16 Feb 2021 14:07 Would you mind trying with the tmp-jgrpp-apple branch from Github, and seeing whether that works?
(`git fetch && git checkout tmp-jgrpp-apple` or https://github.com/JGRennison/OpenTTD-p ... -apple.zip)

Thanks.
Wonderful! It compiles fine (though it did generate a few warnings here and there), and the game starts normally.
Thank you sooo much for working on this! :D
The French Narrow Gauge Train Set is now released! Get it here
User avatar
vincentkoevoets
Engineer
Engineer
Posts: 48
Joined: 14 Nov 2014 10:49
Location: Assen, Netherlands

Re: JGR's Patch Pack

Post by vincentkoevoets »

Snail wrote: 16 Feb 2021 16:00
JGR wrote: 16 Feb 2021 14:07 Would you mind trying with the tmp-jgrpp-apple branch from Github, and seeing whether that works?
(`git fetch && git checkout tmp-jgrpp-apple` or https://github.com/JGRennison/OpenTTD-p ... -apple.zip)

Thanks.
Wonderful! It compiles fine (though it did generate a few warnings here and there), and the game starts normally.
Thank you sooo much for working on this! :D
That's great news! I wasn't getting anywhere fast, I tried everything I could think of.
Here's the 0.40.2 build for newer Mac OS versions.
openttd-jgrpp-0.40.2-macos.dmg
openttd-jgrpp-0.40.2-macos.dmg
(7.63 MiB) Downloaded 62 times
Michpi
Engineer
Engineer
Posts: 62
Joined: 03 Feb 2021 18:51

Re: JGR's Patch Pack

Post by Michpi »

Hello!

Is there any way to create order like:"Loading until full or next ship arrival"?
For trains it can be done using slots or counters or platform occupancy. And what about ships/planes?

And why is it impossible to replace vehicles with the same type? Of course using options "Replace only old vehicles".
Autorenew setting doesn't work well for me, because there is very often situation when I want to autorenew only ships. But as soon as any RV or trains getting old I want to replace them with the new types?
User avatar
fridaemon
Director
Director
Posts: 630
Joined: 27 Oct 2019 21:06
Location: Czech Republic

Re: JGR's Patch Pack

Post by fridaemon »

Not sure if it's error only in my game, or in this pack, but I have problem with hiding vehicles in purchase menu. I turned on - vehicles will never stop production, and in late years I need to hide some old vehicles. It works for a while and when I reopen saved game, purchase menu contains these hidden vehicles again.
ImageImageImageImageImage
Beach Objects * Shopping Centres * Skyscrapers * Garage Entrances
Modular Warehouses * Trucks & Buses Parking Lots * Bus Depots * Bus Terminals
Road Waypoints * Road Stops * Eyecandy Objects * Building Set

Winner of the Screenshot of 09/20, 11/20, 02/21, 06/21, 07/21, 05/22 and 06/22.:twisted:
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

fridaemon wrote: 19 Feb 2021 08:54 Not sure if it's error only in my game, or in this pack, but I have problem with hiding vehicles in purchase menu. I turned on - vehicles will never stop production, and in late years I need to hide some old vehicles. It works for a while and when I reopen saved game, purchase menu contains these hidden vehicles again.
If you reload or change the NewGRF configuration these values get reset. If you haven't done either of those and it's still being reset, I can take a look if you have a savegame.
Michpi wrote: 19 Feb 2021 06:02 Hello!

Is there any way to create order like:"Loading until full or next ship arrival"?
For trains it can be done using slots or counters or platform occupancy. And what about ships/planes?

And why is it impossible to replace vehicles with the same type? Of course using options "Replace only old vehicles".
Autorenew setting doesn't work well for me, because there is very often situation when I want to autorenew only ships. But as soon as any RV or trains getting old I want to replace them with the new types?
There isn't any functionality to load until a different vehicle arrives.
Autoreplace is for replacing vehicles of an engine type with that of a different engine type, this is the same as in trunk.
Ex TTDPatch Coder
Patch Pack, Github
User avatar
fridaemon
Director
Director
Posts: 630
Joined: 27 Oct 2019 21:06
Location: Czech Republic

Re: JGR's Patch Pack

Post by fridaemon »

If you reload or change the NewGRF configuration these values get reset.
You were right! Very thank you :))
ImageImageImageImageImage
Beach Objects * Shopping Centres * Skyscrapers * Garage Entrances
Modular Warehouses * Trucks & Buses Parking Lots * Bus Depots * Bus Terminals
Road Waypoints * Road Stops * Eyecandy Objects * Building Set

Winner of the Screenshot of 09/20, 11/20, 02/21, 06/21, 07/21, 05/22 and 06/22.:twisted:
gebik
Traffic Manager
Traffic Manager
Posts: 174
Joined: 07 Sep 2020 15:12
Location: Usually near some interesting rail systems. :P

Re: JGR's Patch Pack

Post by gebik »

Hi,
JGR, I have some crash log of crash in my network game:

Code: Select all

In game date: 2032-06-05 (1, 0) (DL: 1)
Game loaded at: 2032-01-13 (39, 0), Sat Feb 27 12:50:47 2021

Crash reason:
 Exception:  C0000005
 Location:   000000000070698D
 Fault type: 0 (read)
 Fault addr: 0000000000000020
 Message:    <none>

Within context:
     0: CallVehicleTicks: veh: 303: (Vlak 9, (T9), c:0, st:FE, vs:D, vf:FTs, vcf:zd, gvf:s, tf:q, trk: 0x01, [tile: 368A0 (160 x 872), type: 50 (MP_STATION), height: 01, data: 60 0025 F0 05 02 04 00 000A])

OpenTTD version:
 Version:    jgrpp-0.40.2 (0)
 NewGRF ver: 1b006d64
 Bits:       64
 Endian:     little
 Dedicated:  no
 Build date: Feb 17 2021 02:38:42
 Defines:    NDEBUG WITH_BITMATH_BUILTINS WITH_OVERFLOW_BUILTINS WITH_DEMANGLE WITH_BFD0 WITH_DBGHELP TTD_ENDIAN=TTD_LITTLE_ENDIAN WITH_PNG WITH_ZLIB WITH_LIBLZMA WITH_LZO WITH_PERSONAL_DIR WITH_SSE WITH_ASSERT UNICODE _UNICODE WITH_UNISCRIBE _SQ64

Stack trace:
 00021674 00000000 0063921D 00000000 0A2417A0 00000000 0A2417A0 00000000
 00000000 00000000 00000000 02000801 00D103E4 00000000 00021474 00000000
 00021774 00000000 04EACF48 00000000 04EACF44 00000000 00000008 00000000
 0E2E3960 00000000 0A2417A0 000007C0 00000002 000000C8 0000004D 00000001
 000000F0 00000230 00000008 00000000 0E3E3B30 00000000 02000009 00021774
 0D7B0000 00000001 00000001 00000000 00000000 00000000 18B7F458 00000000
 04EAD270 00000000 0E3E3B30 00000000 04EAD2C0 00000000 04EAD290 00000000
 027E34B8 00000000 00706CCB 00000000 0D7B0000 00000001 0010B3A0 00000000
 00000201 00000001 0A23F760 00000000 04EAD060 00000000 00724700 00000000
 00000748 00002177 00622D77 00000000 04EACFB7 000478D9 0A2417A0 00000000
 0A23F760 00000000 00000001 00000000 04EAD0D0 00000000 04EAD008 00000000
 04EAD0D8 00000000 00000000 00000000 00000000 00000000 18B7F458 00000000
 04EAD270 00000000 0E3E3B30 00000000 04EAD2C0 00000000 04EAD290 00000000
 027E34B8 00000000 00707718 00000000 00000000 00000000 000000C0 00000000
 0A2417A0 00000000 0000001A 00000000 04EAD140 00000000 00EEBFA8 00000000
 0A23F760 00000000 00EEBFC4 00000000 04EAD290 00000000 007072F6 00000000
 00000000 00000000 00000000 00000000 00000002 00000000 005FC2A5 00000000
 006FCD60 00000000 00000000 00000000 603A43C7 00000000 00000000 00000000
 0E3E3B30 00000000 18B7F458 00000000 04EAD270 00000000 0E3E3B30 00000000
 04EAD2C0 00000000 04EAD290 00000000 027E34B8 00000000 007089D8 00000000
 04EAD290 00000000 0072129F 00000000 0A23F760 00000000 18B7F450 00000000
 04EAD270 00000000 00000000 00000000 0E3E3B30 00000000 04EAD2F0 00000000
 04EAD2C0 00000000 0072B5DB 00000000 000516EF 00000000 00000004 00000000
 0003F314 00000000 00757372 00000000 0A600710 00000000 0073F592 00000000

Registers:
 RAX: 0000000000000000 RBX: 0000000025784150 RCX: 000000000DD58DA0 RDX: 0000000000000001
 RSI: 000000000E3E3B30 RDI: 0000000000D103E4 RBP: 0000000000000687 RSP: 0000000004EACED0
 R8:  000000000B227C40 R9:  0000000000000001 R10: 000000000E2E3960 R11: 0000000000000000
 R12: 00000000257841D0 R13: 0000000025784160 R14: 0000000004EACF50 R15: 000000000A28BC30
 RIP: 000000000070698D EFLAGS: 00010246

 Bytes at instruction pointer:
 0F B7 40 20 66 83 F8 FF 0F 84 00 FF FF FF EB 50 0F 1F 00 0F BF 43 08 2B

Operating system:
 Name:     Windows
 Release:  10.0.19042 ()
 Compiler: GCC 9.3.0 "9.3-win32 20200320"

Configuration:
 Blitter:      32bpp-sse2-anim
 Graphics set: OpenGFX (7393)
 Language:     e:\game\ot\lang\czech.lng
 Music driver: dmusic
 Music set:    OpenMSX (96)
 Network:      server
 Sound driver: win32
 Sound set:    OpenSFX (87)
 Video driver: win32
 Pathfinder:   YAPF YAPF YAPF

Fonts:
 Small:  sprite
 Medium: sprite
 Large:  sprite
 Mono:   sprite

Map size: 0x80000 (256 x 2048)

AI Configuration (local: 0) (current: 16):
  0: Human
  1: Human
  2: Human
 GS: Bee Reward (v600006)

Libraries:
 LZMA:       5.2.1
 LZO:        2.09
 PNG:        1.5.23
 Zlib:       1.2.8

Module information:
 E:\game\ot\openttd.exe handle: 0000000000400000 size: 54483287 crc: F9F3AFD0 date: 2021-02-25 19:20:32
 C:\WINDOWS\SYSTEM32\ntdll.dll handle: 00007ffbe5910000 size: 2025272 crc: AEF42D51 date: 2021-02-10 07:23:51
 C:\WINDOWS\System32\KERNEL32.DLL handle: 00007ffbe4620000 size: 764976 crc: 721FEC31 date: 2021-02-10 07:23:34
 C:\WINDOWS\System32\KERNELBASE.dll handle: 00007ffbe3420000 size: 2922392 crc: E81AFBF5 date: 2021-02-10 07:23:52
 C:\WINDOWS\System32\ADVAPI32.dll handle: 00007ffbe4790000 size: 689024 crc: 355A9B19 date: 2020-11-11 17:37:04
 C:\WINDOWS\System32\msvcrt.dll handle: 00007ffbe4840000 size: 637360 crc: 072737D9 date: 2020-10-14 07:25:30
 C:\WINDOWS\System32\sechost.dll handle: 00007ffbe4cb0000 size: 628616 crc: 4ED65EE2 date: 2021-02-10 07:23:52
 C:\WINDOWS\System32\RPCRT4.dll handle: 00007ffbe48e0000 size: 1222056 crc: 44DB9CA6 date: 2021-01-14 17:50:29
 C:\WINDOWS\System32\GDI32.dll handle: 00007ffbe3df0000 size: 161680 crc: 2A141BAA date: 2021-01-14 17:50:02
 C:\WINDOWS\System32\win32u.dll handle: 00007ffbe3740000 size: 132736 crc: DCD71B52 date: 2021-02-10 07:23:43
 C:\WINDOWS\System32\gdi32full.dll handle: 00007ffbe3050000 size: 1075864 crc: 129DC3C4 date: 2021-01-14 17:50:31
 C:\WINDOWS\System32\msvcp_win.dll handle: 00007ffbe3770000 size: 634760 crc: E6732639 date: 2021-02-10 07:23:47
 C:\WINDOWS\System32\ucrtbase.dll handle: 00007ffbe32c0000 size: 1044888 crc: D3CA62A3 date: 2021-02-10 07:23:47
 C:\WINDOWS\System32\USER32.dll handle: 00007ffbe4af0000 size: 1702416 crc: CCD30A7B date: 2021-01-14 17:50:12
 C:\WINDOWS\System32\IMM32.dll handle: 00007ffbe3b10000 size: 185448 crc: 36F61BF6 date: 2020-10-14 07:25:33
 C:\WINDOWS\System32\ole32.dll handle: 00007ffbe3cc0000 size: 1212232 crc: 0FD6B05F date: 2021-01-14 17:50:26
 C:\WINDOWS\System32\combase.dll handle: 00007ffbe4d50000 size: 3509064 crc: 3C1AB9E8 date: 2021-01-14 17:50:28
 C:\WINDOWS\System32\SHELL32.dll handle: 00007ffbe3e20000 size: 7640064 crc: 379F5950 date: 2021-02-10 07:23:56
 C:\WINDOWS\System32\WS2_32.dll handle: 00007ffbe3aa0000 size: 427200 crc: 6E37A637 date: 2020-10-14 07:25:32
 C:\WINDOWS\SYSTEM32\USP10.dll handle: 00007ffbce060000 size: 79360 crc: 9A7F7CC2 date: 2020-10-14 07:25:33
 C:\WINDOWS\SYSTEM32\WINMM.dll handle: 00007ffbdde10000 size: 147200 crc: 18D40339 date: 2020-10-14 07:24:29
 C:\WINDOWS\SYSTEM32\CRYPTSP.dll handle: 00007ffbe2a00000 size: 83744 crc: DDF7045E date: 2020-10-14 07:25:27
 C:\WINDOWS\system32\rsaenh.dll handle: 00007ffbe2100000 size: 207608 crc: 4A244345 date: 2020-10-14 07:25:27
 C:\WINDOWS\System32\bcrypt.dll handle: 00007ffbe3940000 size: 146240 crc: 50F3C5E2 date: 2020-12-09 12:54:39
 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll handle: 00007ffbe2a20000 size: 34152 crc: CC386121 date: 2020-10-14 07:25:32
 C:\WINDOWS\System32\bcryptPrimitives.dll handle: 00007ffbe38c0000 size: 523200 crc: 1A4DFB8D date: 2020-12-09 12:54:42
 C:\WINDOWS\SYSTEM32\windows.storage.dll handle: 00007ffbe11a0000 size: 7966512 crc: 2B10B194 date: 2021-02-10 07:23:42
 C:\WINDOWS\SYSTEM32\Wldp.dll handle: 00007ffbe2ab0000 size: 173016 crc: C5218D0B date: 2020-12-09 12:54:39
 C:\WINDOWS\System32\SHCORE.dll handle: 00007ffbe46e0000 size: 704008 crc: 0812F61E date: 2021-01-14 17:50:13
 C:\WINDOWS\System32\shlwapi.dll handle: 00007ffbe4a90000 size: 342440 crc: 5693748E date: 2021-01-14 17:50:40
 C:\WINDOWS\system32\uxtheme.dll handle: 00007ffbe0ae0000 size: 627712 crc: A05B5F55 date: 2021-01-14 17:50:36
 C:\WINDOWS\System32\MSCTF.dll handle: 00007ffbe3b40000 size: 1129040 crc: 99231A43 date: 2021-02-10 07:23:53
 C:\WINDOWS\System32\OLEAUT32.dll handle: 00007ffbe3970000 size: 831024 crc: 8304FB12 date: 2021-02-10 07:23:48
 C:\WINDOWS\SYSTEM32\kernel.appcore.dll handle: 00007ffbe0ec0000 size: 60464 crc: 7039ACC9 date: 2020-10-14 07:25:14
 C:\WINDOWS\SYSTEM32\textinputframework.dll handle: 00007ffbd0770000 size: 1021128 crc: B85C6542 date: 2021-02-10 07:23:41
 C:\WINDOWS\SYSTEM32\CoreUIComponents.dll handle: 00007ffbe0400000 size: 3537520 crc: 78335519 date: 2020-10-14 07:25:07
 C:\WINDOWS\SYSTEM32\CoreMessaging.dll handle: 00007ffbe07b0000 size: 986464 crc: EDF107E3 date: 2021-01-14 17:50:27
 C:\WINDOWS\SYSTEM32\ntmarta.dll handle: 00007ffbe1d70000 size: 191656 crc: B2A51DA2 date: 2020-10-14 07:25:27
 C:\WINDOWS\SYSTEM32\wintypes.dll handle: 00007ffbdfcf0000 size: 1393992 crc: F742C2B6 date: 2021-01-14 17:50:28
 C:\WINDOWS\system32\mswsock.dll handle: 00007ffbe2830000 size: 418416 crc: 7609CC3B date: 2020-10-14 07:25:25
 C:\WINDOWS\SYSTEM32\winmmbase.dll handle: 00007ffbc87e0000 size: 144592 crc: B331D5DD date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\MMDevAPI.DLL handle: 00007ffbddc80000 size: 529424 crc: DFC9B2A0 date: 2021-02-10 07:23:33
 C:\WINDOWS\SYSTEM32\DEVOBJ.dll handle: 00007ffbe2c50000 size: 165832 crc: 9AB2CB9F date: 2020-10-14 07:25:30
 C:\WINDOWS\System32\cfgmgr32.dll handle: 00007ffbe36f0000 size: 305272 crc: DE2280BE date: 2020-10-14 07:25:30
 C:\WINDOWS\SYSTEM32\wdmaud.drv handle: 00007ffbc2900000 size: 259584 crc: DB966BEF date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\ksuser.dll handle: 00007ffbd0a00000 size: 23264 crc: A73C3DE9 date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\AVRT.dll handle: 00007ffbdeef0000 size: 30480 crc: D6790ED2 date: 2020-10-14 07:24:28
 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL handle: 00007ffbdde80000 size: 1578512 crc: 035CD2FE date: 2021-02-10 07:23:33
 C:\WINDOWS\SYSTEM32\powrprof.dll handle: 00007ffbe27e0000 size: 295464 crc: 74230007 date: 2020-10-14 07:25:27
 C:\WINDOWS\SYSTEM32\UMPDC.dll handle: 00007ffbe2730000 size: 64552 crc: B19D9CE1 date: 2020-10-14 07:24:29
 C:\WINDOWS\SYSTEM32\msacm32.drv handle: 00007ffbd0700000 size: 30208 crc: 414EBD44 date: 2020-09-11 16:56:29
 C:\WINDOWS\SYSTEM32\MSACM32.dll handle: 00007ffbc32b0000 size: 112080 crc: 7C3515A4 date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\midimap.dll handle: 00007ffbd06f0000 size: 26624 crc: C81948B1 date: 2020-09-11 16:56:29
 C:\WINDOWS\System32\clbcatq.dll handle: 00007ffbe4570000 size: 672976 crc: AD4CB4A3 date: 2020-10-14 07:25:24
 C:\WINDOWS\System32\dmusic.dll handle: 00007ffbcec70000 size: 136192 crc: BDA2573A date: 2019-12-07 09:09:37
 C:\WINDOWS\System32\DSOUND.dll handle: 00007ffbc2b60000 size: 615424 crc: 1C78A884 date: 2019-12-07 09:08:07
 C:\WINDOWS\System32\dmsynth.dll handle: 00007ffbcec40000 size: 126464 crc: 2A50C1AD date: 2019-12-07 09:09:37
 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll handle: 00007ffbe0ba0000 size: 71784 crc: 38C47F6A date: 2020-10-14 07:24:41
 C:\Windows\System32\Windows.UI.dll handle: 00007ffbd1370000 size: 1317544 crc: C59FEC4F date: 2021-01-14 17:50:20
 C:\Windows\System32\WindowManagementAPI.dll handle: 00007ffbdbf30000 size: 643072 crc: 4D2F7971 date: 2021-01-14 17:50:10
 C:\Windows\System32\InputHost.dll handle: 00007ffbd04e0000 size: 1379072 crc: 6468F174 date: 2021-01-14 17:50:04
 C:\WINDOWS\SYSTEM32\twinapi.appcore.dll handle: 00007ffbdebf0000 size: 2100112 crc: 607D6B93 date: 2021-01-14 17:49:58
 C:\Windows\System32\PROPSYS.dll handle: 00007ffbde020000 size: 1009200 crc: 9B615A75 date: 2021-01-14 17:50:10
 C:\WINDOWS\SYSTEM32\TextShaping.dll handle: 00007ffbc8710000 size: 707544 crc: 5954E52F date: 2020-10-14 07:25:08
 C:\WINDOWS\System32\psapi.dll handle: 00007ffbe4c90000 size: 19144 crc: 6E06CEEB date: 2020-10-14 07:25:23

Events: i, i

---- gamelog start ----
Tick 0: new game started
Revision text changed to jgrpp-0.40.0, savegame version 289, not modified, _openttd_newgrf_version = 0x1b006d64
New game mode: 1 landscape: 0
Added NewGRF: GRF ID 504B4B01, checksum A76AB6AA2AA0E24E3DBB8AD0FEADEDD9, filename: cs_town_names-1.0b\cs_townnames.grf (md5sum matches)
Added NewGRF: GRF ID 544D0101, checksum A03B93117C7B363F21C436781E4DF5B4, filename: 2cc_trainsinnml-3.0\2ccts.grf (md5sum matches)
Added NewGRF: GRF ID FBFB0010, checksum 910E27FA08080A404B80EA7E9A888B95, filename: 2cc_trams-0.9c\2cc-trams-v0.9c-2020-10-24.grf (md5sum matches)
Added NewGRF: GRF ID 41570101, checksum 3E378C2EDB8D77F6E2FAFF9B7FAF0F7D, filename: 2cc_cargo_trams-0.8q\2cc-trams-cargo-v0.8q-2020-11-09.grf (md5sum matches)
Added NewGRF: GRF ID 44440A01, checksum FCEEC76CF44EC23E7FE9C88048CF11CC, filename: av8_aviators_aircraft_set-2.21\pb_av8w.grf (md5sum matches)
Added NewGRF: GRF ID 4D530101, checksum F7152EEB4C4B1558FF599F7B66A105B4, filename: cssalinaset-1.1\cssalinaset.grf (md5sum matches)
Added NewGRF: GRF ID 414E0101, checksum 5D665C64693A438E3046C22666F46E08, filename: fish_ship_set-0.9.2\fish.grf (md5sum matches)
Added NewGRF: GRF ID 414E0201, checksum 0DA3A80B986BC3C17C20CA4CE9CA26AA, filename: fish_2-2.0.3\fish.grf (md5sum matches)
Added NewGRF: GRF ID 4C530100, checksum 0C16CC7D902FF52E686E42DADF2F786C, filename: slovak_bus_set_beta-beta_1.0.1\slovak_bus_set_25_12_2020.grf (md5sum matches)
Added NewGRF: GRF ID 44450602, checksum 315AB806C5B8E61EEFDBBC2EEC7E824E, filename: mops_generic_nrt_road_vehicles_-0.6.5\moprv65.grf (md5sum matches)
Added NewGRF: GRF ID 55464990, checksum 1A7F4F2D1971114341772543391017AE, filename: u_rermm_2-1c\urermm2.grf (md5sum matches)
Added NewGRF: GRF ID 58534453, checksum 2E100BCA91DB8371CD9D57DBEC3AB0C8, filename: dutch_stations_set-1.0.0alpha\dutchstatw.grf (md5sum matches)
Added NewGRF: GRF ID 504A0112, checksum 80D0B8699A417CC03CD06BC74E8796D0, filename: dutch_station_addition_part_2-0.4\dstatadd_part2_v0_4.grf (md5sum matches)
Added NewGRF: GRF ID 504A0113, checksum 0B65D0779D65427BC135FC624278FEA3, filename: dutch_station_addition_part_3-001\dstatadd_part3_v001.grf (md5sum matches)
Added NewGRF: GRF ID 504A0110, checksum E8244C5278CB2408A818854DC11F8940, filename: dutch_station_addition_set-0.8\dstatadd_v0_8.grf (md5sum matches)
Added NewGRF: GRF ID 4A430002, checksum 93EAC5F5396584B92D4C5F0AAAF3F6C5, filename: industrial_stations_renewal-1.0.2\indstatr.grf (md5sum matches)
Added NewGRF: GRF ID 4A448807, checksum A153A80310865877F31066848A84468B, filename: extreme_industry_set-0.6.1\xis_0.6.1.grf (md5sum matches)
Added NewGRF: GRF ID 74677462, checksum 1D2A4E03D9F30922788C166254C27619, filename: total_bridge_renewal_set-1.2\total_bridges.grf (md5sum matches)
Added NewGRF: GRF ID 474A0001, checksum C1772ED819AC0A4303B2813A8CFF0C76, filename: total_town_replac._set_early_mod-modified23.14\ttrs3w-early_mod.grf (md5sum matches)
Added NewGRF: GRF ID 55464989, checksum 4168A85A8729287F9AE283285899274D, filename: u_ratt-0.2a\uratt.grf (md5sum matches)
Added NewGRF: GRF ID FBFB0A01, checksum F72870562FBD9CC015A0CCDC60588F86, filename: useless_tracks-0.1.0\uselesstracks.grf (md5sum matches)
Added NewGRF: GRF ID 47385207, checksum 83CC9413E12E1763E1503044E4B24EC9, filename: utility_truck_set_pipe_addon-0.5a\uts_addon.grf (md5sum matches)
Added NewGRF: GRF ID 47385202, checksum 5CC1597E5976771680E7EE6202A646D3, filename: utility_roadtype_set-4.2\urs.grf (md5sum matches)
Added NewGRF: GRF ID 47385206, checksum E67B6EFA2A236196A51E030D5DA7E186, filename: utility_truck_set-0.4a\uts.grf (md5sum matches)
Added NewGRF: GRF ID 46727806, checksum BBE029FCDD7A16F85876D417FF318D23, filename: opengfx_trees-0.8.0\opengfx+trees.grf (md5sum matches)
Added NewGRF: GRF ID 43415000, checksum FBAE0C1ACFDA5AE8B95B4DA230A395FE, filename: opengfx_airports-0.5.0\ogfx-airports.grf (md5sum matches)
Added NewGRF: GRF ID 504B4B12, checksum 9885CBF02A0DC6DC33D3384E57734121, filename: csmetroset_prague_metro-1.0\cs_metroset.grf (md5sum matches)
Added NewGRF: GRF ID 4F472B34, checksum 136D889FDAEAA3491F8320248A04425C, filename: opengfx_landscape-1.1.2\ogfx-landscape.grf (md5sum matches)
Added NewGRF: GRF ID 47524304, checksum AA46CAD81C7E2EC5475DACF30F7D13D9, filename: gpl_roadtype_collection_pt._4-0.2a\grc4.grf (md5sum matches)
Added NewGRF: GRF ID 4D4E5453, checksum C7933F19B4742E0BA1E3DE0F1F3F259C, filename: metro_nrt_tram_set-0.1\mnts.grf (md5sum matches)
Tick 45616: game loaded
Revision text changed to jgrpp-0.40.2, savegame version 289, not modified, _openttd_newgrf_version = 0x1b006d64
---- gamelog end ----

Recent news messages (6 of 6):
(2032-06-04) StringID: 714, Type: 10, Ref1: 2, 344, Ref2: 3, 21
(2032-04-24) StringID: 681, Type: 4, Ref1: 4, 657, Ref2: 0, 4294967295
(2032-04-01) StringID: 723, Type: 12, Ref1: 3, 66, Ref2: 0, 4294967295
(2032-03-23) StringID: 723, Type: 12, Ref1: 3, 37, Ref2: 0, 4294967295
(2032-03-13) StringID: 681, Type: 4, Ref1: 4, 656, Ref2: 0, 4294967295
(2032-02-01) StringID: 719, Type: 11, Ref1: 6, 833, Ref2: 0, 4294967295

Command Log:
 Showing most recent 128 of 289 commands
   0 | 2032-06-04, 22,   0 | 2--m----- |       94 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   1 | 2032-06-04, 16,   0 | 2--m----- |       95 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   2 | 2032-06-04, 11,   0 | 2--m----- |       95 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   3 | 2032-06-04,  5,   0 | 2--m----- |       96 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   4 | 2032-06-04,  0,   0 | 2--m----- |       96 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   5 | 2032-06-03, 69,   0 | 2--m----- |       97 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   6 | 2032-06-03, 63,   0 | 2--m----- |       97 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   7 | 2032-06-03, 58,   0 | 2--m----- |       97 x     839, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   8 | 2032-06-03, 53,   0 | 2--m----- |       97 x     839, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   9 | 2032-06-03, 48,   0 | 2--m----- |       98 x     839, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
  10 | 2032-06-03,  3,   0 | --------- |       54 x    1359, p1: 0x00050248, p2: 0xFFFF0000, cc:   2, lc:   0, cmd: 0x12080106 (CmdBuildRailStation)
  11 | 2032-06-01, 28,   0 | --------- |       54 x    1363, p1: 0x00055336, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  12 | 2032-06-01, 24,   0 | 2--m----- |      112 x     842, p1: 0x0000014E, p2: 0x00000007, p3: 0x0000000015000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  13 | 2032-06-01, 23,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000023, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  14 | 2032-06-01, 22,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  15 | 2032-06-01, 21,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  16 | 2032-06-01, 20,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  17 | 2032-06-01, 19,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  18 | 2032-06-01,  9,   0 | --------- |       55 x    1363, p1: 0x00055337, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  19 | 2032-05-31, 59,   0 | --------- |       54 x    1360, p1: 0x00055036, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  20 | 2032-05-30,  9,   0 | 2--m----- |      124 x     848, p1: 0x0000014E, p2: 0x00000009, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
  21 | 2032-05-29, 22,   0 | 2--m----- |      127 x     852, p1: 0x0000014E, p2: 0x00000008, p3: 0x0000000015000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  22 | 2032-05-27, 18,   0 | 2--m----- |      134 x     862, p1: 0x0000014E, p2: 0x00000008, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
  23 | 2032-05-26, 54,   0 | --------- |       21 x    1290, p1: 0x00050208, p2: 0xFFFF0000, cc:   2, lc:   0, cmd: 0x12080106 (CmdBuildRailStation)
  24 | 2032-05-25, 55,   0 | 2--m----- |      138 x     870, p1: 0x0000014E, p2: 0x00000007, p3: 0x0000000014000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  25 | 2032-05-24, 71,   0 | --------- |       21 x    1291, p1: 0x00050B15, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  26 | 2032-05-24, 50,   0 | --------- |       21 x    1290, p1: 0x00050A15, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  27 | 2032-05-22, 32,   0 | 2--m----- |      155 x     873, p1: 0x0000014E, p2: 0x00000003, p3: 0x0000000015000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  28 | 2032-05-17, 17,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  29 | 2032-05-17, 16,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  30 | 2032-05-02, 14,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  31 | 2032-05-02, 13,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  32 | 2032-05-02, 12,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000008, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  33 | 2032-05-02, 11,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  34 | 2032-05-02, 10,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  35 | 2032-04-27,  9,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000029, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  36 | 2032-04-27,  8,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000026, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  37 | 2032-04-27,  7,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000028, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  38 | 2032-04-27,  6,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  39 | 2032-04-27,  5,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000027, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  40 | 2032-04-22,  4,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000020, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  41 | 2032-04-22,  3,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000022, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  42 | 2032-04-22,  2,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  43 | 2032-04-22,  1,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000021, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  44 | 2032-04-22,  0,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  45 | 2032-04-16, 73,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  46 | 2032-04-16, 72,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000023, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  47 | 2032-04-16, 71,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  48 | 2032-04-16, 70,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  49 | 2032-04-16, 69,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  50 | 2032-04-16, 68,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000018, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  51 | 2032-04-16, 67,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000015, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  52 | 2032-04-16, 66,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000016, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  53 | 2032-04-11, 65,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000013, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  54 | 2032-04-11, 64,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000012, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  55 | 2032-04-11, 63,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  56 | 2032-04-11, 62,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000010, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  57 | 2032-04-06, 61,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  58 | 2032-04-06, 60,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000009, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  59 | 2032-04-06, 59,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  60 | 2032-04-06, 58,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  61 | 2032-04-06, 57,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  62 | 2032-04-01, 56,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  63 | 2032-04-01, 55,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  64 | 2032-04-01, 54,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000024, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  65 | 2032-04-01, 53,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  66 | 2032-04-01, 52,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  67 | 2032-04-01, 51,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  68 | 2032-04-01, 50,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000007, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  69 | 2032-04-01, 49,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000006, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  70 | 2032-04-01, 48,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000005, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  71 | 2032-04-01, 47,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000004, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  72 | 2032-03-27, 46,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000003, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  73 | 2032-03-27, 45,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000002, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  74 | 2032-03-27, 44,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000001, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  75 | 2032-03-27, 43,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000000, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  76 | 2032-03-22, 39,   0 | 2--m----- |      213 x     939, p1: 0x0000014E, p2: 0x00000007, p3: 0x0000000017000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  77 | 2032-03-20, 26,   0 | 2--m----- |      214 x     954, p1: 0x0000014E, p2: 0x00000001, p3: 0x0000000017000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  78 | 2032-03-17, 42,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000024, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  79 | 2032-03-17, 41,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000017, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  80 | 2032-03-07, 39,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000025, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  81 | 2032-03-02, 38,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  82 | 2032-03-02, 37,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  83 | 2032-03-02, 36,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  84 | 2032-03-02, 35,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000019, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  85 | 2032-02-16, 33,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000023, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  86 | 2032-02-16, 32,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  87 | 2032-02-16, 31,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  88 | 2032-02-16, 30,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  89 | 2032-02-16, 29,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  90 | 2032-02-04, 55,   0 | --------- |       54 x     611, p1: 0x00000126, p2: 0x00000001, cc:   1, lc:   0, cmd: 0x12D9012B (CmdSkipToOrder)
  91 | 2032-02-01, 27,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  92 | 2032-02-01, 26,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  93 | 2032-02-01,  6,   0 | ---ms---f |      168 x     943, p1: 0x00000068, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
  94 | 2032-02-01,  6,   0 | ---ms---f |      166 x     943, p1: 0x00000062, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
  95 | 2032-02-01,  6,   0 | 2--m----- |      167 x     943, p1: 0x00000101, p2: 0x007700C7, cc:   0, lc:   0, cmd: 0x120A0015 (CmdBuildRoadStop)
  96 | 2032-01-28, 40,   0 | 2--m----- |      166 x     943, p1: 0x0003AEA6, p2: 0x00000037, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
  97 | 2032-01-28,  8,   0 | 2--m----- |      168 x     943, p1: 0x0003AFA6, p2: 0x00000032, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
  98 | 2032-01-27, 54,   0 | 2--m----- |      168 x     942, p1: 0x0003AFA8, p2: 0x00000035, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
  99 | 2032-01-25, 73,   0 | ---ms---f |      168 x     940, p1: 0x00000061, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
 100 | 2032-01-25, 73,   0 | 2--m----- |      168 x     939, p1: 0x00000019, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x1236001A (CmdBuildRoadDepot)
 101 | 2032-01-24, 68,   0 | 2--m----- |      168 x     939, p1: 0x0003ABA8, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x11B90052 (CmdClearArea)
 102 | 2032-01-23, 63,   0 | ---ms---f |      168 x     939, p1: 0x0003ABA8, p2: 0x00000037, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
 103 | 2032-01-23,  4,   0 | 2--m----- |      168 x     942, p1: 0x0003ABA8, p2: 0x00000036, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
 104 | 2032-01-22, 32,   0 | 2--m----- |      166 x     942, p1: 0x0003AEA8, p2: 0x00000033, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
 105 | 2032-01-18, 30,   0 | ---m----- |      166 x     940, p1: 0x00000062, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000119 (CmdBuildRoad)
 106 | 2032-01-18, 29,   0 | ---ms---- |      166 x     940, p1: 0x00000062, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
 107 | 2032-01-18, 29,   0 | 2--m----- |      167 x     940, p1: 0x00000101, p2: 0x007700C5, cc:   0, lc:   0, cmd: 0x120A0015 (CmdBuildRoadStop)
 108 | 2032-01-17, 24,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 109 | 2032-01-17, 23,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 110 | 2032-01-17, 22,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000029, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 111 | 2032-01-17, 21,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000026, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 112 | 2032-01-17, 20,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000020, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 113 | 2032-01-17, 19,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000018, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 114 | 2032-01-17, 18,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000015, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 115 | 2032-01-17, 17,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000025, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 116 | 2032-01-17, 16,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 117 | 2032-01-17, 15,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000013, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 118 | 2032-01-17, 14,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000009, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 119 | 2032-01-17, 13,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 120 | 2032-01-17, 12,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000028, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 121 | 2032-01-17, 11,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000022, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 122 | 2032-01-17, 10,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 123 | 2032-01-17,  9,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000017, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 124 | 2032-01-17,  8,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000012, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 125 | 2032-01-17,  7,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 126 | 2032-01-17,  6,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 127 | 2032-01-17,  5,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000011, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)

*** End of OpenTTD Crash Report ***

Decoded stack trace:
[00] openttd              0x000000000070698D Vehicle::GetOrder(int) const (/home/jgr/openttd/jgrpp/src/pathfinder/yapf/../../vehicle_base.h:990)
[01] openttd              0x0000000000706CCB Train::GetCurrentMaxSpeedInfo() const (/home/jgr/openttd/jgrpp/src/pathfinder/yapf/../../train.h:184)
[02] openttd              0x0000000000724700 Vehicle::ShowVisualEffect() const + 96 (/home/jgr/openttd/jgrpp/src/vehicle.cpp:3663)
[03] openttd              0x0000000000707718 TrainLocoHandler (/home/jgr/openttd/jgrpp/src/train_cmd.cpp:5952)
[04] openttd              0x00000000007089D8 Train::Tick() + 152 (/home/jgr/openttd/jgrpp/src/train_cmd.cpp:6081)
[05] openttd              0x000000000072B5DB CallVehicleTicks() + 1723 (/home/jgr/openttd/jgrpp/src/vehicle.cpp:1427)
[06] openttd              0x0000000000616994 StateGameLoop() + 308 (/home/jgr/openttd/jgrpp/src/openttd.cpp:1854)
[07] openttd              0x00000000004BB346 NetworkGameLoop() + 374 (/home/jgr/openttd/jgrpp/src/network/network.cpp:1018)
[08] openttd              0x0000000000616FF5 GameLoop() + 709 (/home/jgr/openttd/jgrpp/src/openttd.cpp:1956)
[09] openttd              0x00000000005281AD VideoDriver_Win32::MainLoop() + 509 (/home/jgr/openttd/jgrpp/src/video/win32_v.cpp:1238)
[10] openttd              0x000000000060FA4E openttd_main(int, char**) + 6526 (/home/jgr/openttd/jgrpp/src/openttd.cpp:1004)
[11] openttd              0x00000000004DA69D WinMain + 285 (/home/jgr/openttd/jgrpp/src/os/windows/win32.cpp:468)
[12] openttd              0x00000000004013B4 __tmainCRTStartup + 564 (./build/x86_64-w64-mingw32-x86_64-w64-mingw32-crt/./mingw-w64-crt/crt/crtexe.c:339)
[13] openttd              0x00000000004014DB WinMainCRTStartup + 27 (./build/x86_64-w64-mingw32-x86_64-w64-mingw32-crt/./mingw-w64-crt/crt/crtexe.c:195)
[14] KERNEL32             0x00007FFBE4637034 BaseThreadInitThunk + 20
[15] ntdll                0x00007FFBE595D241 RtlUserThreadStart + 33

*** End of additional info ***
It happened, when I deleted shared orders of 6 trains. After I deleted them, some train of them complained, that it failed to stop at station, due to too big speed. I think, it crashed because of the message, since it crashed at the time the message should close, and that message is probably part of advanced braking, which was turned on at the time of crash (and which is still buggy). Do you want a saved game, or something more? There was also used a gamescript called Bee Reward and bunch of NewGRFs.

EDIT: That message showed again, when saving last autosave. This time without crash, but I did not delete orders at the same time.
Are you an eye candy player? Check out Invisible engine set! viewtopic.php?f=67&t=88934
You can write to me in English, or Czech. Můžete mi psát česky nebo anglicky.

Formerly known as MLG.
User avatar
JGR
Tycoon
Tycoon
Posts: 2558
Joined: 08 Aug 2005 13:46
Location: Ipswich

Re: JGR's Patch Pack

Post by JGR »

MLG wrote: 27 Feb 2021 13:19 Hi,
JGR, I have some crash log of crash in my network game:

Code: Select all

In game date: 2032-06-05 (1, 0) (DL: 1)
Game loaded at: 2032-01-13 (39, 0), Sat Feb 27 12:50:47 2021

Crash reason:
 Exception:  C0000005
 Location:   000000000070698D
 Fault type: 0 (read)
 Fault addr: 0000000000000020
 Message:    <none>

Within context:
     0: CallVehicleTicks: veh: 303: (Vlak 9, (T9), c:0, st:FE, vs:D, vf:FTs, vcf:zd, gvf:s, tf:q, trk: 0x01, [tile: 368A0 (160 x 872), type: 50 (MP_STATION), height: 01, data: 60 0025 F0 05 02 04 00 000A])

OpenTTD version:
 Version:    jgrpp-0.40.2 (0)
 NewGRF ver: 1b006d64
 Bits:       64
 Endian:     little
 Dedicated:  no
 Build date: Feb 17 2021 02:38:42
 Defines:    NDEBUG WITH_BITMATH_BUILTINS WITH_OVERFLOW_BUILTINS WITH_DEMANGLE WITH_BFD0 WITH_DBGHELP TTD_ENDIAN=TTD_LITTLE_ENDIAN WITH_PNG WITH_ZLIB WITH_LIBLZMA WITH_LZO WITH_PERSONAL_DIR WITH_SSE WITH_ASSERT UNICODE _UNICODE WITH_UNISCRIBE _SQ64

Stack trace:
 00021674 00000000 0063921D 00000000 0A2417A0 00000000 0A2417A0 00000000
 00000000 00000000 00000000 02000801 00D103E4 00000000 00021474 00000000
 00021774 00000000 04EACF48 00000000 04EACF44 00000000 00000008 00000000
 0E2E3960 00000000 0A2417A0 000007C0 00000002 000000C8 0000004D 00000001
 000000F0 00000230 00000008 00000000 0E3E3B30 00000000 02000009 00021774
 0D7B0000 00000001 00000001 00000000 00000000 00000000 18B7F458 00000000
 04EAD270 00000000 0E3E3B30 00000000 04EAD2C0 00000000 04EAD290 00000000
 027E34B8 00000000 00706CCB 00000000 0D7B0000 00000001 0010B3A0 00000000
 00000201 00000001 0A23F760 00000000 04EAD060 00000000 00724700 00000000
 00000748 00002177 00622D77 00000000 04EACFB7 000478D9 0A2417A0 00000000
 0A23F760 00000000 00000001 00000000 04EAD0D0 00000000 04EAD008 00000000
 04EAD0D8 00000000 00000000 00000000 00000000 00000000 18B7F458 00000000
 04EAD270 00000000 0E3E3B30 00000000 04EAD2C0 00000000 04EAD290 00000000
 027E34B8 00000000 00707718 00000000 00000000 00000000 000000C0 00000000
 0A2417A0 00000000 0000001A 00000000 04EAD140 00000000 00EEBFA8 00000000
 0A23F760 00000000 00EEBFC4 00000000 04EAD290 00000000 007072F6 00000000
 00000000 00000000 00000000 00000000 00000002 00000000 005FC2A5 00000000
 006FCD60 00000000 00000000 00000000 603A43C7 00000000 00000000 00000000
 0E3E3B30 00000000 18B7F458 00000000 04EAD270 00000000 0E3E3B30 00000000
 04EAD2C0 00000000 04EAD290 00000000 027E34B8 00000000 007089D8 00000000
 04EAD290 00000000 0072129F 00000000 0A23F760 00000000 18B7F450 00000000
 04EAD270 00000000 00000000 00000000 0E3E3B30 00000000 04EAD2F0 00000000
 04EAD2C0 00000000 0072B5DB 00000000 000516EF 00000000 00000004 00000000
 0003F314 00000000 00757372 00000000 0A600710 00000000 0073F592 00000000

Registers:
 RAX: 0000000000000000 RBX: 0000000025784150 RCX: 000000000DD58DA0 RDX: 0000000000000001
 RSI: 000000000E3E3B30 RDI: 0000000000D103E4 RBP: 0000000000000687 RSP: 0000000004EACED0
 R8:  000000000B227C40 R9:  0000000000000001 R10: 000000000E2E3960 R11: 0000000000000000
 R12: 00000000257841D0 R13: 0000000025784160 R14: 0000000004EACF50 R15: 000000000A28BC30
 RIP: 000000000070698D EFLAGS: 00010246

 Bytes at instruction pointer:
 0F B7 40 20 66 83 F8 FF 0F 84 00 FF FF FF EB 50 0F 1F 00 0F BF 43 08 2B

Operating system:
 Name:     Windows
 Release:  10.0.19042 ()
 Compiler: GCC 9.3.0 "9.3-win32 20200320"

Configuration:
 Blitter:      32bpp-sse2-anim
 Graphics set: OpenGFX (7393)
 Language:     e:\game\ot\lang\czech.lng
 Music driver: dmusic
 Music set:    OpenMSX (96)
 Network:      server
 Sound driver: win32
 Sound set:    OpenSFX (87)
 Video driver: win32
 Pathfinder:   YAPF YAPF YAPF

Fonts:
 Small:  sprite
 Medium: sprite
 Large:  sprite
 Mono:   sprite

Map size: 0x80000 (256 x 2048)

AI Configuration (local: 0) (current: 16):
  0: Human
  1: Human
  2: Human
 GS: Bee Reward (v600006)

Libraries:
 LZMA:       5.2.1
 LZO:        2.09
 PNG:        1.5.23
 Zlib:       1.2.8

Module information:
 E:\game\ot\openttd.exe handle: 0000000000400000 size: 54483287 crc: F9F3AFD0 date: 2021-02-25 19:20:32
 C:\WINDOWS\SYSTEM32\ntdll.dll handle: 00007ffbe5910000 size: 2025272 crc: AEF42D51 date: 2021-02-10 07:23:51
 C:\WINDOWS\System32\KERNEL32.DLL handle: 00007ffbe4620000 size: 764976 crc: 721FEC31 date: 2021-02-10 07:23:34
 C:\WINDOWS\System32\KERNELBASE.dll handle: 00007ffbe3420000 size: 2922392 crc: E81AFBF5 date: 2021-02-10 07:23:52
 C:\WINDOWS\System32\ADVAPI32.dll handle: 00007ffbe4790000 size: 689024 crc: 355A9B19 date: 2020-11-11 17:37:04
 C:\WINDOWS\System32\msvcrt.dll handle: 00007ffbe4840000 size: 637360 crc: 072737D9 date: 2020-10-14 07:25:30
 C:\WINDOWS\System32\sechost.dll handle: 00007ffbe4cb0000 size: 628616 crc: 4ED65EE2 date: 2021-02-10 07:23:52
 C:\WINDOWS\System32\RPCRT4.dll handle: 00007ffbe48e0000 size: 1222056 crc: 44DB9CA6 date: 2021-01-14 17:50:29
 C:\WINDOWS\System32\GDI32.dll handle: 00007ffbe3df0000 size: 161680 crc: 2A141BAA date: 2021-01-14 17:50:02
 C:\WINDOWS\System32\win32u.dll handle: 00007ffbe3740000 size: 132736 crc: DCD71B52 date: 2021-02-10 07:23:43
 C:\WINDOWS\System32\gdi32full.dll handle: 00007ffbe3050000 size: 1075864 crc: 129DC3C4 date: 2021-01-14 17:50:31
 C:\WINDOWS\System32\msvcp_win.dll handle: 00007ffbe3770000 size: 634760 crc: E6732639 date: 2021-02-10 07:23:47
 C:\WINDOWS\System32\ucrtbase.dll handle: 00007ffbe32c0000 size: 1044888 crc: D3CA62A3 date: 2021-02-10 07:23:47
 C:\WINDOWS\System32\USER32.dll handle: 00007ffbe4af0000 size: 1702416 crc: CCD30A7B date: 2021-01-14 17:50:12
 C:\WINDOWS\System32\IMM32.dll handle: 00007ffbe3b10000 size: 185448 crc: 36F61BF6 date: 2020-10-14 07:25:33
 C:\WINDOWS\System32\ole32.dll handle: 00007ffbe3cc0000 size: 1212232 crc: 0FD6B05F date: 2021-01-14 17:50:26
 C:\WINDOWS\System32\combase.dll handle: 00007ffbe4d50000 size: 3509064 crc: 3C1AB9E8 date: 2021-01-14 17:50:28
 C:\WINDOWS\System32\SHELL32.dll handle: 00007ffbe3e20000 size: 7640064 crc: 379F5950 date: 2021-02-10 07:23:56
 C:\WINDOWS\System32\WS2_32.dll handle: 00007ffbe3aa0000 size: 427200 crc: 6E37A637 date: 2020-10-14 07:25:32
 C:\WINDOWS\SYSTEM32\USP10.dll handle: 00007ffbce060000 size: 79360 crc: 9A7F7CC2 date: 2020-10-14 07:25:33
 C:\WINDOWS\SYSTEM32\WINMM.dll handle: 00007ffbdde10000 size: 147200 crc: 18D40339 date: 2020-10-14 07:24:29
 C:\WINDOWS\SYSTEM32\CRYPTSP.dll handle: 00007ffbe2a00000 size: 83744 crc: DDF7045E date: 2020-10-14 07:25:27
 C:\WINDOWS\system32\rsaenh.dll handle: 00007ffbe2100000 size: 207608 crc: 4A244345 date: 2020-10-14 07:25:27
 C:\WINDOWS\System32\bcrypt.dll handle: 00007ffbe3940000 size: 146240 crc: 50F3C5E2 date: 2020-12-09 12:54:39
 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll handle: 00007ffbe2a20000 size: 34152 crc: CC386121 date: 2020-10-14 07:25:32
 C:\WINDOWS\System32\bcryptPrimitives.dll handle: 00007ffbe38c0000 size: 523200 crc: 1A4DFB8D date: 2020-12-09 12:54:42
 C:\WINDOWS\SYSTEM32\windows.storage.dll handle: 00007ffbe11a0000 size: 7966512 crc: 2B10B194 date: 2021-02-10 07:23:42
 C:\WINDOWS\SYSTEM32\Wldp.dll handle: 00007ffbe2ab0000 size: 173016 crc: C5218D0B date: 2020-12-09 12:54:39
 C:\WINDOWS\System32\SHCORE.dll handle: 00007ffbe46e0000 size: 704008 crc: 0812F61E date: 2021-01-14 17:50:13
 C:\WINDOWS\System32\shlwapi.dll handle: 00007ffbe4a90000 size: 342440 crc: 5693748E date: 2021-01-14 17:50:40
 C:\WINDOWS\system32\uxtheme.dll handle: 00007ffbe0ae0000 size: 627712 crc: A05B5F55 date: 2021-01-14 17:50:36
 C:\WINDOWS\System32\MSCTF.dll handle: 00007ffbe3b40000 size: 1129040 crc: 99231A43 date: 2021-02-10 07:23:53
 C:\WINDOWS\System32\OLEAUT32.dll handle: 00007ffbe3970000 size: 831024 crc: 8304FB12 date: 2021-02-10 07:23:48
 C:\WINDOWS\SYSTEM32\kernel.appcore.dll handle: 00007ffbe0ec0000 size: 60464 crc: 7039ACC9 date: 2020-10-14 07:25:14
 C:\WINDOWS\SYSTEM32\textinputframework.dll handle: 00007ffbd0770000 size: 1021128 crc: B85C6542 date: 2021-02-10 07:23:41
 C:\WINDOWS\SYSTEM32\CoreUIComponents.dll handle: 00007ffbe0400000 size: 3537520 crc: 78335519 date: 2020-10-14 07:25:07
 C:\WINDOWS\SYSTEM32\CoreMessaging.dll handle: 00007ffbe07b0000 size: 986464 crc: EDF107E3 date: 2021-01-14 17:50:27
 C:\WINDOWS\SYSTEM32\ntmarta.dll handle: 00007ffbe1d70000 size: 191656 crc: B2A51DA2 date: 2020-10-14 07:25:27
 C:\WINDOWS\SYSTEM32\wintypes.dll handle: 00007ffbdfcf0000 size: 1393992 crc: F742C2B6 date: 2021-01-14 17:50:28
 C:\WINDOWS\system32\mswsock.dll handle: 00007ffbe2830000 size: 418416 crc: 7609CC3B date: 2020-10-14 07:25:25
 C:\WINDOWS\SYSTEM32\winmmbase.dll handle: 00007ffbc87e0000 size: 144592 crc: B331D5DD date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\MMDevAPI.DLL handle: 00007ffbddc80000 size: 529424 crc: DFC9B2A0 date: 2021-02-10 07:23:33
 C:\WINDOWS\SYSTEM32\DEVOBJ.dll handle: 00007ffbe2c50000 size: 165832 crc: 9AB2CB9F date: 2020-10-14 07:25:30
 C:\WINDOWS\System32\cfgmgr32.dll handle: 00007ffbe36f0000 size: 305272 crc: DE2280BE date: 2020-10-14 07:25:30
 C:\WINDOWS\SYSTEM32\wdmaud.drv handle: 00007ffbc2900000 size: 259584 crc: DB966BEF date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\ksuser.dll handle: 00007ffbd0a00000 size: 23264 crc: A73C3DE9 date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\AVRT.dll handle: 00007ffbdeef0000 size: 30480 crc: D6790ED2 date: 2020-10-14 07:24:28
 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL handle: 00007ffbdde80000 size: 1578512 crc: 035CD2FE date: 2021-02-10 07:23:33
 C:\WINDOWS\SYSTEM32\powrprof.dll handle: 00007ffbe27e0000 size: 295464 crc: 74230007 date: 2020-10-14 07:25:27
 C:\WINDOWS\SYSTEM32\UMPDC.dll handle: 00007ffbe2730000 size: 64552 crc: B19D9CE1 date: 2020-10-14 07:24:29
 C:\WINDOWS\SYSTEM32\msacm32.drv handle: 00007ffbd0700000 size: 30208 crc: 414EBD44 date: 2020-09-11 16:56:29
 C:\WINDOWS\SYSTEM32\MSACM32.dll handle: 00007ffbc32b0000 size: 112080 crc: 7C3515A4 date: 2019-12-07 09:08:07
 C:\WINDOWS\SYSTEM32\midimap.dll handle: 00007ffbd06f0000 size: 26624 crc: C81948B1 date: 2020-09-11 16:56:29
 C:\WINDOWS\System32\clbcatq.dll handle: 00007ffbe4570000 size: 672976 crc: AD4CB4A3 date: 2020-10-14 07:25:24
 C:\WINDOWS\System32\dmusic.dll handle: 00007ffbcec70000 size: 136192 crc: BDA2573A date: 2019-12-07 09:09:37
 C:\WINDOWS\System32\DSOUND.dll handle: 00007ffbc2b60000 size: 615424 crc: 1C78A884 date: 2019-12-07 09:08:07
 C:\WINDOWS\System32\dmsynth.dll handle: 00007ffbcec40000 size: 126464 crc: 2A50C1AD date: 2019-12-07 09:09:37
 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll handle: 00007ffbe0ba0000 size: 71784 crc: 38C47F6A date: 2020-10-14 07:24:41
 C:\Windows\System32\Windows.UI.dll handle: 00007ffbd1370000 size: 1317544 crc: C59FEC4F date: 2021-01-14 17:50:20
 C:\Windows\System32\WindowManagementAPI.dll handle: 00007ffbdbf30000 size: 643072 crc: 4D2F7971 date: 2021-01-14 17:50:10
 C:\Windows\System32\InputHost.dll handle: 00007ffbd04e0000 size: 1379072 crc: 6468F174 date: 2021-01-14 17:50:04
 C:\WINDOWS\SYSTEM32\twinapi.appcore.dll handle: 00007ffbdebf0000 size: 2100112 crc: 607D6B93 date: 2021-01-14 17:49:58
 C:\Windows\System32\PROPSYS.dll handle: 00007ffbde020000 size: 1009200 crc: 9B615A75 date: 2021-01-14 17:50:10
 C:\WINDOWS\SYSTEM32\TextShaping.dll handle: 00007ffbc8710000 size: 707544 crc: 5954E52F date: 2020-10-14 07:25:08
 C:\WINDOWS\System32\psapi.dll handle: 00007ffbe4c90000 size: 19144 crc: 6E06CEEB date: 2020-10-14 07:25:23

Events: i, i

---- gamelog start ----
Tick 0: new game started
Revision text changed to jgrpp-0.40.0, savegame version 289, not modified, _openttd_newgrf_version = 0x1b006d64
New game mode: 1 landscape: 0
Added NewGRF: GRF ID 504B4B01, checksum A76AB6AA2AA0E24E3DBB8AD0FEADEDD9, filename: cs_town_names-1.0b\cs_townnames.grf (md5sum matches)
Added NewGRF: GRF ID 544D0101, checksum A03B93117C7B363F21C436781E4DF5B4, filename: 2cc_trainsinnml-3.0\2ccts.grf (md5sum matches)
Added NewGRF: GRF ID FBFB0010, checksum 910E27FA08080A404B80EA7E9A888B95, filename: 2cc_trams-0.9c\2cc-trams-v0.9c-2020-10-24.grf (md5sum matches)
Added NewGRF: GRF ID 41570101, checksum 3E378C2EDB8D77F6E2FAFF9B7FAF0F7D, filename: 2cc_cargo_trams-0.8q\2cc-trams-cargo-v0.8q-2020-11-09.grf (md5sum matches)
Added NewGRF: GRF ID 44440A01, checksum FCEEC76CF44EC23E7FE9C88048CF11CC, filename: av8_aviators_aircraft_set-2.21\pb_av8w.grf (md5sum matches)
Added NewGRF: GRF ID 4D530101, checksum F7152EEB4C4B1558FF599F7B66A105B4, filename: cssalinaset-1.1\cssalinaset.grf (md5sum matches)
Added NewGRF: GRF ID 414E0101, checksum 5D665C64693A438E3046C22666F46E08, filename: fish_ship_set-0.9.2\fish.grf (md5sum matches)
Added NewGRF: GRF ID 414E0201, checksum 0DA3A80B986BC3C17C20CA4CE9CA26AA, filename: fish_2-2.0.3\fish.grf (md5sum matches)
Added NewGRF: GRF ID 4C530100, checksum 0C16CC7D902FF52E686E42DADF2F786C, filename: slovak_bus_set_beta-beta_1.0.1\slovak_bus_set_25_12_2020.grf (md5sum matches)
Added NewGRF: GRF ID 44450602, checksum 315AB806C5B8E61EEFDBBC2EEC7E824E, filename: mops_generic_nrt_road_vehicles_-0.6.5\moprv65.grf (md5sum matches)
Added NewGRF: GRF ID 55464990, checksum 1A7F4F2D1971114341772543391017AE, filename: u_rermm_2-1c\urermm2.grf (md5sum matches)
Added NewGRF: GRF ID 58534453, checksum 2E100BCA91DB8371CD9D57DBEC3AB0C8, filename: dutch_stations_set-1.0.0alpha\dutchstatw.grf (md5sum matches)
Added NewGRF: GRF ID 504A0112, checksum 80D0B8699A417CC03CD06BC74E8796D0, filename: dutch_station_addition_part_2-0.4\dstatadd_part2_v0_4.grf (md5sum matches)
Added NewGRF: GRF ID 504A0113, checksum 0B65D0779D65427BC135FC624278FEA3, filename: dutch_station_addition_part_3-001\dstatadd_part3_v001.grf (md5sum matches)
Added NewGRF: GRF ID 504A0110, checksum E8244C5278CB2408A818854DC11F8940, filename: dutch_station_addition_set-0.8\dstatadd_v0_8.grf (md5sum matches)
Added NewGRF: GRF ID 4A430002, checksum 93EAC5F5396584B92D4C5F0AAAF3F6C5, filename: industrial_stations_renewal-1.0.2\indstatr.grf (md5sum matches)
Added NewGRF: GRF ID 4A448807, checksum A153A80310865877F31066848A84468B, filename: extreme_industry_set-0.6.1\xis_0.6.1.grf (md5sum matches)
Added NewGRF: GRF ID 74677462, checksum 1D2A4E03D9F30922788C166254C27619, filename: total_bridge_renewal_set-1.2\total_bridges.grf (md5sum matches)
Added NewGRF: GRF ID 474A0001, checksum C1772ED819AC0A4303B2813A8CFF0C76, filename: total_town_replac._set_early_mod-modified23.14\ttrs3w-early_mod.grf (md5sum matches)
Added NewGRF: GRF ID 55464989, checksum 4168A85A8729287F9AE283285899274D, filename: u_ratt-0.2a\uratt.grf (md5sum matches)
Added NewGRF: GRF ID FBFB0A01, checksum F72870562FBD9CC015A0CCDC60588F86, filename: useless_tracks-0.1.0\uselesstracks.grf (md5sum matches)
Added NewGRF: GRF ID 47385207, checksum 83CC9413E12E1763E1503044E4B24EC9, filename: utility_truck_set_pipe_addon-0.5a\uts_addon.grf (md5sum matches)
Added NewGRF: GRF ID 47385202, checksum 5CC1597E5976771680E7EE6202A646D3, filename: utility_roadtype_set-4.2\urs.grf (md5sum matches)
Added NewGRF: GRF ID 47385206, checksum E67B6EFA2A236196A51E030D5DA7E186, filename: utility_truck_set-0.4a\uts.grf (md5sum matches)
Added NewGRF: GRF ID 46727806, checksum BBE029FCDD7A16F85876D417FF318D23, filename: opengfx_trees-0.8.0\opengfx+trees.grf (md5sum matches)
Added NewGRF: GRF ID 43415000, checksum FBAE0C1ACFDA5AE8B95B4DA230A395FE, filename: opengfx_airports-0.5.0\ogfx-airports.grf (md5sum matches)
Added NewGRF: GRF ID 504B4B12, checksum 9885CBF02A0DC6DC33D3384E57734121, filename: csmetroset_prague_metro-1.0\cs_metroset.grf (md5sum matches)
Added NewGRF: GRF ID 4F472B34, checksum 136D889FDAEAA3491F8320248A04425C, filename: opengfx_landscape-1.1.2\ogfx-landscape.grf (md5sum matches)
Added NewGRF: GRF ID 47524304, checksum AA46CAD81C7E2EC5475DACF30F7D13D9, filename: gpl_roadtype_collection_pt._4-0.2a\grc4.grf (md5sum matches)
Added NewGRF: GRF ID 4D4E5453, checksum C7933F19B4742E0BA1E3DE0F1F3F259C, filename: metro_nrt_tram_set-0.1\mnts.grf (md5sum matches)
Tick 45616: game loaded
Revision text changed to jgrpp-0.40.2, savegame version 289, not modified, _openttd_newgrf_version = 0x1b006d64
---- gamelog end ----

Recent news messages (6 of 6):
(2032-06-04) StringID: 714, Type: 10, Ref1: 2, 344, Ref2: 3, 21
(2032-04-24) StringID: 681, Type: 4, Ref1: 4, 657, Ref2: 0, 4294967295
(2032-04-01) StringID: 723, Type: 12, Ref1: 3, 66, Ref2: 0, 4294967295
(2032-03-23) StringID: 723, Type: 12, Ref1: 3, 37, Ref2: 0, 4294967295
(2032-03-13) StringID: 681, Type: 4, Ref1: 4, 656, Ref2: 0, 4294967295
(2032-02-01) StringID: 719, Type: 11, Ref1: 6, 833, Ref2: 0, 4294967295

Command Log:
 Showing most recent 128 of 289 commands
   0 | 2032-06-04, 22,   0 | 2--m----- |       94 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   1 | 2032-06-04, 16,   0 | 2--m----- |       95 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   2 | 2032-06-04, 11,   0 | 2--m----- |       95 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   3 | 2032-06-04,  5,   0 | 2--m----- |       96 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   4 | 2032-06-04,  0,   0 | 2--m----- |       96 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   5 | 2032-06-03, 69,   0 | 2--m----- |       97 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   6 | 2032-06-03, 63,   0 | 2--m----- |       97 x     838, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   7 | 2032-06-03, 58,   0 | 2--m----- |       97 x     839, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   8 | 2032-06-03, 53,   0 | 2--m----- |       97 x     839, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
   9 | 2032-06-03, 48,   0 | 2--m----- |       98 x     839, p1: 0x0000014E, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
  10 | 2032-06-03,  3,   0 | --------- |       54 x    1359, p1: 0x00050248, p2: 0xFFFF0000, cc:   2, lc:   0, cmd: 0x12080106 (CmdBuildRailStation)
  11 | 2032-06-01, 28,   0 | --------- |       54 x    1363, p1: 0x00055336, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  12 | 2032-06-01, 24,   0 | 2--m----- |      112 x     842, p1: 0x0000014E, p2: 0x00000007, p3: 0x0000000015000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  13 | 2032-06-01, 23,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000023, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  14 | 2032-06-01, 22,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  15 | 2032-06-01, 21,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  16 | 2032-06-01, 20,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  17 | 2032-06-01, 19,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  18 | 2032-06-01,  9,   0 | --------- |       55 x    1363, p1: 0x00055337, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  19 | 2032-05-31, 59,   0 | --------- |       54 x    1360, p1: 0x00055036, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  20 | 2032-05-30,  9,   0 | 2--m----- |      124 x     848, p1: 0x0000014E, p2: 0x00000009, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
  21 | 2032-05-29, 22,   0 | 2--m----- |      127 x     852, p1: 0x0000014E, p2: 0x00000008, p3: 0x0000000015000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  22 | 2032-05-27, 18,   0 | 2--m----- |      134 x     862, p1: 0x0000014E, p2: 0x00000008, cc:   0, lc:   0, cmd: 0x12D6002C (CmdDeleteOrder)
  23 | 2032-05-26, 54,   0 | --------- |       21 x    1290, p1: 0x00050208, p2: 0xFFFF0000, cc:   2, lc:   0, cmd: 0x12080106 (CmdBuildRailStation)
  24 | 2032-05-25, 55,   0 | 2--m----- |      138 x     870, p1: 0x0000014E, p2: 0x00000007, p3: 0x0000000014000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  25 | 2032-05-24, 71,   0 | --------- |       21 x    1291, p1: 0x00050B15, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  26 | 2032-05-24, 50,   0 | --------- |       21 x    1290, p1: 0x00050A15, p2: 0x00000000, cc:   2, lc:   0, cmd: 0x11B90152 (CmdClearArea)
  27 | 2032-05-22, 32,   0 | 2--m----- |      155 x     873, p1: 0x0000014E, p2: 0x00000003, p3: 0x0000000015000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  28 | 2032-05-17, 17,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  29 | 2032-05-17, 16,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  30 | 2032-05-02, 14,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  31 | 2032-05-02, 13,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  32 | 2032-05-02, 12,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000008, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  33 | 2032-05-02, 11,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  34 | 2032-05-02, 10,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  35 | 2032-04-27,  9,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000029, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  36 | 2032-04-27,  8,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000026, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  37 | 2032-04-27,  7,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000028, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  38 | 2032-04-27,  6,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  39 | 2032-04-27,  5,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000027, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  40 | 2032-04-22,  4,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000020, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  41 | 2032-04-22,  3,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000022, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  42 | 2032-04-22,  2,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  43 | 2032-04-22,  1,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000021, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  44 | 2032-04-22,  0,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  45 | 2032-04-16, 73,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  46 | 2032-04-16, 72,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000023, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  47 | 2032-04-16, 71,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  48 | 2032-04-16, 70,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  49 | 2032-04-16, 69,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  50 | 2032-04-16, 68,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000018, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  51 | 2032-04-16, 67,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000015, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  52 | 2032-04-16, 66,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000016, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  53 | 2032-04-11, 65,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000013, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  54 | 2032-04-11, 64,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000012, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  55 | 2032-04-11, 63,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  56 | 2032-04-11, 62,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000010, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  57 | 2032-04-06, 61,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  58 | 2032-04-06, 60,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000009, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  59 | 2032-04-06, 59,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  60 | 2032-04-06, 58,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  61 | 2032-04-06, 57,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  62 | 2032-04-01, 56,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  63 | 2032-04-01, 55,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  64 | 2032-04-01, 54,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000024, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  65 | 2032-04-01, 53,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  66 | 2032-04-01, 52,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  67 | 2032-04-01, 51,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  68 | 2032-04-01, 50,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000007, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  69 | 2032-04-01, 49,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000006, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  70 | 2032-04-01, 48,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000005, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  71 | 2032-04-01, 47,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000004, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  72 | 2032-03-27, 46,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000003, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  73 | 2032-03-27, 45,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000002, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  74 | 2032-03-27, 44,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000001, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  75 | 2032-03-27, 43,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000000, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  76 | 2032-03-22, 39,   0 | 2--m----- |      213 x     939, p1: 0x0000014E, p2: 0x00000007, p3: 0x0000000017000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  77 | 2032-03-20, 26,   0 | 2--m----- |      214 x     954, p1: 0x0000014E, p2: 0x00000001, p3: 0x0000000017000051, cc:   0, lc:   0, cmd: 0x12D5002D (CmdInsertOrder)
  78 | 2032-03-17, 42,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000024, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  79 | 2032-03-17, 41,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000017, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  80 | 2032-03-07, 39,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000025, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  81 | 2032-03-02, 38,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002D, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  82 | 2032-03-02, 37,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  83 | 2032-03-02, 36,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  84 | 2032-03-02, 35,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000019, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  85 | 2032-02-16, 33,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000023, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  86 | 2032-02-16, 32,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  87 | 2032-02-16, 31,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  88 | 2032-02-16, 30,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001A, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  89 | 2032-02-16, 29,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000014, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  90 | 2032-02-04, 55,   0 | --------- |       54 x     611, p1: 0x00000126, p2: 0x00000001, cc:   1, lc:   0, cmd: 0x12D9012B (CmdSkipToOrder)
  91 | 2032-02-01, 27,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  92 | 2032-02-01, 26,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
  93 | 2032-02-01,  6,   0 | ---ms---f |      168 x     943, p1: 0x00000068, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
  94 | 2032-02-01,  6,   0 | ---ms---f |      166 x     943, p1: 0x00000062, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
  95 | 2032-02-01,  6,   0 | 2--m----- |      167 x     943, p1: 0x00000101, p2: 0x007700C7, cc:   0, lc:   0, cmd: 0x120A0015 (CmdBuildRoadStop)
  96 | 2032-01-28, 40,   0 | 2--m----- |      166 x     943, p1: 0x0003AEA6, p2: 0x00000037, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
  97 | 2032-01-28,  8,   0 | 2--m----- |      168 x     943, p1: 0x0003AFA6, p2: 0x00000032, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
  98 | 2032-01-27, 54,   0 | 2--m----- |      168 x     942, p1: 0x0003AFA8, p2: 0x00000035, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
  99 | 2032-01-25, 73,   0 | ---ms---f |      168 x     940, p1: 0x00000061, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
 100 | 2032-01-25, 73,   0 | 2--m----- |      168 x     939, p1: 0x00000019, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x1236001A (CmdBuildRoadDepot)
 101 | 2032-01-24, 68,   0 | 2--m----- |      168 x     939, p1: 0x0003ABA8, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x11B90052 (CmdClearArea)
 102 | 2032-01-23, 63,   0 | ---ms---f |      168 x     939, p1: 0x0003ABA8, p2: 0x00000037, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
 103 | 2032-01-23,  4,   0 | 2--m----- |      168 x     942, p1: 0x0003ABA8, p2: 0x00000036, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
 104 | 2032-01-22, 32,   0 | 2--m----- |      166 x     942, p1: 0x0003AEA8, p2: 0x00000033, cc:   0, lc:   0, cmd: 0x125F0017 (CmdBuildLongRoad)
 105 | 2032-01-18, 30,   0 | ---m----- |      166 x     940, p1: 0x00000062, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000119 (CmdBuildRoad)
 106 | 2032-01-18, 29,   0 | ---ms---- |      166 x     940, p1: 0x00000062, p2: 0x00000000, cc:   0, lc:   0, cmd: 0x00000019 (CmdBuildRoad)
 107 | 2032-01-18, 29,   0 | 2--m----- |      167 x     940, p1: 0x00000101, p2: 0x007700C5, cc:   0, lc:   0, cmd: 0x120A0015 (CmdBuildRoadStop)
 108 | 2032-01-17, 24,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 109 | 2032-01-17, 23,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002F, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 110 | 2032-01-17, 22,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000029, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 111 | 2032-01-17, 21,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000026, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 112 | 2032-01-17, 20,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000020, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 113 | 2032-01-17, 19,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000018, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 114 | 2032-01-17, 18,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000015, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 115 | 2032-01-17, 17,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000025, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 116 | 2032-01-17, 16,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 117 | 2032-01-17, 15,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000013, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 118 | 2032-01-17, 14,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000009, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 119 | 2032-01-17, 13,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000002C, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 120 | 2032-01-17, 12,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000028, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 121 | 2032-01-17, 11,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000022, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 122 | 2032-01-17, 10,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000001E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 123 | 2032-01-17,  9,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000017, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 124 | 2032-01-17,  8,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000012, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 125 | 2032-01-17,  7,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000E, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 126 | 2032-01-17,  6,   0 | 2a-m--t-- |        0 x       0, p1: 0x0000000B, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)
 127 | 2032-01-17,  5,   0 | 2a-m--t-- |        0 x       0, p1: 0x00000011, p2: 0x00000000, cc:  18, lc:   0, cmd: 0x0000005E (CmdSetGoalProgress)

*** End of OpenTTD Crash Report ***

Decoded stack trace:
[00] openttd              0x000000000070698D Vehicle::GetOrder(int) const (/home/jgr/openttd/jgrpp/src/pathfinder/yapf/../../vehicle_base.h:990)
[01] openttd              0x0000000000706CCB Train::GetCurrentMaxSpeedInfo() const (/home/jgr/openttd/jgrpp/src/pathfinder/yapf/../../train.h:184)
[02] openttd              0x0000000000724700 Vehicle::ShowVisualEffect() const + 96 (/home/jgr/openttd/jgrpp/src/vehicle.cpp:3663)
[03] openttd              0x0000000000707718 TrainLocoHandler (/home/jgr/openttd/jgrpp/src/train_cmd.cpp:5952)
[04] openttd              0x00000000007089D8 Train::Tick() + 152 (/home/jgr/openttd/jgrpp/src/train_cmd.cpp:6081)
[05] openttd              0x000000000072B5DB CallVehicleTicks() + 1723 (/home/jgr/openttd/jgrpp/src/vehicle.cpp:1427)
[06] openttd              0x0000000000616994 StateGameLoop() + 308 (/home/jgr/openttd/jgrpp/src/openttd.cpp:1854)
[07] openttd              0x00000000004BB346 NetworkGameLoop() + 374 (/home/jgr/openttd/jgrpp/src/network/network.cpp:1018)
[08] openttd              0x0000000000616FF5 GameLoop() + 709 (/home/jgr/openttd/jgrpp/src/openttd.cpp:1956)
[09] openttd              0x00000000005281AD VideoDriver_Win32::MainLoop() + 509 (/home/jgr/openttd/jgrpp/src/video/win32_v.cpp:1238)
[10] openttd              0x000000000060FA4E openttd_main(int, char**) + 6526 (/home/jgr/openttd/jgrpp/src/openttd.cpp:1004)
[11] openttd              0x00000000004DA69D WinMain + 285 (/home/jgr/openttd/jgrpp/src/os/windows/win32.cpp:468)
[12] openttd              0x00000000004013B4 __tmainCRTStartup + 564 (./build/x86_64-w64-mingw32-x86_64-w64-mingw32-crt/./mingw-w64-crt/crt/crtexe.c:339)
[13] openttd              0x00000000004014DB WinMainCRTStartup + 27 (./build/x86_64-w64-mingw32-x86_64-w64-mingw32-crt/./mingw-w64-crt/crt/crtexe.c:195)
[14] KERNEL32             0x00007FFBE4637034 BaseThreadInitThunk + 20
[15] ntdll                0x00007FFBE595D241 RtlUserThreadStart + 33

*** End of additional info ***
It happened, when I deleted shared orders of 6 trains. After I deleted them, some train of them complained, that it failed to stop at station, due to too big speed. I think, it crashed because of the message, since it crashed at the time the message should close, and that message is probably part of advanced braking, which was turned on at the time of crash (and which is still buggy). Do you want a saved game, or something more? There was also used a gamescript called Bee Reward and bunch of NewGRFs.

EDIT: That message showed again, when saving last autosave. This time without crash, but I did not delete orders at the same time.
Thanks for reporting this. A savegame may be useful actually.
I found a case where this bug could be triggered if you have looped conditional orders or no orders with actual destinations.
Ex TTDPatch Coder
Patch Pack, Github
Post Reply

Return to “OpenTTD Development”

Who is online

Users browsing this forum: No registered users and 27 guests