IRC logs for #openttd on OFTC at 2017-03-27
            
00:06:40 *** Wormnest has quit IRC
00:25:37 <Eddi|zuHause> https://www1.wdr.de/kinder/tv/die-sendung-mit-der-maus/video-vorspann-maus-klingonisch-100.html
00:26:43 *** orudge` has quit IRC
00:27:06 *** orudge` has joined #openttd
00:27:07 *** ChanServ sets mode: +o orudge`
00:34:28 *** ST2 has quit IRC
00:34:35 *** ST2 has joined #openttd
00:58:47 *** Biolunar has quit IRC
01:02:40 *** Gja has quit IRC
01:13:54 <Samu> i'm invoking pathfinder twice :( https://paste.openttdcoop.org/pxmwekzc2
01:14:48 <Samu> typedef CYapfOriginTileT<Types> PfOrigin; // origin provider
01:14:48 <peter1138> shocking
01:15:20 <Samu> i would have to use CYapfOriginTileTwoWayT, but that would require changing a ton of code
01:16:19 *** nekomaster has joined #openttd
01:16:25 <nekomaster> blargh
01:17:36 <Samu> besides, water tracks don't have signals
01:17:59 <Samu> i'd need a slightly different version of CYapfOriginTileTwoWayT
01:18:44 <Samu> and i'm still unsure how to interpret this code
01:18:57 <Samu> i'm surprised I made it this far
01:19:06 <peter1138> to be h onest
01:19:12 <peter1138> nobody really understands the yapf code
01:19:18 <peter1138> not even the author
01:19:35 <Samu> orly
01:19:37 <peter1138> i mean, notice how the code style is totally different to the rest... :p
01:19:51 <peter1138> nobody dare touch it
01:20:42 *** orudge` has quit IRC
01:20:42 <Samu> i see tons of template class, consts and whatever
01:21:03 <Samu> don't really know how it builds up nicely with each other
01:21:06 *** orudge` has joined #openttd
01:21:06 *** ChanServ sets mode: +o orudge`
01:21:13 *** APTX has quit IRC
01:22:14 *** APTX has joined #openttd
01:24:00 <Wolf01> Man... I've just finished to set a custom highlight for locomotive basic
01:24:42 <peter1138> Hmm, just noticed the intro game in TTD is muted
01:25:01 <Samu> oops, i made the wrong copy paste
01:25:02 <Wolf01> Notepad++ is not really the right tool for custom highlights, I had to do some compromises
01:25:49 <Samu> this is what I wanted to paste https://paste.openttdcoop.org/pubn57tm0
01:25:58 *** HerzogDeXtEr1 has joined #openttd
01:26:27 <Samu> line 79 and 80 is invoking the pathfinder twice
01:26:43 <Samu> ideally, i should invoke only 1 pathfinder, which accents 2 origins
01:27:02 <Samu> it wouldn't be repeating some nodes
01:27:16 <Samu> which accepts* 2 origins typo
01:28:35 <Samu> path_found1 is the path that is found on the direction the ship is heading to, path_found2 is the path found starting on the opposite ship direction
01:29:23 <Samu> sometimes pf1 doesn't find a path, but on the reversed direction it does
01:30:02 <Samu> i retrieve the ship depot tile that it finds on pf2, but still let the ship take pf1 path, to maintain expected behaviour
01:30:17 <Wolf01> 280 i$=UPPER$(INKEY$):IF i$<>"Y" AND i$<>"N" THEN 280 <- maybe I'm tired
01:30:21 <Samu> ship doesn't smart up
01:30:38 <Samu> and i still get a depot found
01:31:09 *** FLHerne has quit IRC
01:32:00 <Samu> the correct way to do this would be however with 1 pathfinder, 2 origins, not 2 pathfinders, each with 1 origin
01:32:03 <Samu> halp
01:32:12 *** HerzogDeXtEr has quit IRC
01:33:16 <glx> <Wolf01> Man... I've just finished to set a custom highlight for locomotive basic <-- the amstrad cpc one ?
01:33:24 <Wolf01> Exactly
01:34:10 <glx> hmm missing GOTO on your 280 line I think :)
01:34:21 <Wolf01> Implicit
01:34:35 <Wolf01> It's the condition I can't understand
01:35:08 <glx> it wants "Y" or "N"
01:35:23 <Wolf01> Yes, but it can't be both
01:35:24 <glx> if not it restarts input
01:36:00 <glx> !Y and !N is Y OR N
01:36:17 <glx> well !(Y OR N)
01:36:27 <Wolf01> Then I'm tired
01:36:49 <Wolf01> And the Pirate DeMorgan will come to pull my feets this night
01:37:38 <glx> but yes basic DeMorgan stuff :)
01:37:39 <Wolf01> *-s
01:38:36 <Wolf01> I don't know why but I've seen <> as ==
01:39:09 <glx> == is = in conditions
01:39:28 <glx> (not the best idea at that time)
01:39:38 <Wolf01> Yeah, it doesn't even exists == in loco basic
01:41:26 <glx> but using only <,> and = to write conditions probably simplified the parsing
01:43:01 <Wolf01> BTW, code is unreadable... it seem javascript with inline closures... full of subroutines mixed in the main loop
01:43:44 <glx> size optimisation for a big program ?
01:43:57 <Wolf01> Nah, a 300 lines game
01:44:43 <Wolf01> I'm trying to fix the ocr errors
01:45:02 <glx> anyway basic is easily unreadable when you start to do some complex stuff
01:45:15 <Wolf01> Spaghetti code
01:45:23 <Wolf01> At its finest
01:45:38 <glx> I remember the fun it was to enter lines of data :)
01:46:04 <Wolf01> Eh, I just passed one of the symbol definitions, and I have 2 pages of data at the end
01:47:04 <glx> usually data lines contained z80 asm stuff, but can also be music or graphics
01:47:43 <peter1138> urgh... screen burn
01:48:29 <Wolf01> 820 CLS:LOCATE 1,3:IN~ 6,0 <- here is one error... INK became IN~
01:51:32 <Wolf01> 1090 x=INT(RND*(maxx-minx+1»+minx <- yes, like I won't spot this one
01:52:07 <glx> mode 0 game I guess
01:52:22 <Wolf01> Yeah
01:53:37 <peter1138> BBC BASIC or get out
01:53:43 <Wolf01> Oh dear... FOR ;=1 TO objr... all "i" became ";"
01:55:24 <glx> I hope "j" detection was better
01:55:51 <Wolf01> That seem ok
01:55:54 <glx> else good luck with the usual imbricated i and j loops :)
01:56:11 <Samu> max_search_nodes of 10000 is quite low :(
01:56:19 <Samu> at least for ships
01:56:40 <glx> that's why buoys are recommended for ships
01:56:42 <Samu> on open sea that's like 15 tiles away max radius
01:58:01 <Samu> but when searching for nearest depot, i don't have buoys
01:58:11 <Samu> it's the pathfinder that is looking for it
02:00:28 <Samu> @calc 828 - 802 + 158 - 146
02:00:28 <DorpsGek> Samu: 38
02:00:40 <Samu> well, 38 tiles away then
02:02:30 <Samu> perhaps i could try a mix of 2 different searches
02:02:49 <Samu> first, it tries to Find the closest reachable ship depot
02:03:18 <Samu> if it does not find it, then resort to using the original search, based on distance manhattan
02:04:42 *** iSoSyS has quit IRC
02:05:19 <Samu> would be less cpu intensive in case the ship needs servicing and doesn't find any
02:05:34 <peter1138> Just make them sink.
02:05:50 <Samu> :)
02:06:23 <Samu> 38 is quite short, hmm let me see what the max distance was on the original
02:07:23 <peter1138> dosbox to the rescue
02:09:17 <Samu> maximum_go_to_depot_penalty / YAPF_TILE_LENGTH
02:09:30 <Samu> YAPF_TILE_LENGTH is 100
02:09:57 <Samu> maximum_go_to_depot_penalty is something i can find on config file
02:10:26 <Samu> 2000
02:10:33 <Samu> @calc 2000 / 100
02:10:33 <DorpsGek> Samu: 20
02:10:40 <Samu> orly?
02:10:52 <Samu> well then 38 is higher
02:10:54 <Samu> keks
02:10:59 <Samu> screw it
02:13:11 <Samu> i still need a fallback to the old find method when I manually click the button to send a ship to depot
02:13:26 <Samu> i don't like the "cannot find local depot" error message
02:13:47 <Samu> either this, or increase max node search thingy
02:14:01 <Samu> but I don't know how to increase that
02:15:50 <supermop_home> need a cheap peaty scotch for cocktails
02:16:00 <supermop_home> ardbeg is way too $ here now
02:16:52 <Wolf01> Ok, I seem to have fixed all the errors... today I might try to get it to the emulator
02:17:20 *** JezK has joined #openttd
02:18:05 *** Samu has quit IRC
02:34:54 <Wolf01> 'night
02:34:58 *** Wolf01 has quit IRC
03:16:37 *** orudge` has quit IRC
03:16:45 *** orudge` has joined #openttd
03:16:45 *** ChanServ sets mode: +o orudge`
03:37:05 <nekomaster> damn
03:37:16 <nekomaster> Making sprites takes me way too long
03:40:03 *** Sylf has quit IRC
03:50:07 *** orudge` has quit IRC
03:50:21 *** orudge` has joined #openttd
03:50:21 *** ChanServ sets mode: +o orudge`
04:12:17 *** Sylf has joined #openttd
04:24:55 *** glx has quit IRC
04:34:12 *** orudge` has quit IRC
04:34:14 *** orudge` has joined #openttd
04:34:14 *** ChanServ sets mode: +o orudge`
05:04:24 *** HerzogDeXtEr1 has quit IRC
05:13:06 *** chomwitt has quit IRC
05:23:31 *** smoke_fumus has quit IRC
05:58:31 *** Snail has quit IRC
06:26:34 *** sla_ro|master has joined #openttd
06:30:57 *** Hiddenfunstuff has joined #openttd
06:32:49 *** JezK has quit IRC
06:34:19 *** JezK has joined #openttd
06:43:30 *** tokai has joined #openttd
06:43:30 *** ChanServ sets mode: +v tokai
06:50:22 *** tokai|noir has quit IRC
06:51:37 *** orudge` has quit IRC
06:51:43 *** orudge` has joined #openttd
06:51:44 *** ChanServ sets mode: +o orudge`
07:32:42 *** Darkfirst has quit IRC
07:32:47 *** Darksecond has joined #openttd
07:44:45 *** nekomaster has left #openttd
08:07:04 *** Supercheese has quit IRC
08:14:57 *** Hiddenfunstuff has quit IRC
08:28:18 *** andythenorth has joined #openttd
09:08:37 *** orudge` has quit IRC
09:08:51 *** orudge` has joined #openttd
09:08:51 *** ChanServ sets mode: +o orudge`
09:17:21 *** andythenorth has quit IRC
09:20:38 *** JezK has quit IRC
09:23:47 *** Sova has joined #openttd
09:30:41 *** orudge` has quit IRC
09:31:10 *** orudge` has joined #openttd
09:31:11 *** ChanServ sets mode: +o orudge`
09:44:24 *** sla_ro|master has quit IRC
09:54:27 *** orudge` has quit IRC
09:54:35 *** orudge` has joined #openttd
09:54:35 *** ChanServ sets mode: +o orudge`
10:06:43 *** andythenorth has joined #openttd
10:23:02 *** andythenorth has quit IRC
10:46:06 <peter1138> http://direct.asda.com/LEGO-City---Cargo-Train---60052/000702811,default,pd.html?source=2925&promotype=Social+Traffic&cmpid=afc-_-GEOR-_-awin-_-201465-_%20-generic&cm_mmc=GEOR-aff-_-awin-_-Gratisfaction%20UK-_-201465&awin_aff=201465_Gratisfaction+UK_Gratisfaction%20UK_Social+Traffic&awc=2925_1490604356_892ed239ef0f485d6b016e0a30c8902e
10:46:11 <peter1138> uhm
10:46:17 <peter1138> i don't need a lego cargo train do i?
10:57:24 *** Wolf01 has joined #openttd
10:58:00 <Wolf01> o/
10:58:47 *** Samu has joined #openttd
10:59:04 <peter1138> yes
10:59:17 *** ChanServ sets mode: +v orudge`
10:59:34 <Samu> hi
10:59:34 <Wolf01> Sadly that's not what she said :(
11:00:25 <Wolf01> Mmmh, looking for the CPC emulator I found I still have scout installed...
11:00:42 <Wolf01> What piece of crap
11:08:42 *** andythenorth has joined #openttd
11:09:08 <Wolf01> o/
11:09:52 <Wolf01> Mmmmh, I really don't want to type all the code by hand
11:10:27 <Wolf01> Oh, autotype feature opened a textbox
11:29:14 <Wolf01> Good, only 1 error so far
11:37:00 *** Biolunar has joined #openttd
12:05:56 <Samu> wow, everytime the ship moves from a tile to another, it asks the pathfinder to chose track
12:06:21 <Samu> for the vast majority of time, the path is still the same
12:06:25 <Samu> :(
12:06:40 <andythenorth> ships are slow
12:06:55 <andythenorth> the water tile might have changed
12:07:08 <andythenorth> it’s inefficient eh?
12:07:40 <Samu> i think so
12:09:28 <Samu> i think it should be able to cache the path the first time it computes it
12:10:30 <Samu> the next time it is computing it, it could look at the cache first, see if all the nodes are still valid
12:11:17 <Samu> only if they're not, it would re-ask the pathfinder
12:12:07 <Samu> at least from my observations, that's what I think it should be doing
12:12:22 <Samu> but i'm no real programmer, i could be missing something obvious
12:12:52 <__ln__> https://github.com/luanfujun/deep-photo-styletransfer/blob/master/README.md
12:15:07 *** Sova has quit IRC
12:15:16 <Wolf01> Nice, some buildings look like photoshopped, but sky and lights seem from an hdr photo
12:32:10 <Samu> @calc 12 * 4096 * 4096
12:32:10 <DorpsGek> Samu: 201326592
12:32:21 <Samu> that is many nodes
12:34:15 <Samu> max_search_nodes = 1000000
12:34:21 <Samu> caps at this value :(
12:44:53 <andythenorth> this one is badass https://github.com/luanfujun/deep-photo-styletransfer/blob/master/examples/final_results/best51_t_1000.png
12:49:11 <dlite> Samu: couple of obvious things: If path is not computed at every tile, then the ship should at least check at minimum if the next tile in path is free to be moved to, if not, then compute new path
12:49:55 <dlite> this would lead to inefficient re-pathing if something changes midway, as the ship would first try original path and only then figure out a new, though i admit this is quite rare
12:50:38 <dlite> also, ship could always just check every now and then if the whole path it has is valid, this should be relatively quick compared to running whole pathfinder algorithm
12:51:30 <peter1138> Samu, yeah, that's why ship pathfinding kills performance
12:52:36 <peter1138> It should be possible to cache a path, and invalidate it if water is changed
12:52:51 <Samu> just tested 1000000 nodes, it is not enough to find a ship depot on the opposite corner of a 4096x4096 map :(
12:53:05 <Samu> and it stalls soooo much it's not worth it
12:53:21 <peter1138> this is partly why pbs for trains is not the performance hog that people claim. that reserved path is used instead of pathfinding
12:53:45 <andythenorth> reserved ship paths
12:53:49 <peter1138> could do!
12:54:02 <peter1138> need to stop ships from crashing into each other
12:54:05 <andythenorth> apply rule of the sea
12:54:18 <andythenorth> don’t go on reserved tiles
12:54:21 <andythenorth> problem solved
12:54:25 <peter1138> that might even work :p
12:54:32 <andythenorth> no need for collision detection or crap
12:54:38 <peter1138> just reserve say a dozen tiles ahead
12:54:39 <andythenorth> which is handy when we don’t have ship sizes
12:54:45 <peter1138> when it gets to the end, pathfind again
12:55:05 * andythenorth looks forward to ships going round in circles near an isthums :)
12:55:12 <peter1138> :DD
12:55:21 <andythenorth> how close can a ship follow another ship?
12:57:32 <dlite> implement path-finding as a gpu-shader on OpenCL to take the load out of the poor cpu
12:59:13 <peter1138> yeah no
12:59:58 *** Sova has joined #openttd
13:00:58 <andythenorth> does that make 1-tile canals one way?
13:01:04 <peter1138> andythenorth, hmm, yeah, 12 tiles may be too much, but 2 tiles wouldn't give much benefit.
13:01:11 <andythenorth> ha we could do it like railroad tycoon
13:01:11 <peter1138> andythenorth, yeah it would
13:01:25 <peter1138> how did that do it?
13:01:28 <andythenorth> make it so ships can pass through each other as long as one is stopped
13:01:36 <andythenorth> in RT 3, one train had to yield
13:01:36 <peter1138> ah
13:01:43 <peter1138> reasonable
13:01:46 <andythenorth> so it would unreserve at that point
13:02:05 <peter1138> damn it, i'm at work and now i want to implement this :p
13:02:34 <peter1138> also multistop docks
13:02:37 <peter1138> or rather
13:02:49 <peter1138> place dock tiles the same way as station tiles
13:02:57 <peter1138> and then any water next to a dock tile is dockable
13:03:25 <peter1138> unnecessary of course
13:03:26 <andythenorth> yes
13:03:35 <andythenorth> unnecessary but much better
13:04:35 <peter1138> maybe if the water tile next to the dock tile has a special flag, then it would be better for pathfinding
13:04:38 <peter1138> yes
13:04:44 <peter1138> heck could even just be a station tile itself
13:05:57 <peter1138> someone archive this convo please, for 5 years time when i decide to revisit it
13:06:25 <andythenorth> I’ll put it on the github :P
13:06:39 <andythenorth> https://github.com/andythenorth/NotWater/issues/1
13:07:26 <peter1138> "rivers have a flow direction, more powerful ships go faster upstream"
13:07:41 <peter1138> ^ that's why samu's patches for rivers and locks are a bit weird
13:08:01 <peter1138> i mean, river boats exist
13:08:24 <peter1138> but locks aren't usually used to block a river
13:08:31 <andythenorth> https://github.com/andythenorth/NotWater/issues/1#issuecomment-289422663
13:09:38 <andythenorth> I think samu’s attempt to only generate lockable rivers is good
13:10:14 <peter1138> hmm
13:10:35 <peter1138> and wider rivers, though that didn't work too well in the pics :)
13:10:40 <peter1138> it's a good aim though
13:11:10 <andythenorth> if someone teaches the pathfinder to go diagonally, I’ll draw the sprites
13:11:18 <andythenorth> I did draw some, but I had a rage quit about it
13:11:26 <andythenorth> then deleted them as a kind of door-slam-flounce
13:12:13 <peter1138> ?
13:12:16 <peter1138> oh for rivers
13:12:30 <andythenorth> yeah
13:12:31 <peter1138> http://fuzzle.org/~petern/ottd/halfriver.png
13:12:37 <peter1138> i may have a patch for it
13:12:42 <peter1138> doubt it
13:12:42 <andythenorth> nicely played
13:12:52 <peter1138> that would've been a manually placed one i guess
13:12:57 <andythenorth> I particularly like how the river ignores gravity in that example
13:13:06 <peter1138> yes yes
13:13:21 <peter1138> also the broken graphics on the last slope
13:13:33 <peter1138> although i like the winding bit and the double thick curve
13:13:49 <andythenorth> you’re enlarging the S-bends?
13:13:55 <peter1138> i did there
13:13:58 <andythenorth> like a geography GCSE project
13:14:05 <peter1138> i assume i placed it all by hand
13:14:06 * andythenorth did a lot of river traversing, in wellies
13:14:10 <peter1138> pic is from 2009
13:14:18 <peter1138> heh
13:14:43 <peter1138> http://fuzzle.org/~petern/ottd/half.png
13:14:44 <peter1138> haha
13:15:03 <peter1138> half-size gui sprites
13:15:52 <peter1138> http://fuzzle.org/~petern/ottd/icons.png
13:15:55 <peter1138> don't think that ever made it
13:16:28 <peter1138> why did i add joystick support?
13:17:20 <andythenorth> ugh http://dev.openttdcoop.org/attachments/download/8396/rivers_diagonal.png
13:17:25 <andythenorth> better http://dev.openttdcoop.org/attachments/download/8395/diagonal.png
13:18:58 <peter1138> That one looks shopped
13:19:16 <andythenorth> it is a painting with crayons
13:19:34 <peter1138> wonder if i still have the patch for halftile rivers
13:20:43 <andythenorth> this: http://dev.openttdcoop.org/attachments/download/2148/ugly_river_2.png
13:21:09 <peter1138> Seems not.
13:24:46 <andythenorth> also this http://dev.openttdcoop.org/attachments/download/3179/river_dock.png
13:25:09 <andythenorth> eh this one’s pretty nice though http://dev.openttdcoop.org/attachments/download/5621/dock.png
13:25:22 <peter1138> heh
13:25:26 * andythenorth cba to build shiny stations any more
13:25:29 <peter1138> that's one way to do it
13:25:33 <peter1138> yeah me neither
13:27:45 <peter1138> problem with my dock plan is savegame conversion ;(
13:28:03 <peter1138> hmm, probably not insurmountable
13:28:43 <andythenorth> fork it!
13:28:54 * andythenorth could get boring saying that
13:29:03 <peter1138> fork?
13:29:04 <peter1138> why?
13:29:16 <andythenorth> I have nothing :P
13:30:40 <peter1138> ok, some bits in m3 can be used to store ship path reservation
13:31:53 <peter1138> dunno if the docking part should be MP_WATER or MP_STATION. if it's MP_WATER then things like river/canal state still work.
13:33:15 <andythenorth> it doesn’t need any newgrf crap, right? It’s just a tile;
13:33:26 <andythenorth> or does it need a bouy or something on it?
13:34:12 <peter1138> no it's just a blank water tile that ships stop on
13:34:27 <peter1138> my previous attempts all failed because the dockable tile wasn't actually a thing
13:34:37 <peter1138> so it has to be looked up all the time from neighbouring tiles
13:45:33 <andythenorth> can it show animated seagulls? o_O
14:01:49 <Wolf01> peter1138, that's why I failed with the multitile docks too :(
14:13:28 <Wolf01> frosch is right also, we'll need a generic station type, accessible from every gui, and not just train station
14:13:37 <peter1138> hm
14:13:43 <peter1138> not fussed about gui :D
14:14:02 <peter1138> i had a patch for docks that mostly worked, it was the one that abused roadstops to list the dockable tiles
14:14:25 <peter1138> and each pathfinder call had to iterate the roadstop list to calculate the dockable location
14:14:32 <peter1138> dodgy
14:14:41 <peter1138> animated seagulls. well.
14:15:38 <peter1138> animated segfaults are more likely
14:15:43 *** FLHerne has joined #openttd
14:18:53 <andythenorth> so instead of docks, we get docking points?
14:18:59 <andythenorth> single tile, built on water?
14:19:06 <peter1138> no
14:19:15 * andythenorth was hoping docks would die :D
14:19:24 <andythenorth> dunno why
14:20:46 <peter1138> well that may be possible but not immediately what i'm thinking
14:21:13 <peter1138> docking points are automatically placed at water adjacent to dock tiles
14:21:23 <peter1138> initially that'll be adjacent to the existing dock layout
14:21:34 <peter1138> but could easily be a single tile, or a tile on water
14:22:11 <peter1138> this gives you multiple docking points, without any pathfinder trickery needed to find them
14:24:29 <peter1138> no external arrays as it's on the map
14:24:45 <andythenorth> with a seagull
14:24:47 <andythenorth> :P
14:25:02 <peter1138> MP_SEAGULL
14:25:14 <Wolf01> You could mark those tiles with a buoy or... seagulls
14:25:41 <peter1138> Wolf01, i'm more thinking of them being implicit tiles
14:26:01 <peter1138> but i suppose custom graphics are not impossible
14:27:19 <peter1138> Can I fix broken strings these days?
14:27:54 <Wolf01> Could those tiles allow to be modified at any time? Terraforming, adding new station parts over water
14:28:07 <peter1138> Wolf01, yes they would be treated as water tiles
14:32:08 *** Guest856 is now known as FR^2
14:45:15 *** chomwitt has joined #openttd
14:45:36 *** Snail has joined #openttd
15:04:47 *** Snail has quit IRC
15:06:15 *** sla_ro|master has joined #openttd
15:08:03 <Samu> hmm
15:08:11 <Samu> broken down vehicles still call the pathfinder
15:08:28 <Samu> do they really have to?, i mean they're basically stopped
15:16:02 <peter1138> probably shouldn't if they're stopped
15:20:07 <Wolf01> Mmmh, I should trim my beard :/
15:24:59 <peter1138> nah
15:25:17 <peter1138> it's better looking homeless
15:27:19 *** juzza1 has joined #openttd
15:55:29 *** andythenorth has quit IRC
16:01:13 <Wolf01> Booored
16:02:05 <Wolf01> I should finish that patch for NRT but I don't even know what it should do exactly
16:03:33 <peter1138> merge it
16:03:53 <Wolf01> Nah, it's broken now
16:04:00 <peter1138> oh
16:04:36 <Wolf01> Or at least it does the right thing at the wrong place
16:06:11 <Wolf01> Like... disabling the construction of roadstops and depots because no vehicle is defined for that roadtype, but the roadtype is compatible with others, so vehicles for it exist anyway
16:19:54 <supermop> Wolf01: which patch?
16:20:18 <Wolf01> Rework of check to build roadtype infrastructures
16:20:41 <Wolf01> https://github.com/andythenorth/NotRoadTypes/tree/can-build-vehicle-infrastructure
16:21:16 <Wolf01> https://github.com/andythenorth/NotRoadTypes/blob/can-build-vehicle-infrastructure/src/road.cpp#L258 <- exactly this part
16:41:21 *** orudge` has quit IRC
16:43:20 *** orudge` has joined #openttd
16:43:20 *** ChanServ sets mode: +o orudge`
16:52:48 *** Alberth has joined #openttd
16:52:48 *** ChanServ sets mode: +o Alberth
16:52:58 <Alberth> hi hi
16:53:02 <Wolf01> o/
16:58:02 *** Sova has quit IRC
17:06:35 <Wolf01> Mmmh, shouldn't the check for building infrastructures check on existing vehicles first and then on possible new ones?
17:10:05 *** andythenorth has joined #openttd
17:10:32 <Alberth> o/
17:10:38 <andythenorth> lo
17:11:38 <Alberth> I guess you want both checks, order isn't very relevant, as it's not likely a user will try to overbuild on a vehicle, imho
17:12:15 <Alberth> unless you have other infrastructure in mind than I have :p
17:12:52 <crem> /msg nickserv identify <`5hb6��!8�Z�ͭd=ݔ$�$Etdl*ܲ��o�s�^�/��\���f��d+�Z:=Ŏ�!ǿ��(�W�b�zgh������Kx*�W���(gpg�fҧӓ���<��
17:12:56 <crem> oops
17:13:09 <Wolf01> Nice password
17:13:27 <crem> already changed
17:13:40 <Wolf01> I should start to put arabic chars too
17:14:05 <Wolf01> Maybe even something like... щ(ಥДಥщ)
17:15:54 <Alberth> "please tell password" "I can't, but I can draw it for you"
17:16:00 <Wolf01> :D
17:17:15 <Wolf01> Ok, 55 minutes of work even today and I fixed part of the problem
17:47:37 *** Wormnest has joined #openttd
17:48:34 *** marrenarre has joined #openttd
17:49:14 <marrenarre> Hi. Is there any way to run an AI on a server as a client? What I mean is, can I connect to a server and have the game play for me based on an AI.
17:49:47 <Wolf01> andythenorth, peter1138, about ship pathfinding iirc somebody once tried to make it with super cells like map chunks, let's say 32x32, looking first if the bodies of water were connected so it could reach the destination, then for the exact path it suggested something like pbs but only in the 32x32 cell and just to reach the exit pont
17:51:23 <Wolf01> marrenarre, usually AIs aren't really multiplayer safe, but there might be some exceptions
17:51:41 <marrenarre> Wolf01: Why not?
17:52:01 <Wolf01> Desyncs
17:52:29 <planetmaker> marrenarre, no, AIs are a server-side extension. As client connecting to a server you cannot run an AI which plays for you
17:53:09 <marrenarre> planetmaker: So I would have to modify the game to do that? Is there any way to script my gameplay without modifying the game?
17:53:57 <planetmaker> no, I don't think there is a script interface for the client-side
17:54:25 <peter1138> Wolf01, why would it desync?
17:54:39 <planetmaker> the usual argument against that is "why have the game play itself?"
17:54:50 <planetmaker> desyncs with AI are or should be no issue
17:54:56 <peter1138> Why not?
17:55:18 <peter1138> Might be a nice competition
17:56:11 <peter1138> Damn it, my belt is losing inches but I'm still not losing weight :S
17:56:24 <V453000> sounds like a bug
17:56:26 <V453000> belt losing inches
17:57:02 <Wolf01> <peter1138> Wolf01, why would it desync? <- in fact, it shouldn't
17:58:51 <Wolf01> Eh, when I tried to do some gym I even gained some weight... which I dropped again when I finished the subscription... I have a black hole in my stomach
18:04:20 <marrenarre> planetmaker: Okay, thank you.
18:05:17 *** marrenarre has quit IRC
18:16:21 <Alberth> https://www.tt-forums.net/viewtopic.php?f=33&t=58905&hilit=ship+pathfinding&start=20 <-- Wolf01? / andythenorth / peter1138 ship pathfinding
18:16:57 <Wolf01> Exactly
18:18:11 <Alberth> JPS may outperform it, as that add nodes only at 'interesting' points, and never in the middle of sea
18:19:07 <Alberth> hmm, except for back-navigation, so not entirely never
18:35:03 <andythenorth> hmm
18:35:08 <andythenorth> coffee estate is tricky
18:35:52 <Wolf01> Don't forget a civet farm
18:36:30 <Wolf01> 0.1t/year of coffee production
18:46:53 *** TheMask96 has quit IRC
18:47:29 *** TheMask96 has joined #openttd
18:51:41 <andythenorth> I improved vineyard yesterday http://dev.openttdcoop.org/attachments/download/8394/vineyard.png
18:52:22 <andythenorth> coffee plantation should be like that, but with trees also http://bundles.openttdcoop.org/firs/push/LATEST/docs/html/industries.html#coffee_estate
18:53:06 <andythenorth> https://antoniorussouk.files.wordpress.com/2012/05/blue_mountains.jpg
18:54:03 <andythenorth> coffee bushes + tree cover
18:54:47 <andythenorth> http://cmhike.com/wp-content/uploads/2010/10/001-IMG_7093-CMU-Coffee-Plantation.jpg
18:55:08 *** chomwitt has quit IRC
18:55:14 <Alberth> like the vineyard, but an open space with trees near the house?
18:56:30 <Alberth> more different is perhaps better, darker green for the coffee-'vine' ?
18:57:13 <Alberth> or the colour of the small tree in the coffee-estate
18:57:14 *** glx has joined #openttd
18:57:14 *** ChanServ sets mode: +v glx
19:02:13 <peter1138> http://fuzzle.org/~petern/ottd/fixlangs.diff
19:02:44 <peter1138> ^ adds missing colour codes in translations
19:03:33 <andythenorth> something like this, plus trees http://dev.openttdcoop.org/attachments/download/8398/coffee_estate_improved.png
19:04:12 <supermop> andythenorth: sometimes they use nets
19:04:29 <supermop> for shade
19:10:10 <Alberth> peter1138: bit tricky that, but I guess translators will fix it again if it is wrong
19:12:23 <TrueBrain> planetmaker: tnx for email
19:12:29 <TrueBrain> totally and fully forgot we run Atlassian software
19:12:31 <TrueBrain> grr
19:15:47 <peter1138> Alberth, yeah... using --word-diff at least shows nothing in the translation itself is changed
19:16:18 <peter1138> although it adds "[- -]" and "{+ +}" to show changes
19:16:23 <peter1138> which also makes it harder to grok :p
19:19:39 <andythenorth> http://dev.openttdcoop.org/attachments/download/8399/coffee_estate_improved_2.png
19:19:43 <andythenorth> kind of a wall of green
19:19:47 <andythenorth> looks realistic
19:19:48 <andythenorth> but eh
19:20:11 <andythenorth> basically I like it, but need to try other trees
19:30:33 *** Stimrol has joined #openttd
19:32:13 *** orudge` has quit IRC
19:32:15 *** orudge` has joined #openttd
19:32:15 *** ChanServ sets mode: +o orudge`
19:34:32 *** FLHerne has joined #openttd
19:40:51 *** frosch123 has joined #openttd
19:43:09 *** Stimrol has quit IRC
19:47:26 *** HerzogDeXtEr has joined #openttd
19:59:09 <frosch123> hoi
19:59:58 <TrueBrain> there will not be any nightly today (in case anyone was waiting for one)
20:28:52 <peter1138> ok
20:34:46 *** FLHerne has quit IRC
20:36:24 *** Progman has joined #openttd
20:36:57 <peter1138> ooh it crashed
20:37:56 <TrueBrain> who did?
20:38:37 <peter1138> Couldn't get registers: No such process.
20:38:41 <peter1138> Well, that's less useful ;(
20:48:15 <andythenorth> probably that will do http://dev.openttdcoop.org/attachments/download/8400/coffee_estate_improved_3.png
20:48:31 <andythenorth> or is this one actually better? http://dev.openttdcoop.org/attachments/download/8399/coffee_estate_improved_2.png
20:48:58 <Alberth> a bit too many big trees, not?
20:49:38 <andythenorth> I think so
20:50:02 <Alberth> I like it better than the first attempt
20:50:26 <Alberth> that one is so flat, so similar to the vine yard
20:55:09 *** Pikka has joined #openttd
20:55:32 <peter1138> Well that was weird.
20:55:50 <peter1138> Could not debug it. Could not close debugger. Could not kill openttd.
20:55:56 <peter1138> Could not cleanly reboot...
20:59:06 <peter1138> On the other hand, multiple docks was working for a second ::p
21:01:06 *** orudge` has quit IRC
21:01:14 *** orudge` has joined #openttd
21:01:14 *** ChanServ sets mode: +o orudge`
21:03:27 <andythenorth> Alberth: #2 is too flat?
21:03:30 <andythenorth> lo Pikka
21:03:46 <andythenorth> it appears in same economy as vineyard, so it needs to look different :)
21:04:10 <Pikka> oh hello
21:04:21 <peter1138> peeka
21:04:27 <Pikka> oui
21:05:17 *** JacobD88 has joined #openttd
21:05:34 <andythenorth> Alberth: http://dev.openttdcoop.org/attachments/download/8401/coffee_or_wine.png
21:06:18 <Pikka> whatever happened to notfields
21:07:51 <andythenorth> it’s notdone
21:08:17 <Pikka> notwrong
21:12:45 <Alberth> I meant the "coffee_estate_improved.png" was too flat. Still a lot of trees on this one as well, but maybe it's better, it looks more different that way
21:13:02 <Alberth> o/ pikka
21:13:36 * andythenorth has ideas
21:13:48 <Alberth> oh dear :p
21:14:03 <Alberth> hopefully not notideas :p
21:14:38 <Alberth> some sort of fence could make it look different too
21:14:50 <Alberth> or some earth wall-ish
21:14:57 <andythenorth> hmm fences
21:15:46 <Pikka> hmm ideas
21:17:49 <andythenorth> what ho Pikka ?
21:17:53 <andythenorth> is it things?
21:18:09 <Pikka> possibly
21:19:18 <Pikka> not really sure yet
21:26:37 *** Alberth has left #openttd
21:30:04 *** JacobD88 has quit IRC
21:39:07 *** orudge` has quit IRC
21:39:07 *** HerzogDeXtEr has quit IRC
21:39:07 *** glx has quit IRC
21:39:07 *** zuzak has quit IRC
21:39:07 *** zeknurn has quit IRC
21:39:07 *** xQR has quit IRC
21:39:07 *** murr4y has quit IRC
21:39:07 *** Markk has quit IRC
21:39:07 *** michi_cc has quit IRC
21:39:07 *** Sacro has quit IRC
21:39:07 *** SpComb has quit IRC
21:39:07 *** tycoondemon has quit IRC
21:39:07 *** fonsinchen has quit IRC
21:39:07 *** orudge has quit IRC
21:39:07 *** Darksecond has quit IRC
21:39:07 *** Sylf has quit IRC
21:39:07 *** ST2 has quit IRC
21:39:07 *** Compu has quit IRC
21:39:07 *** sim-al2 has quit IRC
21:39:07 *** supermop_home has quit IRC
21:39:07 *** bwn has quit IRC
21:39:07 *** jinks has quit IRC
21:39:07 *** supermop has quit IRC
21:39:07 *** Smedles_ has quit IRC
21:39:07 *** mikegrb has quit IRC
21:39:07 *** dustinm` has quit IRC
21:39:07 *** Arveen2 has quit IRC
21:39:07 *** Lejving has quit IRC
21:39:07 *** Flygon has quit IRC
21:39:07 *** zeta has quit IRC
21:39:07 *** guru3 has quit IRC
21:39:07 *** Mek has quit IRC
21:39:07 *** FR^2 has quit IRC
21:39:07 *** debdog has quit IRC
21:39:07 *** heffer has quit IRC
21:39:07 *** Keridos has quit IRC
21:39:07 *** grossing has quit IRC
21:39:07 *** m1cr0man has quit IRC
21:39:07 *** ZirconiumX has quit IRC
21:39:07 *** __ln__ has quit IRC
21:39:07 *** Antheus has quit IRC
21:39:07 *** ABCRic has quit IRC
21:39:07 *** dpk has quit IRC
21:39:07 *** zwamkat has quit IRC
21:39:07 *** berndj has quit IRC
21:39:07 *** Osai has quit IRC
21:39:07 *** Sheogorath has quit IRC
21:39:07 *** luaduck has quit IRC
21:39:07 *** peter1138 has quit IRC
21:39:07 *** XeryusTC has quit IRC
21:39:08 *** TrueBrain-Bot has quit IRC
21:39:08 *** Taede has quit IRC
21:39:08 *** Yexo has quit IRC
21:39:08 *** Ammler has quit IRC
21:39:08 *** planetmaker has quit IRC
21:39:08 *** KenjiE20 has quit IRC
21:39:08 *** Webster has quit IRC
21:39:08 *** cHawk has quit IRC
21:39:08 *** DDR has quit IRC
21:39:08 *** innocenat has quit IRC
21:39:08 *** _dp_ has quit IRC
21:39:08 *** greeter has quit IRC
21:39:08 *** Tharbakim has quit IRC
21:39:08 *** Vadtec has quit IRC
21:39:08 *** goodger has quit IRC
21:39:08 *** Warrigal has quit IRC
21:39:08 *** Extrems has quit IRC
21:39:08 *** dvim has quit IRC
21:39:08 *** techmagus has quit IRC
21:39:08 *** argoneus has quit IRC
21:39:08 *** blathijs has quit IRC
21:39:08 *** Pikka has quit IRC
21:39:08 *** Maarten has quit IRC
21:39:08 *** efess has quit IRC
21:39:08 *** davidstrauss_ has quit IRC
21:39:08 *** Ttech has quit IRC
21:39:08 *** ccfreak2k has quit IRC
21:39:08 *** UD98 has quit IRC
21:39:08 *** Speedy has quit IRC
21:39:08 *** TheIJ has quit IRC
21:39:08 *** Mazur has quit IRC
21:39:08 *** Progman has quit IRC
21:39:08 *** andythenorth has quit IRC
21:39:08 *** juzza1 has quit IRC
21:39:08 *** Biolunar has quit IRC
21:39:08 *** Samu has quit IRC
21:39:08 *** Wolf01 has quit IRC
21:39:08 *** APTX has quit IRC
21:39:08 *** Milek7 has quit IRC
21:39:08 *** ToBeFree has quit IRC
21:39:08 *** funnel has quit IRC
21:39:08 *** dlite has quit IRC
21:39:08 *** kais58 has quit IRC
21:39:08 *** rellig has quit IRC
21:39:08 *** jonty-comp has quit IRC
21:40:13 *** mikegrb has joined #openttd
21:40:13 *** Smedles_ has joined #openttd
21:40:13 *** dustinm` has joined #openttd
21:40:13 *** supermop has joined #openttd
21:40:13 *** jinks has joined #openttd
21:40:13 *** bwn has joined #openttd
21:40:13 *** supermop_home has joined #openttd
21:40:13 *** sim-al2 has joined #openttd
21:40:13 *** Compu has joined #openttd
21:40:13 *** ST2 has joined #openttd
21:40:13 *** Sylf has joined #openttd
21:40:13 *** Darksecond has joined #openttd
21:40:13 *** jonty-comp has joined #openttd
21:40:13 *** rellig has joined #openttd
21:40:13 *** Mazur has joined #openttd
21:40:13 *** UD98 has joined #openttd
21:40:13 *** Speedy has joined #openttd
21:40:13 *** ccfreak2k has joined #openttd
21:40:13 *** TheIJ has joined #openttd
21:40:13 *** Extrems has joined #openttd
21:40:13 *** Warrigal has joined #openttd
21:40:13 *** argoneus has joined #openttd
21:40:13 *** goodger has joined #openttd
21:40:13 *** blathijs has joined #openttd
21:40:13 *** techmagus has joined #openttd
21:40:13 *** dvim has joined #openttd
21:40:13 *** Vadtec has joined #openttd
21:40:13 *** Ttech has joined #openttd
21:40:13 *** kais58 has joined #openttd
21:40:13 *** dlite has joined #openttd
21:40:13 *** funnel has joined #openttd
21:40:13 *** Tharbakim has joined #openttd
21:40:13 *** davidstrauss_ has joined #openttd
21:40:13 *** greeter has joined #openttd
21:40:13 *** _dp_ has joined #openttd
21:40:13 *** innocenat has joined #openttd
21:40:13 *** DDR has joined #openttd
21:40:13 *** ToBeFree has joined #openttd
21:40:13 *** efess has joined #openttd
21:40:13 *** Maarten has joined #openttd
21:40:13 *** Milek7 has joined #openttd
21:40:13 *** cHawk has joined #openttd
21:40:13 *** APTX has joined #openttd
21:40:13 *** Wolf01 has joined #openttd
21:40:13 *** Samu has joined #openttd
21:40:13 *** Biolunar has joined #openttd
21:40:13 *** juzza1 has joined #openttd
21:40:13 *** andythenorth has joined #openttd
21:40:13 *** Progman has joined #openttd
21:40:13 *** Pikka has joined #openttd
21:40:14 *** orudge` has joined #openttd
21:40:14 *** HerzogDeXtEr has joined #openttd
21:40:14 *** glx has joined #openttd
21:40:14 *** zeknurn has joined #openttd
21:40:14 *** tycoondemon has joined #openttd
21:40:14 *** michi_cc has joined #openttd
21:40:14 *** Markk has joined #openttd
21:40:14 *** fonsinchen has joined #openttd
21:40:14 *** orudge has joined #openttd
21:40:14 *** coulomb.oftc.net sets mode: +ovvo orudge` glx michi_cc orudge
21:40:14 *** xQR has joined #openttd
21:40:14 *** SpComb has joined #openttd
21:40:14 *** zuzak has joined #openttd
21:40:14 *** murr4y has joined #openttd
21:40:14 *** Sacro has joined #openttd
21:40:14 *** coulomb.oftc.net sets mode: +v orudge
21:40:24 *** Arveen2 has joined #openttd
21:40:24 *** Lejving has joined #openttd
21:40:24 *** Flygon has joined #openttd
21:40:24 *** zeta has joined #openttd
21:40:25 *** guru3 has joined #openttd
21:40:25 *** Mek has joined #openttd
21:40:25 *** FR^2 has joined #openttd
21:40:25 *** debdog has joined #openttd
21:40:25 *** heffer has joined #openttd
21:40:25 *** Keridos has joined #openttd
21:40:25 *** grossing has joined #openttd
21:40:25 *** m1cr0man has joined #openttd
21:40:25 *** ZirconiumX has joined #openttd
21:40:25 *** zwamkat has joined #openttd
21:40:25 *** Ammler has joined #openttd
21:40:25 *** Sheogorath has joined #openttd
21:40:25 *** peter1138 has joined #openttd
21:40:25 *** __ln__ has joined #openttd
21:40:25 *** TrueBrain-Bot has joined #openttd
21:40:25 *** KenjiE20 has joined #openttd
21:40:25 *** Antheus has joined #openttd
21:40:25 *** planetmaker has joined #openttd
21:40:25 *** liquid.oftc.net sets mode: +ovov peter1138 peter1138 planetmaker planetmaker
21:40:25 *** berndj has joined #openttd
21:40:25 *** Taede has joined #openttd
21:40:25 *** Webster has joined #openttd
21:40:25 *** dpk has joined #openttd
21:40:25 *** Yexo has joined #openttd
21:40:25 *** ABCRic has joined #openttd
21:40:25 *** luaduck has joined #openttd
21:40:25 *** XeryusTC has joined #openttd
21:40:25 *** Osai has joined #openttd
21:42:24 <peter1138> netsplit eh
21:42:55 <andythenorth> I blame the seagulls https://www.tt-forums.net/viewtopic.php?p=1147459#p1147459
21:42:58 *** nekomaster has joined #openttd
21:43:04 <nekomaster> Bonjour!
21:43:15 *** Osai has quit IRC
21:43:15 *** ABCRic has quit IRC
21:43:15 *** Yexo has quit IRC
21:43:15 *** dpk has quit IRC
21:43:15 *** TrueBrain-Bot has quit IRC
21:43:15 *** __ln__ has quit IRC
21:43:15 *** zwamkat has quit IRC
21:43:15 *** ZirconiumX has quit IRC
21:43:15 *** m1cr0man has quit IRC
21:43:15 *** debdog has quit IRC
21:43:15 *** Flygon has quit IRC
21:43:15 *** Arveen2 has quit IRC
21:43:15 *** Mek has quit IRC
21:43:15 *** Sheogorath has quit IRC
21:43:15 *** Keridos has quit IRC
21:43:15 *** heffer has quit IRC
21:43:15 *** XeryusTC has quit IRC
21:43:15 *** Webster has quit IRC
21:43:15 *** KenjiE20 has quit IRC
21:43:15 *** Ammler has quit IRC
21:43:15 *** berndj has quit IRC
21:43:15 *** luaduck has quit IRC
21:43:15 *** planetmaker has quit IRC
21:43:15 *** zeta has quit IRC
21:43:15 *** Antheus has quit IRC
21:43:15 *** Taede has quit IRC
21:43:15 *** peter1138 has quit IRC
21:43:15 *** grossing has quit IRC
21:43:15 *** FR^2 has quit IRC
21:43:15 *** guru3 has quit IRC
21:43:15 *** Lejving has quit IRC
21:43:15 *** zuzak has quit IRC
21:43:15 *** zeknurn has quit IRC
21:43:15 *** HerzogDeXtEr has quit IRC
21:43:15 *** xQR has quit IRC
21:43:15 *** murr4y has quit IRC
21:43:15 *** Markk has quit IRC
21:43:15 *** michi_cc has quit IRC
21:43:15 *** Sacro has quit IRC
21:43:15 *** SpComb has quit IRC
21:43:15 *** tycoondemon has quit IRC
21:43:15 *** fonsinchen has quit IRC
21:43:15 *** orudge has quit IRC
21:43:15 *** orudge` has quit IRC
21:43:15 *** glx has quit IRC
21:43:15 *** nekomaster has quit IRC
21:43:15 *** Darksecond has quit IRC
21:43:15 *** ST2 has quit IRC
21:43:15 *** Smedles_ has quit IRC
21:43:16 *** jinks has quit IRC
21:43:16 *** mikegrb has quit IRC
21:43:16 *** supermop_home has quit IRC
21:43:16 *** supermop has quit IRC
21:43:16 *** dustinm` has quit IRC
21:43:16 *** Sylf has quit IRC
21:43:16 *** Compu has quit IRC
21:43:16 *** bwn has quit IRC
21:43:16 *** sim-al2 has quit IRC
21:43:16 *** DDR has quit IRC
21:43:16 *** Vadtec has quit IRC
21:43:16 *** goodger has quit IRC
21:43:16 *** Warrigal has quit IRC
21:43:16 *** Extrems has quit IRC
21:43:16 *** innocenat has quit IRC
21:43:16 *** argoneus has quit IRC
21:43:16 *** _dp_ has quit IRC
21:43:16 *** cHawk has quit IRC
21:43:16 *** techmagus has quit IRC
21:43:16 *** dvim has quit IRC
21:43:16 *** greeter has quit IRC
21:43:16 *** blathijs has quit IRC
21:43:16 *** Tharbakim has quit IRC
21:43:16 *** Pikka has quit IRC
21:43:16 *** davidstrauss_ has quit IRC
21:43:16 *** TheIJ has quit IRC
21:43:16 *** Maarten has quit IRC
21:43:16 *** ccfreak2k has quit IRC
21:43:16 *** UD98 has quit IRC
21:43:16 *** Ttech has quit IRC
21:43:16 *** Speedy has quit IRC
21:43:16 *** Mazur has quit IRC
21:43:16 *** efess has quit IRC
21:43:16 *** andythenorth has quit IRC
21:43:16 *** Samu has quit IRC
21:43:16 *** Wolf01 has quit IRC
21:43:16 *** dlite has quit IRC
21:43:16 *** kais58 has quit IRC
21:43:16 *** rellig has quit IRC
21:43:16 *** Biolunar has quit IRC
21:43:16 *** Milek7 has quit IRC
21:43:16 *** ToBeFree has quit IRC
21:43:16 *** APTX has quit IRC
21:43:16 *** jonty-comp has quit IRC
21:43:16 *** juzza1 has quit IRC
21:43:16 *** Progman has quit IRC
21:43:16 *** funnel has quit IRC
21:44:15 *** mikegrb has joined #openttd
21:44:15 *** Smedles_ has joined #openttd
21:44:15 *** dustinm` has joined #openttd
21:44:15 *** supermop has joined #openttd
21:44:15 *** jinks has joined #openttd
21:44:15 *** bwn has joined #openttd
21:44:15 *** supermop_home has joined #openttd
21:44:15 *** sim-al2 has joined #openttd
21:44:15 *** Compu has joined #openttd
21:44:15 *** ST2 has joined #openttd
21:44:15 *** Sylf has joined #openttd
21:44:15 *** Darksecond has joined #openttd
21:44:15 *** nekomaster has joined #openttd
21:44:15 *** Sacro has joined #openttd
21:44:15 *** murr4y has joined #openttd
21:44:15 *** zuzak has joined #openttd
21:44:15 *** SpComb has joined #openttd
21:44:15 *** xQR has joined #openttd
21:44:15 *** orudge has joined #openttd
21:44:15 *** fonsinchen has joined #openttd
21:44:15 *** Markk has joined #openttd
21:44:15 *** michi_cc has joined #openttd
21:44:15 *** tycoondemon has joined #openttd
21:44:15 *** zeknurn has joined #openttd
21:44:15 *** glx has joined #openttd
21:44:15 *** magnet.oftc.net sets mode: +ovvv orudge orudge michi_cc glx
21:44:15 *** HerzogDeXtEr has joined #openttd
21:44:15 *** orudge` has joined #openttd
21:44:15 *** Pikka has joined #openttd
21:44:15 *** Progman has joined #openttd
21:44:15 *** andythenorth has joined #openttd
21:44:15 *** juzza1 has joined #openttd
21:44:15 *** Biolunar has joined #openttd
21:44:15 *** Samu has joined #openttd
21:44:15 *** Wolf01 has joined #openttd
21:44:15 *** APTX has joined #openttd
21:44:15 *** cHawk has joined #openttd
21:44:15 *** Milek7 has joined #openttd
21:44:15 *** Maarten has joined #openttd
21:44:15 *** efess has joined #openttd
21:44:15 *** ToBeFree has joined #openttd
21:44:15 *** DDR has joined #openttd
21:44:15 *** innocenat has joined #openttd
21:44:15 *** _dp_ has joined #openttd
21:44:15 *** greeter has joined #openttd
21:44:15 *** davidstrauss_ has joined #openttd
21:44:15 *** Tharbakim has joined #openttd
21:44:15 *** magnet.oftc.net sets mode: +o orudge`
21:44:15 *** funnel has joined #openttd
21:44:15 *** dlite has joined #openttd
21:44:15 *** kais58 has joined #openttd
21:44:15 *** Ttech has joined #openttd
21:44:15 *** Vadtec has joined #openttd
21:44:15 *** dvim has joined #openttd
21:44:15 *** techmagus has joined #openttd
21:44:15 *** blathijs has joined #openttd
21:44:15 *** goodger has joined #openttd
21:44:15 *** argoneus has joined #openttd
21:44:16 *** Warrigal has joined #openttd
21:44:16 *** Extrems has joined #openttd
21:44:16 *** TheIJ has joined #openttd
21:44:16 *** ccfreak2k has joined #openttd
21:44:16 *** Speedy has joined #openttd
21:44:16 *** UD98 has joined #openttd
21:44:16 *** Mazur has joined #openttd
21:44:16 *** rellig has joined #openttd
21:44:16 *** jonty-comp has joined #openttd
21:44:16 <nekomaster> What?
21:44:16 <andythenorth> you broke the internet nekomaster
21:44:19 *** Arveen2 has joined #openttd
21:44:19 *** Lejving has joined #openttd
21:44:19 *** Flygon has joined #openttd
21:44:19 *** zeta has joined #openttd
21:44:19 *** guru3 has joined #openttd
21:44:19 *** Mek has joined #openttd
21:44:19 *** FR^2 has joined #openttd
21:44:19 *** debdog has joined #openttd
21:44:19 *** heffer has joined #openttd
21:44:19 *** Keridos has joined #openttd
21:44:19 *** grossing has joined #openttd
21:44:19 *** m1cr0man has joined #openttd
21:44:19 *** ZirconiumX has joined #openttd
21:44:19 *** zwamkat has joined #openttd
21:44:19 *** Ammler has joined #openttd
21:44:19 *** Sheogorath has joined #openttd
21:44:19 *** peter1138 has joined #openttd
21:44:19 *** __ln__ has joined #openttd
21:44:19 *** TrueBrain-Bot has joined #openttd
21:44:19 *** KenjiE20 has joined #openttd
21:44:19 *** Antheus has joined #openttd
21:44:19 *** planetmaker has joined #openttd
21:44:19 *** liquid.oftc.net sets mode: +ovov peter1138 peter1138 planetmaker planetmaker
21:44:19 *** berndj has joined #openttd
21:44:19 *** Taede has joined #openttd
21:44:19 *** Webster has joined #openttd
21:44:19 *** dpk has joined #openttd
21:44:19 *** Yexo has joined #openttd
21:44:19 *** ABCRic has joined #openttd
21:44:19 *** luaduck has joined #openttd
21:44:19 *** XeryusTC has joined #openttd
21:44:19 *** Osai has joined #openttd
21:44:23 *** nekomaster has quit IRC
21:44:23 *** Darksecond has quit IRC
21:44:23 *** Sylf has quit IRC
21:44:23 *** supermop_home has quit IRC
21:44:23 *** jinks has quit IRC
21:44:23 *** supermop has quit IRC
21:44:23 *** Smedles_ has quit IRC
21:44:23 *** ST2 has quit IRC
21:44:23 *** Compu has quit IRC
21:44:23 *** sim-al2 has quit IRC
21:44:23 *** bwn has quit IRC
21:44:23 *** dustinm` has quit IRC
21:44:23 *** mikegrb has quit IRC
21:44:27 <peter1138> ...
21:44:34 <peter1138> MP_SEAGULLS see
21:45:36 *** nekomaster has joined #openttd
21:45:36 *** Darksecond has joined #openttd
21:45:36 *** Sylf has joined #openttd
21:45:36 *** ST2 has joined #openttd
21:45:36 *** Compu has joined #openttd
21:45:36 *** sim-al2 has joined #openttd
21:45:36 *** supermop_home has joined #openttd
21:45:36 *** bwn has joined #openttd
21:45:36 *** jinks has joined #openttd
21:45:36 *** supermop has joined #openttd
21:45:36 *** mikegrb has joined #openttd
21:45:36 *** Smedles_ has joined #openttd
21:45:36 *** dustinm` has joined #openttd
21:45:38 *** Smedles_ has quit IRC
21:45:38 *** ST2 has quit IRC
21:45:38 *** Darksecond has quit IRC
21:45:38 *** nekomaster has quit IRC
21:45:38 *** supermop_home has quit IRC
21:45:38 *** jinks has quit IRC
21:45:38 *** bwn has quit IRC
21:45:38 *** Compu has quit IRC
21:45:38 *** dustinm` has quit IRC
21:45:38 *** mikegrb has quit IRC
21:45:38 *** sim-al2 has quit IRC
21:45:38 *** supermop has quit IRC
21:45:38 *** Sylf has quit IRC
21:46:05 <andythenorth> oh these are the funny 1 tile docks https://www.tt-forums.net/viewtopic.php?f=47&t=75089&p=1174700&hilit=seagull#p1174700
21:46:12 <andythenorth> or some kind of object trickery
21:46:17 *** bwn has joined #openttd
21:46:21 <andythenorth> beyond my understanding :P
21:46:46 *** HerzogDeXtEr has quit IRC
21:46:46 *** zeknurn has quit IRC
21:46:46 *** tycoondemon has quit IRC
21:46:46 *** Markk has quit IRC
21:46:46 *** xQR has quit IRC
21:46:46 *** SpComb has quit IRC
21:46:46 *** zuzak has quit IRC
21:46:46 *** murr4y has quit IRC
21:46:46 *** fonsinchen has quit IRC
21:46:46 *** Sacro has quit IRC
21:46:46 *** orudge` has quit IRC
21:46:46 *** orudge has quit IRC
21:46:46 *** glx has quit IRC
21:46:46 *** michi_cc has quit IRC
21:46:46 *** Osai has quit IRC
21:46:46 *** ABCRic has quit IRC
21:46:46 *** Yexo has quit IRC
21:46:46 *** dpk has quit IRC
21:46:46 *** TrueBrain-Bot has quit IRC
21:46:46 *** __ln__ has quit IRC
21:46:46 *** zwamkat has quit IRC
21:46:46 *** ZirconiumX has quit IRC
21:46:46 *** m1cr0man has quit IRC
21:46:46 *** debdog has quit IRC
21:46:46 *** Flygon has quit IRC
21:46:46 *** Arveen2 has quit IRC
21:46:46 *** Mek has quit IRC
21:46:46 *** Sheogorath has quit IRC
21:46:46 *** Keridos has quit IRC
21:46:46 *** heffer has quit IRC
21:46:46 *** XeryusTC has quit IRC
21:46:46 *** Webster has quit IRC
21:46:46 *** KenjiE20 has quit IRC
21:46:46 *** Ammler has quit IRC
21:46:46 *** berndj has quit IRC
21:46:46 *** luaduck has quit IRC
21:46:46 *** planetmaker has quit IRC
21:46:46 *** zeta has quit IRC
21:46:46 *** Antheus has quit IRC
21:46:46 *** Taede has quit IRC
21:46:46 *** peter1138 has quit IRC
21:46:46 *** grossing has quit IRC
21:46:46 *** FR^2 has quit IRC
21:46:46 *** guru3 has quit IRC
21:46:46 *** Lejving has quit IRC
21:46:46 *** bwn has quit IRC
21:46:46 *** Warrigal has quit IRC
21:46:46 *** goodger has quit IRC
21:46:46 *** Vadtec has quit IRC
21:46:46 *** greeter has quit IRC
21:46:46 *** _dp_ has quit IRC
21:46:46 *** DDR has quit IRC
21:46:46 *** Extrems has quit IRC
21:46:46 *** innocenat has quit IRC
21:46:46 *** dvim has quit IRC
21:46:46 *** cHawk has quit IRC
21:46:46 *** argoneus has quit IRC
21:46:46 *** techmagus has quit IRC
21:46:46 *** Tharbakim has quit IRC
21:46:46 *** blathijs has quit IRC
21:46:46 *** Mazur has quit IRC
21:46:46 *** ccfreak2k has quit IRC
21:46:46 *** TheIJ has quit IRC
21:46:46 *** Maarten has quit IRC
21:46:46 *** Pikka has quit IRC
21:46:46 *** davidstrauss_ has quit IRC
21:46:46 *** efess has quit IRC
21:46:46 *** UD98 has quit IRC
21:46:46 *** Speedy has quit IRC
21:46:46 *** Ttech has quit IRC
21:46:46 *** jonty-comp has quit IRC
21:46:46 *** rellig has quit IRC
21:46:46 *** kais58 has quit IRC
21:46:46 *** dlite has quit IRC
21:46:46 *** Milek7 has quit IRC
21:46:46 *** Wolf01 has quit IRC
21:46:46 *** Samu has quit IRC
21:46:46 *** Biolunar has quit IRC
21:46:46 *** juzza1 has quit IRC
21:46:46 *** andythenorth has quit IRC
21:46:46 *** Progman has quit IRC
21:46:46 *** APTX has quit IRC
21:46:46 *** funnel has quit IRC
21:46:46 *** ToBeFree has quit IRC
21:47:48 *** Mazur has joined #openttd
21:47:48 *** UD98 has joined #openttd
21:47:48 *** Speedy has joined #openttd
21:47:48 *** ccfreak2k has joined #openttd
21:47:48 *** TheIJ has joined #openttd
21:47:48 *** Extrems has joined #openttd
21:47:48 *** Warrigal has joined #openttd
21:47:48 *** argoneus has joined #openttd
21:47:48 *** goodger has joined #openttd
21:47:48 *** blathijs has joined #openttd
21:47:48 *** techmagus has joined #openttd
21:47:48 *** dvim has joined #openttd
21:47:48 *** Vadtec has joined #openttd
21:47:48 *** Ttech has joined #openttd
21:47:48 *** Tharbakim has joined #openttd
21:47:48 *** davidstrauss_ has joined #openttd
21:47:48 *** greeter has joined #openttd
21:47:48 *** _dp_ has joined #openttd
21:47:48 *** innocenat has joined #openttd
21:47:48 *** DDR has joined #openttd
21:47:48 *** efess has joined #openttd
21:47:48 *** Maarten has joined #openttd
21:47:48 *** cHawk has joined #openttd
21:47:48 *** Pikka has joined #openttd
21:47:48 *** bwn has joined #openttd
21:47:48 *** Arveen2 has joined #openttd
21:47:48 *** Lejving has joined #openttd
21:47:48 *** Flygon has joined #openttd
21:47:48 *** zeta has joined #openttd
21:47:48 *** guru3 has joined #openttd
21:47:48 *** Mek has joined #openttd
21:47:48 *** FR^2 has joined #openttd
21:47:48 *** debdog has joined #openttd
21:47:48 *** heffer has joined #openttd
21:47:48 *** Keridos has joined #openttd
21:47:48 *** grossing has joined #openttd
21:47:48 *** m1cr0man has joined #openttd
21:47:48 *** ZirconiumX has joined #openttd
21:47:48 *** zwamkat has joined #openttd
21:47:48 *** Ammler has joined #openttd
21:47:48 *** Sheogorath has joined #openttd
21:47:48 *** peter1138 has joined #openttd
21:47:48 *** __ln__ has joined #openttd
21:47:48 *** TrueBrain-Bot has joined #openttd
21:47:48 *** KenjiE20 has joined #openttd
21:47:48 *** Antheus has joined #openttd
21:47:48 *** magnet.oftc.net sets mode: +ov peter1138 peter1138
21:47:48 *** planetmaker has joined #openttd
21:47:48 *** berndj has joined #openttd
21:47:48 *** Taede has joined #openttd
21:47:48 *** Webster has joined #openttd
21:47:48 *** dpk has joined #openttd
21:47:48 *** Yexo has joined #openttd
21:47:48 *** ABCRic has joined #openttd
21:47:48 *** luaduck has joined #openttd
21:47:48 *** XeryusTC has joined #openttd
21:47:48 *** Osai has joined #openttd
21:47:48 *** nekomaster has joined #openttd
21:47:48 *** Darksecond has joined #openttd
21:47:49 *** Sylf has joined #openttd
21:47:49 *** ST2 has joined #openttd
21:47:49 *** Compu has joined #openttd
21:47:49 *** sim-al2 has joined #openttd
21:47:49 *** supermop_home has joined #openttd
21:47:49 *** jinks has joined #openttd
21:47:49 *** supermop has joined #openttd
21:47:49 *** mikegrb has joined #openttd
21:47:49 *** Smedles_ has joined #openttd
21:47:49 *** dustinm` has joined #openttd
21:47:49 *** magnet.oftc.net sets mode: +ov planetmaker planetmaker
21:47:54 *** Progman has joined #openttd
21:47:54 *** andythenorth has joined #openttd
21:47:54 *** juzza1 has joined #openttd
21:47:54 *** Biolunar has joined #openttd
21:47:54 *** Samu has joined #openttd
21:47:54 *** Wolf01 has joined #openttd
21:47:54 *** APTX has joined #openttd
21:47:54 *** Milek7 has joined #openttd
21:47:54 *** ToBeFree has joined #openttd
21:47:54 *** funnel has joined #openttd
21:47:54 *** dlite has joined #openttd
21:47:54 *** kais58 has joined #openttd
21:47:54 *** rellig has joined #openttd
21:47:54 *** jonty-comp has joined #openttd
21:48:00 *** orudge` has joined #openttd
21:48:00 *** HerzogDeXtEr has joined #openttd
21:48:00 *** glx has joined #openttd
21:48:00 *** zeknurn has joined #openttd
21:48:00 *** tycoondemon has joined #openttd
21:48:00 *** michi_cc has joined #openttd
21:48:00 *** Markk has joined #openttd
21:48:00 *** fonsinchen has joined #openttd
21:48:00 *** orudge has joined #openttd
21:48:00 *** coulomb.oftc.net sets mode: +ovvo orudge` glx michi_cc orudge
21:48:00 *** xQR has joined #openttd
21:48:00 *** SpComb has joined #openttd
21:48:00 *** zuzak has joined #openttd
21:48:00 *** murr4y has joined #openttd
21:48:00 *** Sacro has joined #openttd
21:48:00 *** coulomb.oftc.net sets mode: +v orudge
21:48:53 *** Pikka has quit IRC
21:49:28 *** zuzak has quit IRC
21:49:28 *** zeknurn has quit IRC
21:49:28 *** HerzogDeXtEr has quit IRC
21:49:28 *** xQR has quit IRC
21:49:28 *** murr4y has quit IRC
21:49:28 *** Markk has quit IRC
21:49:28 *** michi_cc has quit IRC
21:49:28 *** Sacro has quit IRC
21:49:28 *** SpComb has quit IRC
21:49:28 *** tycoondemon has quit IRC
21:49:28 *** fonsinchen has quit IRC
21:49:28 *** orudge has quit IRC
21:49:28 *** orudge` has quit IRC
21:49:28 *** glx has quit IRC
21:49:28 *** rellig has quit IRC
21:49:28 *** kais58 has quit IRC
21:49:28 *** dlite has quit IRC
21:49:28 *** Wolf01 has quit IRC
21:49:28 *** Samu has quit IRC
21:49:28 *** andythenorth has quit IRC
21:49:28 *** Biolunar has quit IRC
21:49:28 *** Milek7 has quit IRC
21:49:28 *** APTX has quit IRC
21:49:28 *** jonty-comp has quit IRC
21:49:28 *** juzza1 has quit IRC
21:49:28 *** Progman has quit IRC
21:49:28 *** funnel has quit IRC
21:49:28 *** ToBeFree has quit IRC
21:49:28 *** DDR has quit IRC
21:49:28 *** _dp_ has quit IRC
21:49:28 *** greeter has quit IRC
21:49:28 *** Vadtec has quit IRC
21:49:28 *** goodger has quit IRC
21:49:28 *** Warrigal has quit IRC
21:49:28 *** Extrems has quit IRC
21:49:28 *** innocenat has quit IRC
21:49:28 *** dvim has quit IRC
21:49:28 *** cHawk has quit IRC
21:49:28 *** techmagus has quit IRC
21:49:28 *** argoneus has quit IRC
21:49:28 *** Tharbakim has quit IRC
21:49:28 *** bwn has quit IRC
21:49:28 *** blathijs has quit IRC
21:49:28 *** Maarten has quit IRC
21:49:28 *** TheIJ has quit IRC
21:49:28 *** ccfreak2k has quit IRC
21:49:28 *** Mazur has quit IRC
21:49:28 *** davidstrauss_ has quit IRC
21:49:28 *** efess has quit IRC
21:49:28 *** UD98 has quit IRC
21:49:28 *** Speedy has quit IRC
21:49:28 *** Ttech has quit IRC
21:49:28 *** Smedles_ has quit IRC
21:49:28 *** supermop has quit IRC
21:49:28 *** jinks has quit IRC
21:49:28 *** supermop_home has quit IRC
21:49:28 *** Sylf has quit IRC
21:49:28 *** Darksecond has quit IRC
21:49:28 *** nekomaster has quit IRC
21:49:28 *** sim-al2 has quit IRC
21:49:28 *** Compu has quit IRC
21:49:28 *** ST2 has quit IRC
21:49:28 *** dustinm` has quit IRC
21:49:28 *** mikegrb has quit IRC
21:49:28 *** Osai has quit IRC
21:49:28 *** XeryusTC has quit IRC
21:49:28 *** ABCRic has quit IRC
21:49:28 *** dpk has quit IRC
21:49:28 *** Webster has quit IRC
21:49:28 *** __ln__ has quit IRC
21:49:28 *** Ammler has quit IRC
21:49:28 *** zwamkat has quit IRC
21:49:28 *** ZirconiumX has quit IRC
21:49:28 *** m1cr0man has quit IRC
21:49:28 *** debdog has quit IRC
21:49:28 *** guru3 has quit IRC
21:49:28 *** Flygon has quit IRC
21:49:28 *** Arveen2 has quit IRC
21:49:28 *** Mek has quit IRC
21:49:28 *** Keridos has quit IRC
21:49:28 *** heffer has quit IRC
21:49:28 *** berndj has quit IRC
21:49:28 *** luaduck has quit IRC
21:49:28 *** Taede has quit IRC
21:49:28 *** Lejving has quit IRC
21:49:28 *** zeta has quit IRC
21:49:28 *** Antheus has quit IRC
21:49:28 *** peter1138 has quit IRC
21:49:28 *** Sheogorath has quit IRC
21:49:28 *** KenjiE20 has quit IRC
21:49:28 *** FR^2 has quit IRC
21:49:28 *** Yexo has quit IRC
21:49:28 *** planetmaker has quit IRC
21:49:28 *** TrueBrain-Bot has quit IRC
21:49:28 *** grossing has quit IRC
21:49:48 *** Sacro has joined #openttd
21:49:48 *** murr4y has joined #openttd
21:49:48 *** zuzak has joined #openttd
21:49:48 *** SpComb has joined #openttd
21:49:48 *** xQR has joined #openttd
21:49:48 *** orudge has joined #openttd
21:49:48 *** fonsinchen has joined #openttd
21:49:48 *** Markk has joined #openttd
21:49:48 *** michi_cc has joined #openttd
21:49:48 *** tycoondemon has joined #openttd
21:49:48 *** zeknurn has joined #openttd
21:49:48 *** glx has joined #openttd
21:49:48 *** charon.oftc.net sets mode: +ovvv orudge orudge michi_cc glx
21:49:48 *** HerzogDeXtEr has joined #openttd
21:49:48 *** orudge` has joined #openttd
21:49:48 *** dustinm` has joined #openttd
21:49:48 *** Smedles_ has joined #openttd
21:49:48 *** mikegrb has joined #openttd
21:49:48 *** supermop has joined #openttd
21:49:48 *** jinks has joined #openttd
21:49:48 *** supermop_home has joined #openttd
21:49:48 *** sim-al2 has joined #openttd
21:49:48 *** Compu has joined #openttd
21:49:48 *** ST2 has joined #openttd
21:49:48 *** Sylf has joined #openttd
21:49:48 *** Darksecond has joined #openttd
21:49:48 *** nekomaster has joined #openttd
21:49:48 *** Osai has joined #openttd
21:49:48 *** XeryusTC has joined #openttd
21:49:48 *** luaduck has joined #openttd
21:49:48 *** ABCRic has joined #openttd
21:49:48 *** Yexo has joined #openttd
21:49:48 *** dpk has joined #openttd
21:49:48 *** Webster has joined #openttd
21:49:48 *** Taede has joined #openttd
21:49:48 *** berndj has joined #openttd
21:49:48 *** planetmaker has joined #openttd
21:49:48 *** charon.oftc.net sets mode: +ovov orudge` orudge` planetmaker planetmaker
21:49:48 *** Antheus has joined #openttd
21:49:48 *** KenjiE20 has joined #openttd
21:49:48 *** TrueBrain-Bot has joined #openttd
21:49:48 *** __ln__ has joined #openttd
21:49:48 *** peter1138 has joined #openttd
21:49:48 *** Sheogorath has joined #openttd
21:49:48 *** Ammler has joined #openttd
21:49:48 *** zwamkat has joined #openttd
21:49:48 *** ZirconiumX has joined #openttd
21:49:48 *** charon.oftc.net sets mode: +ov peter1138 peter1138
21:49:48 *** m1cr0man has joined #openttd
21:49:48 *** grossing has joined #openttd
21:49:48 *** Keridos has joined #openttd
21:49:48 *** heffer has joined #openttd
21:49:48 *** debdog has joined #openttd
21:49:48 *** FR^2 has joined #openttd
21:49:49 *** Mek has joined #openttd
21:49:49 *** guru3 has joined #openttd
21:49:49 *** zeta has joined #openttd
21:49:49 *** Flygon has joined #openttd
21:49:49 *** Lejving has joined #openttd
21:49:49 *** Arveen2 has joined #openttd
21:50:04 *** bwn has joined #openttd
21:50:04 *** cHawk has joined #openttd
21:50:04 *** Maarten has joined #openttd
21:50:04 *** efess has joined #openttd
21:50:04 *** DDR has joined #openttd
21:50:04 *** innocenat has joined #openttd
21:50:04 *** _dp_ has joined #openttd
21:50:04 *** greeter has joined #openttd
21:50:04 *** davidstrauss_ has joined #openttd
21:50:04 *** Tharbakim has joined #openttd
21:50:04 *** Ttech has joined #openttd
21:50:04 *** Vadtec has joined #openttd
21:50:04 *** dvim has joined #openttd
21:50:04 *** techmagus has joined #openttd
21:50:04 *** blathijs has joined #openttd
21:50:04 *** goodger has joined #openttd
21:50:04 *** argoneus has joined #openttd
21:50:04 *** Warrigal has joined #openttd
21:50:04 *** Extrems has joined #openttd
21:50:04 *** TheIJ has joined #openttd
21:50:04 *** ccfreak2k has joined #openttd
21:50:04 *** Speedy has joined #openttd
21:50:04 *** UD98 has joined #openttd
21:50:04 *** Mazur has joined #openttd
21:50:26 *** supermop has quit IRC
21:50:49 *** Progman has joined #openttd
21:50:49 *** andythenorth has joined #openttd
21:50:49 *** juzza1 has joined #openttd
21:50:49 *** Biolunar has joined #openttd
21:50:49 *** Samu has joined #openttd
21:50:49 *** Wolf01 has joined #openttd
21:50:49 *** APTX has joined #openttd
21:50:49 *** Milek7 has joined #openttd
21:50:49 *** ToBeFree has joined #openttd
21:50:49 *** funnel has joined #openttd
21:50:49 *** dlite has joined #openttd
21:50:49 *** kais58 has joined #openttd
21:50:49 *** rellig has joined #openttd
21:50:49 *** jonty-comp has joined #openttd
21:51:40 <glx> wow chan buffer filled with netsplits join/leave
21:57:28 <andythenorth> trainz http://www.railpictures.net/photo/611240/
21:57:29 *** supermop has joined #openttd
21:57:42 <nekomaster> Are things fixed now ._.
21:57:56 <nekomaster> is IRC Armageddon over?
22:03:18 <peter1138> maaaybe
22:19:45 *** FLHerne has joined #openttd
22:23:59 *** orudge` has quit IRC
22:24:18 *** orudge` has joined #openttd
22:24:18 *** ChanServ sets mode: +o orudge`
22:26:54 <Wolf01> Wow, netsplotfest?
22:27:00 <Wolf01> splot
22:27:02 <nekomaster> lol
22:32:16 <peter1138> hmm, why is the intro game loaded twice?
22:32:32 <Wolf01> 'coz is cool
22:35:25 <frosch123> peter1138: before grf scan and after grf scan
22:35:32 <peter1138> yebbut
22:35:40 <peter1138> hm
22:35:58 *** gelignite has joined #openttd
22:35:58 <frosch123> to activate static grfs or something
22:36:06 <peter1138> such a silly concept
22:36:40 *** chomwitt has joined #openttd
22:37:02 <Wolf01> frosch123, I tried to fix the build infrastructure check today, I actually fixed it so it behave like the default NRT but last time you said about a lot of cases missing
22:37:44 <frosch123> that's long ago :p
22:37:50 <frosch123> a month or so
22:38:03 <frosch123> i guess there is stuff on paste
22:38:39 <Wolf01> Yes, that's implemented, but only that one, I should figure out the missing cases
22:44:53 <peter1138> hmm, right, oil rigs...
22:50:06 *** HerzogDeXtEr has quit IRC
22:50:07 *** frosch123 has quit IRC
22:54:23 *** HerzogDeXtEr has joined #openttd
22:56:45 <Samu> bah, i made ships able to service on competitor ship depots, i don't want this
22:57:55 <Wolf01> LOL
22:58:22 <Wolf01> Add a d->owner == _local_company
22:58:47 <peter1138> staring at yapf
22:58:52 <peter1138> still no idea how it works
22:58:57 <peter1138> templates, structs, typedefs...
22:59:25 <Wolf01> Maybe I could understand that, I do weird stuff
23:01:02 <peter1138> hmm, multiple inheritance
23:02:16 <Wolf01> That's my kind of stuff
23:02:37 <Samu> i need a way to make yapf test vehicle owner is the same as the tile owner at the destination
23:05:10 <Wolf01> Way -> ==
23:05:21 <michi_cc> peter1138: The template and inheritance stuff is kinda misleading. Overall, it is simply some kind of object composition (which I'm sure has some fancy pattern name :P).
23:05:38 <peter1138> michi_cc, yup
23:05:43 <Samu> Severity Code Description Project File Line Suppression State Error C2065 '_local_company': undeclared identifier openttd D:\OpenTTD\trunk\src\pathfinder\yapf\yapf_ship.cpp 246
23:05:47 <peter1138> michi_cc, thing is i spend an hour figuring it out
23:05:52 <peter1138> then never have to touch it
23:05:57 <peter1138> so when i look again, i've no idea
23:06:00 <Wolf01> You should have seen my html forms framework... somefields had 6 levels of inheritance
23:06:19 <peter1138> i do c#, no multiple inheritance
23:06:24 <michi_cc> peter1138: For each kind of pathfinder, combine an origin provider, an destination provider, a cost function, and a node follow, spice up with a generic A* base and voila, YAPF is born :)
23:06:37 <michi_cc> s/follow/follower/
23:08:06 <peter1138> the weird naming and code style doesn't help :)
23:08:32 <peter1138> m_ isn't used anywhere else
23:17:15 <Samu> i have a problem, yapf destination tile doesn't have tile owner, hap
23:17:17 <Samu> halp
23:17:51 <Samu> looks like ship depots are very unique, in that vehicles of any companies can go into
23:18:04 <Samu> but not actually stop to service on there
23:20:13 *** andythenorth has left #openttd
23:20:32 <peter1138> if you have the dest tile you can get the owner
23:22:21 <Samu> i have the dest tile, but v->owner isn't being accepted :(
23:23:48 *** UD98 is now known as Tenu
23:25:53 <Samu> bool bDest = IsShipDepotTile(n.m_segment_last_tile) && IsTileOwner(n.m_segment_last_tile, v->owner) && GetShipDepotPart(n.m_segment_last_tile) == DEPOT_PART_NORTH;
23:26:11 <Samu> 'v': undeclared identifier
23:26:14 <Samu> halp
23:27:59 <peter1138> TILE_ADD TileIndexDiffC
23:28:07 <peter1138> hmm
23:28:12 <peter1138> old macros ;(
23:28:27 <Wolf01> I remember the old macros
23:29:13 <peter1138> That's still used.
23:30:13 <Wolf01> There is also BEGIN_TILE_LOOP somewhere or it was definitely removed? XD
23:31:39 *** Progman has quit IRC
23:32:52 <peter1138> That got replaced with TileArea or something like that.
23:33:25 <peter1138> TILE_AREA_LOOP
23:33:27 <Wolf01> It was weird somewhat, the END_TILE_LOOP was "}}" IIRC
23:33:30 <peter1138> well, not so fun.
23:33:39 <peter1138> yeah, annoying macros
23:34:12 <Wolf01> At least now is more resembling a custom construct
23:35:22 *** Compu has quit IRC
23:36:53 <peter1138> I think TileArea was something I created originally for newgrf stations
23:37:24 <Eddi|zuHause> isn't that what iterators are for?
23:38:15 <Eddi|zuHause> not that i would have any clue how an iterator looks in C++
23:38:25 <peter1138> Good to see code from 2004 still lying around
23:39:12 <peter1138> ^efaeb27 station_cmd.c (truelight 2004-08-09 17:04:08 +0000 196) #define M(x) ((x) - STR_SV_STNAME)
23:39:16 <peter1138> that's a good'un
23:40:03 <Eddi|zuHause> wow i have not read that name in ages
23:40:17 <peter1138> Yeah, I wonder whatever happened to him...
23:40:23 <Eddi|zuHause> ;p
23:40:31 <Wolf01> :D
23:40:51 <Eddi|zuHause> @seen truelight
23:40:51 <DorpsGek> Eddi|zuHause: I have not seen truelight.
23:41:14 *** Compu has joined #openttd
23:41:22 <Wolf01> Bah, useless bot... parse old logs :P
23:41:26 <peter1138> nice that git knows about moving files around and renaming...
23:42:55 <Wolf01> Mmmh, I only have logs from 2009 in this machine
23:48:05 *** FLHerne has quit IRC
23:49:11 *** gelignite has quit IRC
23:50:54 <Samu> looks like i got this
23:50:58 <Samu> bool bDest = IsShipDepotTile(n.m_segment_last_tile) && IsTileOwner(n.m_segment_last_tile, Yapf().GetVehicle()->owner) && GetShipDepotPart(n.m_segment_last_tile) == DEPOT_PART_NORTH;
23:51:01 <Samu> let's see
23:52:40 <supermop> hmm recruited wants to call me about job i applied for that i am 99% sure i cannot get
23:52:47 <supermop> recruiter
23:53:47 <Eddi|zuHause> and why do you apply for jobs you're 99% sure you can't get?
23:53:47 <supermop> that's the problem with recruiters instead of applying directly with the employer. Employer will take one glance, know they do do want to hire you, and then not waste any of your time
23:54:12 *** sla_ro|master has quit IRC
23:54:20 <supermop> recruiter has noting else to do all day but throw huge numbers of candidates at jobs
23:54:43 <supermop> Eddi|zuHause: not seriously looking for new jobs just yet, so just for warm up
23:54:55 <Samu> yep, it's heading to the correct company depot now
23:55:02 <Samu> not the competitor's
23:55:11 <Eddi|zuHause> well, i wouldn't know how that works...
23:55:22 <Eddi|zuHause> i didn't technically "apply" for my job
23:55:26 <supermop> also apply to 200 jobs that i have a 1% chance of getting, and maybe i get two offers to choose from
23:55:32 <Wolf01> supermop, at least you have that 1% of chance
23:55:34 <Eddi|zuHause> nor my previous job
23:55:41 *** Wormnest has quit IRC
23:56:36 <supermop> Wolf01: may be less - i am probably a bit under-qualified, and according to linked in, there are already 300 applicants
23:56:55 <supermop> also linked in job listing are mostly a joke
23:58:07 <Eddi|zuHause> i don't know how linked in works
23:58:19 <Eddi|zuHause> and i have no intention of finding out any time soon
23:59:14 <supermop> vast majority of hires do not come from there, or company already has someone in mind, but need to interview a few more people just to be sure
23:59:37 <Wolf01> Here they look for people under 30 to hire as apprentice, also I'm already qualified (even if I don't have all the knowledge) for every possible IT job, because that's how it works in Shitaly, it doesn't matter if you repaired printers or you were a developer... you have the same qualify, so you can't be an apprentice anymore