Config
Log for #openttd on 4th October 2023:
Times are UTC Toggle Colours
01:34:34  *** Wormnest has quit IRC
01:46:15  *** breezebuilder has joined #openttd
01:46:15  <breezebuilder> Are all the tree species named anywhere? In the original game manual, texture names, file references...?
02:03:39  <_pruple> no
02:04:01  *** herms has joined #openttd
02:26:03  *** D-HUND has joined #openttd
02:29:35  *** debdog has quit IRC
03:18:30  *** pm has joined #openttd
03:19:04  *** pm is now known as Guest2111
03:24:51  *** Guest2001 has quit IRC
03:39:52  *** keikoz has joined #openttd
03:54:07  *** thelounge34 has quit IRC
03:55:39  *** thelounge34 has joined #openttd
05:30:45  *** keikoz has quit IRC
05:45:48  *** D-HUND is now known as debdog
06:29:25  <DorpsGek> [OpenTTD/OpenTTD] planetmaker opened issue #11350: [Bug]: OpenTTD doesn't cleanly exit when no graphics set are found https://github.com/OpenTTD/OpenTTD/issues/11350
06:30:08  *** nielsm has joined #openttd
06:35:24  <DorpsGek> [OpenTTD/OpenTTD] planetmaker commented on issue #11350: [Bug]: OpenTTD doesn't cleanly exit when no graphics set are found https://github.com/OpenTTD/OpenTTD/issues/11350
06:41:46  <LordAro> truebrain: what are you up to these days, ooi?
06:46:41  *** Guest2111 is now known as planetmaker
07:00:23  *** Venemo has joined #openttd
07:12:19  <breezebuilder> zstd
07:24:07  <planetmaker> The survey function is interesting :) Good approach
07:58:11  <Eddi|zuHause> did we actually learn anything from the survey so far?
08:04:42  <planetmaker> not according to the website... it says soon [TM] :D
08:20:41  <truebrain> Eddi|zuHause: Has 14.0 been released yet? 😄
08:22:47  <truebrain> LordAro: Work! Which severely hinders the time available for anything else .. so sad 😛
08:23:07  <truebrain> Guess having money is a nice perk
08:30:38  * planetmaker waves
08:42:00  <LordAro> truebrain: i was going for something vaguely more specific, but great!
08:42:07  <LordAro> money is pretty good
08:42:16  * LordAro particles
08:42:28  <truebrain> Pff, you don't have my LinkedIn? 😛
08:44:14  <LordAro> "Personal Banker, Christian, Husband, Father, Veteran. PNCAmerican Military University. Kokomo, Indiana, United States."
08:44:19  <LordAro> I'm reasonably certain this is not you
08:46:02  <truebrain> Yeah, I am sure about that too 😄
08:46:04  <Eddi|zuHause> i never found money particularly effective at motivating myself.
08:46:21  <planetmaker> only very limited
08:46:51  <LordAro> truebrain: aha, found a post welcoming you to the team. mwahaha
08:47:17  <truebrain> And I left that company 20 days later 😄
08:47:27  <LordAro> oh, lol
08:47:47  <truebrain> Which is an hilarious story on its own, but not one for public record 😄
08:47:53  <LordAro> did the flowers last longer?
08:47:58  <truebrain> Yes
08:48:00  <LordAro> :D
08:48:24  <LordAro> i'll stop attempting to stalk you now
08:48:43  <truebrain> You didn't even add me? 😦
08:49:11  <LordAro> that would require opening linkedin in a non-incognito window
08:49:19  <LordAro> which i avoid if at all possible
08:49:21  <truebrain> Haha
08:49:36  <truebrain> So you did that kind of stalking 😛
09:00:58  <peter1138> LinkedIn, eh...
09:01:19  <peter1138> Remember when Facebook was targetted at students?
09:10:00  <LordAro> no :p
09:19:55  <Eddi|zuHause> facebook has a long time ago been taken over by old people...
09:40:16  <alfagamma7> Facebook
09:40:30  <alfagamma7> Eddi is right
09:49:44  <breezebuilder> I'm just setting up the project in Visual Studio 22 for the first time, have successfully built and run the game, but my header files are throwing errors about `byte`, `uint32` and `assert` being undefined, which i assume is due to missing stdafx. I haven't worked on projects that don't explicitly include stdafx before, is there something i need to configure in VS?
09:50:21  <peter1138> Step one, check out master instead of a previous version.
09:58:11  <breezebuilder> I'm working with JGRPP, but i couldn't see anything meaningfully different from trunk in any config files. Any idea what's missing?
09:58:53  <peter1138> Oh, I see, if it's just the header files, then you can probably just ignore that.
10:00:15  <peter1138> The issue is that header files don't include all other headers directly, they come via the source files.
10:00:44  <peter1138> So analysis of just a header file doesn't mean much.
10:01:08  <peter1138> As it built correctly, there isn't anything else to configure.
10:11:56  <breezebuilder> It's not a big deal, but made me concerned that my environment might not be set up right. The only thing I've done differently from the compilation guide is to use VS' included manifest version of vcpkg instead of a standalone install
10:38:56  <peter1138> No, I get the same thing, with VS Code. It's basically normal for us.
10:45:10  <Eddi|zuHause> so the analysis tool needs a hint "we guarantee we include stdafx before this header"
10:48:59  <_glx_> breezebuilder: But we never included the vcpkg manifest in source tree (we still recommend manual installation of vcpkg packages)
10:53:04  <breezebuilder> The manifest is super simple
10:53:04  <breezebuilder> ```json
10:53:04  <breezebuilder> {
10:53:04  <breezebuilder> "dependencies": [
10:53:04  <breezebuilder> {
10:53:05  <breezebuilder> "name": "breakpad",
10:53:05  <breezebuilder> "platform": "(windows & static) & (x86 | x64)"
10:53:07  <breezebuilder> },
10:53:07  <breezebuilder> â‹®
10:53:09  <breezebuilder> I just excluded it from git. Any particular reason why the standalone is preferred, besides legacy?
10:53:58  <_glx_> Legacy, and you should also add the other deps
10:54:16  <breezebuilder> They're all included, just truncated for discord
10:55:51  <breezebuilder> "Legacy and a general distrust of Microsoft" is fair
10:58:24  <_glx_> It's really legacy, and when VS started to include vcpkg (and forcing it's use even when there's a global install already), it took me some time to understand why cmake suddenly couldn't find any package
10:58:45  <_glx_> So I just unchecked the vcpkg box in installer
11:28:16  *** virtualrandomnumber has joined #openttd
11:28:26  *** virtualrandomnumber has quit IRC
11:58:01  <peter1138> Eddi|zuHause, well it's not just stdafx.
11:58:38  <Eddi|zuHause> yeah, but that kind of thing that might not be obvious to a scanning tool
12:00:33  <peter1138> Or we could fix our headers to include things as they are needed.
12:05:47  <peter1138> Is it lunch?
12:15:51  <peter1138> Well, I've done some heinous things with Markdig.
12:18:23  *** keikoz has joined #openttd
12:39:36  <Eddi|zuHause> well, that's an easy fix to make, just follow the tool making the warnings and add headers until they disappear :p
12:51:37  <peter1138> The tool making the warnings doesn't tell you what includes are missing :)
12:54:49  <_glx_> we have many indirect includes, with stuff needed to be included in .cpp before another include
12:55:26  <_glx_> and we also have some useless includes
12:58:12  <LordAro> it'd be nice if the headers did include everything they need
12:58:22  <LordAro> though i understand why they don't
12:58:30  <LordAro> needs more modules
13:04:30  <DorpsGek> [OpenTTD/OpenTTD] PeterN opened pull request #11351: Fix: Incorrect include path for timers. https://github.com/OpenTTD/OpenTTD/pull/11351
13:06:22  <DorpsGek> [OpenTTD/OpenTTD] LordAro commented on pull request #11351: Fix: Incorrect include path for timers. https://github.com/OpenTTD/OpenTTD/pull/11351#issuecomment-1746841892
13:06:33  <DorpsGek> [OpenTTD/OpenTTD] LordAro approved pull request #11351: Fix: Incorrect include path for timers. https://github.com/OpenTTD/OpenTTD/pull/11351#pullrequestreview-1657489597
13:11:10  <DorpsGek> [OpenTTD/OpenTTD] LordAro commented on pull request #11351: Fix: Incorrect include path for timers. https://github.com/OpenTTD/OpenTTD/pull/11351#issuecomment-1746850340
13:16:31  <LordAro> https://conventionalcomments.org/ i like this
13:54:58  *** Flygon has quit IRC
14:37:32  *** Compu has joined #openttd
15:11:19  <_glx_> so vcpkg manifest mode looks like a good idea, but it's not really usable <https://github.com/glx22/OpenTTD/actions/runs/6407731956/job/17395172248>
15:12:45  <_glx_> I could fix linux and macos it for CI, but for release linux uses a totally different vcpkg setup
15:43:55  *** HerzogDeXtEr has joined #openttd
16:02:21  <DorpsGek> [OpenTTD/OpenTTD] PeterN merged pull request #11351: Fix: Incorrect include path for timers. https://github.com/OpenTTD/OpenTTD/pull/11351
16:15:51  <planetmaker> Nice idea @LordAro - is it usable on Github?
16:42:05  <truebrain> So we now have planetmaker in two realms? (IRC and Discord) scary 😛
16:43:46  <LordAro> why wouldn't it be usable?
17:12:00  *** Extrems has quit IRC
17:19:13  <planetmaker> hehe :)
17:19:22  *** Extrems has joined #openttd
17:31:26  *** gelignite has joined #openttd
17:36:00  *** Wormnest has joined #openttd
17:56:16  *** DorpsGek_vi[1] has joined #openttd
17:58:16  *** breezebuilder has quit IRC
17:58:16  *** kamnet has quit IRC
17:58:16  *** _glx_ has quit IRC
17:58:16  *** alfagamma7 has quit IRC
17:58:16  *** truebrain has quit IRC
17:58:16  *** xarothbrook has quit IRC
17:58:16  *** ahyangyi has quit IRC
17:58:16  *** jfs has quit IRC
17:58:16  *** _pruple has quit IRC
17:58:16  *** michi_cc[d] has quit IRC
17:58:16  *** xplusc has quit IRC
17:58:16  *** DorpsGek_vi has quit IRC
17:58:16  *** andythenorth has quit IRC
17:58:16  *** fairyflossy has quit IRC
17:58:16  *** wensimehrp has quit IRC
17:58:16  *** tehboss has quit IRC
17:58:16  *** brickblock19280 has quit IRC
17:58:16  *** ketsuban[d] has quit IRC
17:58:16  *** robamd64 has quit IRC
17:58:16  *** frosch123 has quit IRC
17:58:16  *** osswix has quit IRC
17:58:16  *** garlic_bread42 has quit IRC
17:58:16  *** _jgr_ has quit IRC
17:58:16  *** talltyler has quit IRC
17:58:16  *** locosage has quit IRC
17:58:40  *** DorpsGek_vi has joined #openttd
18:06:20  *** DorpsGek_vi[1] has quit IRC
18:07:36  <DorpsGek> [OpenTTD/OpenTTD] Sinas128 opened issue #11352: [Bug]: Server adress not fully visible in multiplayer GUI https://github.com/OpenTTD/OpenTTD/issues/11352
18:36:11  <pickpacket> Has that weird exploit where a bunch of buses crowding a few stops would generate copious amounts of money somehow been fixed?
18:38:41  *** frosch123 has joined #openttd
18:38:41  <frosch123> yes, two weeks ago
18:38:49  <frosch123> #11283
18:39:14  <DorpsGek> [OpenTTD/OpenTTD] eints-sync[bot] pushed 1 commits to master https://github.com/OpenTTD/OpenTTD/commit/89acfc7ff9994cb1f1124dcebd02750f2474da70
18:39:15  <DorpsGek>   - Update: Translations from eints (by translators)
18:42:05  *** sinas128 has joined #openttd
18:42:05  <sinas128> I made a bug report
18:42:14  <sinas128> truebrain: the day has come
18:43:55  *** truebrain has joined #openttd
18:43:55  <truebrain> time to leave the server now 😛
18:45:02  *** DorpsGek_vi[1] has joined #openttd
19:15:57  *** Wolf01 has joined #openttd
19:19:28  *** andythenorth has joined #openttd
19:19:28  <andythenorth> moin
19:23:31  <LordAro> eve
19:23:33  <Wolf01> o/
19:32:15  <andythenorth> was it lunch?
19:39:17  <frosch123> previous lunch is closer than next lunch
19:42:02  <andythenorth> I have clearly done something wrong
20:31:15  *** HerzogDeXtEr has quit IRC
21:06:25  *** keikoz has quit IRC
21:09:16  *** nielsm has quit IRC
21:31:54  *** Wolf01 has quit IRC
21:32:12  *** Flygon has joined #openttd
21:41:01  *** gelignite has quit IRC
22:06:04  *** virtualrandomnumber has joined #openttd
22:06:19  *** virtualrandomnumber has quit IRC
22:20:31  *** tokai|noir has joined #openttd
22:20:31  *** ChanServ sets mode: +v tokai|noir
22:25:17  *** _zephyris has joined #openttd
22:25:17  <_zephyris> https://cdn.discordapp.com/attachments/1008473233844097104/1159254945166544916/opengfx2_8.tar?ex=65305b4c&is=651de64c&hm=384ae876879264703f8a89faebbfb05264d99d9429c6f1ca9fc6e29234ca7fbe&
22:25:17  <_zephyris> frosch123: An OpenGFX2 v2.1ish build with (hopefully) fixed parameters, if you'd like to do some testing. Haven't had a chance to test it myself against your PR I'm afraid, so not certain it works!
22:25:44  *** Wormnest has quit IRC
22:25:58  *** Wormnest has joined #openttd
22:27:18  *** tokai has quit IRC
22:38:24  *** _glx_ has joined #openttd
22:38:24  <_glx_> do you need a test build ?
22:57:07  *** menelaos[m] has quit IRC
22:57:07  *** igor[m] has quit IRC
22:57:11  *** leward[m] has quit IRC
22:57:16  *** rudolfs[m] has quit IRC
22:57:18  *** shedidthedog[m] has quit IRC
22:57:19  *** vista_narvas[m] has quit IRC
22:57:19  *** jeremy[m]1 has quit IRC
22:57:21  *** patrick[m]12 has quit IRC
22:57:28  *** EmeraldSnorlax[m] has quit IRC
22:57:31  *** zzy2357[m] has quit IRC
22:57:33  *** Gadg8eer[m] has quit IRC
22:57:36  *** fiddeldibu[m] has quit IRC
22:57:36  *** elliot[m] has quit IRC
22:57:48  *** Farrokh[m] has quit IRC
22:57:48  *** karoline[m] has quit IRC
22:57:48  *** patricia[m]1 has quit IRC
22:57:53  *** jact[m] has quit IRC
22:57:53  *** giords[m] has quit IRC
22:57:55  *** luk3Z[m] has quit IRC
22:57:57  *** thelonelyellipsis[m] has quit IRC
22:58:02  *** Heiki[m] has quit IRC
22:58:03  *** citronbleuv[m] has quit IRC
22:58:05  *** philip[m]123 has quit IRC
23:49:58  *** cjmonagle[m] has joined #openttd
23:50:34  *** enick_57 has joined #openttd

Powered by YARRSTE version: svn-trunk