Config
Log for #openttd on 15th December 2023:
Times are UTC Toggle Colours
00:03:33  *** greeter has quit IRC
00:03:47  *** greeter has joined #openttd
00:21:25  <peter1138> At least regression works, everything must be fine right :D
00:25:31  <peter1138> Adding day/month/year stuff to the economy-date stuff seems wrong.
00:26:33  <peter1138> (I guess compatibility)
00:26:36  <talltyler> Why?
00:26:44  <peter1138> ((Although you mispelled it compatability))
00:27:03  <talltyler> Oops
00:28:16  *** wallabra has joined #openttd
00:29:39  <peter1138> Something about your API changes is wrong.
00:29:46  <peter1138> (But I'm assuming we know that :D)
00:31:28  <_glx_> https://cdn.discordapp.com/attachments/1008473233844097104/1185016238263517204/image.png?ex=658e135f&is=657b9e5f&hm=403ddcc34631efd3d919c8c0b55bc647381dda06cdc0eba0de213ab343f207bd&
00:31:28  <_glx_> looks like you need a rebase first (the GUI is weird)
00:33:56  <peter1138> [squirrel] Failed to compile 'compat_13.nut'
00:34:56  <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler updated pull request #10700: Codechange: Split dates and timers into Economy and Calendar time https://github.com/OpenTTD/OpenTTD/pull/10700
00:35:48  <peter1138> dbg: [script] [18] [S] Your script made an error: the index 'GSDate' does not exist
00:35:57  <peter1138> dbg: [script] [18] [S] *FUNCTION [main()] /home/petern/src/openttd/build/game/compat_13.nut line [13]
00:36:14  <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler updated pull request #11588: Change: Split ScriptDate:: into Calendar and Economy variants https://github.com/OpenTTD/OpenTTD/pull/11588
00:36:22  <talltyler> Rebased
00:37:34  <talltyler> Are you getting the script to load, or is that from the OpenTTD crash log?
00:37:45  <_glx_> ok yeah it's the compatibility scripts, and some incorrect handling of that
00:37:53  <talltyler> I assumed 🙂
00:38:15  <_glx_> engine is deleted but we don't check and assume compatibility scripts are always fine
00:38:18  <peter1138> There's no error handling in case of compatibility failing.
00:38:22  <_glx_> I'll fix
00:38:27  <peter1138> Already got one ;)
00:38:31  <_glx_> ah ok
00:39:00  <talltyler> What does “Engine is deleted” mean?
00:42:32  <_glx_> ScriptInstance::Died() is called when there's an error, which deletes this->engine
00:43:17  <_glx_> so the this->engine->LoadScript(main_script) happening after, without any safety check, crashes
00:43:30  <_glx_> because this->engine is nullptr
00:44:28  <DorpsGek> [OpenTTD/OpenTTD] PeterN opened pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589
00:45:31  <peter1138> Hmm, the comment could be placed better.
00:46:33  <DorpsGek> [OpenTTD/OpenTTD] PeterN updated pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589
00:46:49  <peter1138> There we go. It's not obvious when it applies.
00:46:51  <peter1138> ...
00:46:52  <peter1138> *now
00:47:31  <_glx_> could also use this->IsDead()
00:52:06  <peter1138> Oh instead of checking for nullptr. Hmm.
00:52:30  <DorpsGek> [OpenTTD/OpenTTD] glx22 approved pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589#pullrequestreview-1782975635
00:52:48  <_glx_> I'm fine with both
00:52:50  <peter1138> No, IsDead() does not work.
00:53:03  <peter1138> Wait, it does.
00:53:13  <_glx_> Died() sets is_dead
00:53:14  <peter1138> My test didn't die, the exception was because squirrel just uses exceptions :D
00:56:03  <peter1138> Yeah, IsDead() works when you break the correct comaptibility script :)
00:56:11  <peter1138> I think that's clearer than == nullptr, tbh.
00:56:41  <DorpsGek> [OpenTTD/OpenTTD] PeterN dismissed a review for pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589#pullrequestreview-1782975635
00:56:44  <peter1138> Sorry :)
00:56:45  <DorpsGek> [OpenTTD/OpenTTD] PeterN updated pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589
00:57:04  <DorpsGek> [OpenTTD/OpenTTD] glx22 approved pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589#pullrequestreview-1782978572
00:57:32  <_glx_> yeah the call itself documents what we are testing for
00:59:13  *** Tirili has quit IRC
00:59:56  <_glx_> https://cdn.discordapp.com/attachments/1008473233844097104/1185023402981982228/image.png?ex=658e1a0b&is=657ba50b&hm=369978aaaa8be9355996bf1337163647035e7f744a119457f91acd8446ab97cd&
00:59:56  <_glx_> when not crashing it's more helpful 🙂
01:00:36  <_glx_> (yeah I still use the not rebased code)
01:02:25  <talltyler> More helpful yes
01:02:41  <talltyler> Still not sure what I’m missing, but it helps eliminate other possibilities
01:02:55  <talltyler> It fails to load the compat file altogether?
01:05:06  <_glx_> GSDate::DATE_INVALID and GSDate::IsValidDate are from 1.4
01:06:09  <_glx_> but the problem here is GSDate itself which doesn't exist at all
01:06:26  <_glx_> in the PR
01:07:02  <talltyler> Hmm, I’m not sure I understand
01:07:17  <talltyler> Even though I removed it, I need a placeholder for the GS to find?
01:08:56  <_glx_> I think you can do ` GSDate <- GSDateEconomy;` (at least seems to work in my test)
01:11:36  <_glx_> `GSDate.DATE_INVALID <- GSDateEconomy.DATE_INVALID;` says redefine DATE_INVALID slot of GSDate table
01:11:51  <_glx_> but the table doesn't exist
01:13:43  <talltyler> Oh interesting, I can just rename the whole class in the compat file?
01:15:52  <_glx_> it's not a rename, you just create a new GSDate table, and the content is the other table
01:17:12  <talltyler> Ah let me try that
01:21:56  <_glx_> https://cdn.discordapp.com/attachments/1008473233844097104/1185028939953995797/image.png?ex=658e1f34&is=657baa34&hm=281c91ea095a1930cc63a5cfec67418bf0e7405a4e0bb39e78cced21fb318297&
01:21:56  <_glx_> tested with bee reward, the values seem to decrease correctly when I fast forward
01:23:19  <peter1138> Surprised nothing has reinitialized windows at that point.
01:23:25  <peter1138> (That would fix the bevels)
01:23:48  <_glx_> nah I'm on the broken GUI version
01:23:58  <peter1138> Yes, that's what I mean.
01:24:16  <_glx_> and I know what to not click 🙂
01:24:20  <peter1138> It unbreaks if there's a window reinitialization.
01:24:40  <peter1138> "set newgrf_developer_tools 1" will do it :)
01:24:45  <peter1138> iirc
01:25:40  <DorpsGek> [OpenTTD/OpenTTD] PeterN merged pull request #11589: Fix: Crash if squirrel compatibility scripts cannot be parsed. https://github.com/OpenTTD/OpenTTD/pull/11589
01:25:51  <talltyler> Ah, I got a hard crash after fast-forwarding for a bit
01:25:51  <_glx_> using font command too
01:26:06  <talltyler> https://cdn.discordapp.com/attachments/1008473233844097104/1185029990513914018/crash20231215012500.json.log?ex=658e202e&is=657bab2e&hm=9c22031d307588257fe5ca4e71b372db906d3d5469189afb8392d068a785ba55&
01:27:18  <_glx_> starting an AI it seems
01:27:36  <_glx_> "openttd              7FF79F1F12EC Squirrel::LoadScript + 28 (C:\Users\tyler\Documents\GitHub\OpenTTD\src\script\squirrel.cpp:733)",
01:28:08  <peter1138> AI compat this time? ;)
01:28:13  <_glx_> oh it's the same bug
01:28:21  <_glx_> yeah
01:28:42  <talltyler> I should rebase?
01:29:17  <talltyler> Oh, I didn't fix AI 😛
01:29:47  <_glx_> but yeah a rebase would prevent further crashes in this area
01:30:10  <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler updated pull request #10700: Codechange: Split dates and timers into Economy and Calendar time https://github.com/OpenTTD/OpenTTD/pull/10700
01:30:34  <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler updated pull request #11588: Change: Split ScriptDate:: into Calendar and Economy variants https://github.com/OpenTTD/OpenTTD/pull/11588
01:31:01  <talltyler> Okay, let's wait for the fixed version to build, then I will test both GS and AI to ensure they work
01:31:10  <talltyler> GS was working perfectly though 😄
01:31:38  <peter1138> Nice, we should merge the perfectly working GS as well ;)
01:32:22  <_glx_> GS I used to test were not perfectly working (but not because of dates)
01:32:43  <talltyler> RenewedVillageGrowth is quite a nice GS
01:32:55  <_glx_> most GS don't like the enforced string format
01:35:13  <_glx_> many authors (and the doc is not very good on this point probably) often don't understand STRINGx stuff
01:36:38  <talltyler> It works! \o/
01:36:54  <talltyler> Thank you Peter and _glx_ for your help ❤️
01:37:10  <_glx_> thanks for the bug finding 🙂
01:37:18  <talltyler> Any time 😛
01:38:21  <_glx_> 3 script bugs fixed today
01:38:24  <_glx_> not bad
01:39:20  <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler updated pull request #11588: Change: Split ScriptDate:: into Calendar and Economy variants https://github.com/OpenTTD/OpenTTD/pull/11588
01:39:27  <talltyler> (forgot a line in the changelog 🙂 )
01:39:39  <talltyler> Now it's time to watch Godzilla and not look at code until tomorrow 😄
01:55:53  <_glx_> you forgot ai_changelog too 😉
02:21:27  <talltyler> Ah, thanks. I will do that tomorrow.
02:24:42  <DorpsGek> [OpenTTD/OpenTTD] rubidium42 commented on pull request #11588: Change: Split ScriptDate:: into Calendar and Economy variants https://github.com/OpenTTD/OpenTTD/pull/11588#pullrequestreview-1783025673
02:45:02  *** Wormnest has quit IRC
03:53:29  *** debdog has joined #openttd
03:56:55  *** D-HUND has quit IRC
04:00:54  <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler commented on pull request #11588: Change: Split ScriptDate:: into Calendar and Economy variants https://github.com/OpenTTD/OpenTTD/pull/11588#issuecomment-1857237110
04:59:55  *** keikoz has joined #openttd
06:42:24  <DorpsGek> [OpenTTD/OpenTTD] Mixu78 opened issue #11590: [Bug]: Debug() redirection to TCP does not work when running as dedicated server https://github.com/OpenTTD/OpenTTD/issues/11590
07:55:00  <andythenorth> well
07:55:18  <locosage> is there som command to see what newgrfs are loaded on the server?
07:56:05  <locosage> with exact file names
08:07:20  *** wpiwpi has joined #openttd
08:07:20  <wpiwpi> isn't the new ship pathfinder basically the same thing as https://factorio.com/blog/post/fff-317 ?
08:10:40  *** Flygon has quit IRC
08:32:08  <merni> does seem to be quite similar yeah
08:33:33  <merni> nice that they also thought of the same solution
08:51:13  *** urdh has quit IRC
09:00:07  *** urdh has joined #openttd
09:58:42  <Rubidium> locosage: fromt the server, or from the client? If it's the latter then definitely not, and I wouldn't be that inclined to even implement that as it could leak (private) path information
10:01:50  <locosage> from anything
10:03:00  <l2023-12-15T22:29:42  <xarick> but economy date, calendar date... hmm :\
22:46:10  *** Hanicef has quit IRC
23:00:00  *** keikoz has quit IRC
23:00:54  <Eddi|zuHause> well, this whole daylength thing has been brewing for like 20 years now
23:16:56  <talltyler> 20 economy years? 😛
23:17:28  <talltyler> It’s not confusing to me because I’ve been putting part-time-job-hours into it for almost a year now
23:18:12  <talltyler> We are in the final stretch though, after months and months of fixing tech debt and preparing
23:19:10  <Eddi|zuHause> yes, and half a dozen examples of "how not to do it" that came before you.
23:20:42  <talltyler> At least two of those were mine
23:20:50  <talltyler> Maybe three, I can’t remember honestly
23:21:07  <talltyler> I did “groundhog year” and “technology time”
23:21:22  <talltyler> The latter of which is the mirror-image of my current approach
23:47:07  <xarick> is this piece of code gonna work as I think? `(_noisiest_airport_width > _noisiest_airport_height ? w : h) = abs(_noisiest_airport_width - _noisiest_airport_height);`
23:50:07  <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1185368211642920960/image.png?ex=658f5b2c&is=657ce62c&hm=fbe007d370c186b10b9d6c33bc354f927c9174cd9f5e6ccc2574256b96229df5&
23:50:20  <xarick> nop
23:52:56  <DorpsGek> [OpenTTD/grfcodec] glx22 commented on pull request #30: Codechange: Silence clang warnings about va_start https://github.com/OpenTTD/grfcodec/pull/30#issuecomment-1858618003
23:53:11  <xarick> > `        if (_noisiest_airport_width != _noisiest_airport_height) {
23:53:11  <xarick> >             local diff = abs(_noisiest_airport_width - _noisiest_airport_height);
23:53:11  <xarick> >             if (_noisiest_airport_width > _noisiest_airport_height) {
23:53:11  <xarick> >                 w = diff;
23:53:12  <xarick> >             } else {
23:53:12  <xarick> >                 h = diff;
23:53:12  <xarick> >             }
23:53:14  <xarick> >         }`
23:53:16  <xarick> the uglyness!
23:53:26  <_glx_> of course it won't work
23:53:57  <xarick> how do I make it prettier? smarter!
23:54:26  <_glx_> you can't, only ways is this one
23:57:00  <xarick> > `        local diff = abs(_noisiest_airport_width - _noisiest_airport_height);
23:57:00  <xarick> >         if (diff) {
23:57:00  <xarick> >             if (_noisiest_airport_width > _noisiest_airport_height) {
23:57:01  <xarick> >                 w = diff;
23:57:01  <xarick> >             } else {
23:57:02  <xarick> >                 h = diff;
23:57:02  <xarick> >             }
23:57:04  <xarick> >         }`
23:57:04  <xarick> > slightly more smarter

Powered by YARRSTE version: svn-trunk