IRC logs for #openttd on OFTC at 2016-10-12
            
00:08:41 *** Biolunar has quit IRC
00:30:49 *** keoz has quit IRC
00:51:06 *** Myhorta has joined #openttd
01:09:29 <Wolf01> 'night
01:09:31 *** Wolf01 has quit IRC
01:19:07 *** Samu has joined #openttd
01:24:49 *** Snail has joined #openttd
01:42:40 *** Samu has quit IRC
02:01:24 *** JezK_ has joined #openttd
02:12:56 *** HerzogDeXtEr has quit IRC
02:18:36 *** Supercheese has joined #openttd
02:46:24 *** ToBeFree is now known as Guest1832
02:46:25 *** tobefree has joined #openttd
02:57:05 *** tobefree has quit IRC
03:26:47 *** tokai|noir has joined #openttd
03:26:47 *** ChanServ sets mode: +v tokai|noir
03:33:34 *** tokai has quit IRC
04:45:56 *** Myhorta has quit IRC
05:03:04 *** glx has quit IRC
05:53:06 *** umgeher_ has joined #openttd
05:58:07 *** umgeher has quit IRC
06:07:39 *** sla_ro|master has joined #openttd
06:12:27 *** sim-al2 is now known as Guest1842
06:12:28 *** sim-al2 has joined #openttd
06:18:26 *** Guest1842 has quit IRC
07:05:33 *** Snail has quit IRC
07:31:31 *** keoz has joined #openttd
08:33:24 *** keoz has quit IRC
09:18:59 *** keoz has joined #openttd
09:29:01 *** keoz has quit IRC
09:39:24 *** Wolf01 has joined #openttd
09:40:09 <Wolf01> o/
10:00:30 *** Supercheese has quit IRC
11:00:38 *** Wolf03 has joined #openttd
11:00:38 *** Wolf01 is now known as Guest1854
11:00:39 *** Wolf03 is now known as Wolf01
11:06:24 *** Guest1854 has quit IRC
11:20:30 *** Biolunar has joined #openttd
11:58:22 *** JezK_ has quit IRC
12:20:01 *** keoz has joined #openttd
12:26:12 *** TheMask96 has quit IRC
12:32:04 *** TheMask96 has joined #openttd
13:08:15 *** LavaTaco has joined #openttd
13:08:37 <LavaTaco> Hellooo?
13:08:54 *** LavaTaco has quit IRC
13:13:24 <LordAro> waited a whole 17 seconds
13:33:23 *** ElleKitty has joined #openttd
13:55:16 <Eddi|zuHause> there are parts of the internet where that means it's dead...
13:55:35 *** Guest1832 is now known as ToBeFree
14:02:05 <Wolf01> Must reboot for updates
14:02:09 *** Wolf01 has quit IRC
14:04:55 <luaduck> does anyone happen to know what encoding sets chat uses?
14:05:28 <luaduck> using the admin port to send stuff to chat and I'm getting non-UTF-8 characters from the game, and unsure how best to re-encode them
14:05:44 <luaduck> right now I'm just doing .decode('UTF-8', errors='replace') but obviously that's not ideal
14:08:30 *** Wolf01 has joined #openttd
14:25:10 *** welshdragon has joined #openttd
14:31:17 <Wolf01> I was thinking, I'm using the structs I made by reference, am I doing it right or should I declare them as pointers?
14:33:14 <Wolf01> (I'll never understand when to use references or pointers)
14:34:13 *** Snail has joined #openttd
14:35:10 <Wolf01> Bbl
14:43:46 *** welshdragon has quit IRC
14:52:22 *** Snail has quit IRC
14:58:40 *** Samu has joined #openttd
14:59:18 <Samu> hi
15:25:57 <Eddi|zuHause> Wolf01: the main difference between pointers and references is that you can do arithmetic operations on pointers
15:26:23 <supermop> good morning
15:40:13 <supermop> man whats this nutracks freakout i missed while away this weekend?
15:47:30 <Wolf01> Mainly people not understandin g licenses
15:47:31 *** sim-al2 has quit IRC
15:50:13 <Flygon__> Oh jeeze
15:50:21 <Flygon__> I read nutracks as nut-racks
15:50:25 <Flygon__> I need some sleep
15:50:27 *** Flygon__ is now known as Flygon
15:50:29 <Flygon> Night y'all!
15:53:36 <Wolf01> All what I understand about pointers is to change the value pointed from one variable by changing it from another place
15:54:01 <Wolf01> And this really confuses me
15:57:09 <Wolf01> I feel it like the game of the 3 cards, where the pointer is the dealer which tricks the gambler
16:17:02 <supermop> nu tracks are racks for your nuts trains
16:34:04 *** Alberth has joined #openttd
16:34:04 *** ChanServ sets mode: +o Alberth
16:34:09 <Wolf01> o/
16:34:17 <Alberth> hola!
16:49:38 *** umgeher_ is now known as umgeher
17:08:41 *** Biolunar has quit IRC
17:15:25 *** welshdragon has joined #openttd
17:30:39 *** Lejving has quit IRC
17:31:42 *** TheMask96 has quit IRC
17:34:51 *** TheMask96 has joined #openttd
17:40:05 *** Gja has joined #openttd
18:45:59 *** keoz has quit IRC
18:50:23 <Eddi|zuHause> Wolf01: doing arithmethics with pointers: imagine you have an array of uin32, and you do pointer=array, then *pointer == array[0], *(pointer+4) == array[1], etc.
18:50:42 <Wolf01> Chinese
18:51:15 <Eddi|zuHause> in fact, [] in C(++) is defined as this exact operation
18:51:20 <Alberth> Eddi|zuHause: false, pointer+n goes N units further
18:51:57 <Alberth> not N bytes
18:52:13 <Eddi|zuHause> Alberth: hm, i might misremember that
18:52:16 *** Flygon_ has joined #openttd
18:52:27 <Wolf01> Also I read it was bytes
18:52:39 <Wolf01> Depending on the declaration type
18:52:46 <Alberth> for char * it is, as sizeof(char) == 1
18:52:55 <Wolf01> But that might be valid for pointer++
18:53:12 <Alberth> all pointer arithmetic works in units
18:53:21 <Alberth> c++ is very consistent :)
18:53:31 <Eddi|zuHause> haha :p
18:54:01 <Alberth> ie pointer = pointer + 1 <--> pointer++ relation holds
18:54:58 <Alberth> &pointer[N] == pointer + N
18:57:46 *** Flygon has quit IRC
19:16:06 *** glx has joined #openttd
19:16:06 *** ChanServ sets mode: +v glx
19:16:26 *** Progman has joined #openttd
19:40:12 *** andythenorth has joined #openttd
19:40:31 *** welshdragon has quit IRC
19:41:52 *** Stimrol has quit IRC
19:41:57 <andythenorth> o/
19:43:26 *** Stimrol has joined #openttd
19:45:44 <DorpsGek> Commit by translators :: r27661 trunk/src/lang/portuguese.txt (2016-10-12 19:45:36 +0200 )
19:45:45 <DorpsGek> -Update from Eints:
19:45:46 <DorpsGek> portuguese: 1 change by Samu
19:47:11 <Sacro> \o/
19:49:32 <Alberth> o/
20:12:59 <andythenorth> forumz is quiet
20:22:35 *** frosch123 has joined #openttd
20:25:08 <andythenorth> le quak
20:25:36 *** Arveen has joined #openttd
20:29:31 *** Wormnest has joined #openttd
20:29:53 <frosch123> lo
20:44:06 <Samu> hey Wormnest will u fix nonocab? there's some crashes yet t.t
20:44:23 <Samu> but i didn't report them
20:45:17 <Samu> btw I changed the scores a little bit
20:47:31 <Samu> i'd like to test loading ai savegames, to see how they behave, but i don't know how i'm testing it
20:47:53 <Samu> there's about 1200 saves after 100 years test
20:52:31 *** Lejving has joined #openttd
20:58:00 *** welshdragon has joined #openttd
20:58:14 *** sla_ro|master has quit IRC
20:59:22 *** welshdragon has quit IRC
20:59:36 *** welshdragon has joined #openttd
20:59:58 *** welshdragon has joined #openttd
21:24:43 <andythenorth> Wolf01: o/
21:38:19 <andythenorth> ha, this is nearly on-topic https://www.youtube.com/watch?v=K_7k3fnxPq0
21:40:11 *** gelignite has joined #openttd
21:53:35 *** frosch123 has quit IRC
21:54:42 <Wolf01> andythenorth, another must to have http://www.brothers-brick.com/2016/10/12/lego-unveils-21306-yellow-submarine-news/
21:55:01 <andythenorth> cute design
21:55:08 * andythenorth has enough Lego :D
21:55:21 <andythenorth> except the Claas
21:56:06 <Wolf01> The video, bike trails? :D
21:56:25 <andythenorth> Danny MacAskill
21:56:33 *** Arveen has quit IRC
21:56:53 <andythenorth> Wolf01: do you have the purple race kart or the fire plane?
21:57:05 <Wolf01> Both, but misb
21:57:22 <andythenorth> wondering if they’re fun
22:04:20 <Wolf01> I'm bored about original models, I only buy them for pieces or c-models
22:05:51 <andythenorth> I buy them because sometimes it’s nice to have instructions to follow :)
22:05:55 <andythenorth> no brain needed
22:10:44 *** HerzogDeXtEr has joined #openttd
22:25:08 *** sim-al2 has joined #openttd
22:26:19 <Wolf01> Oh, andythenorth, I played a bit yesterday, rail tracks can't be overbuild, if you do that it only adds the new trackbits to the existing track, but it does not change the type with the new one
22:30:36 *** Biolunar has joined #openttd
22:35:57 <Wormnest> Samu: If you don´t report problems how am I supposed to know about them
22:36:18 <Samu> i thought you knew them from last time :(
22:36:22 <Wormnest> Besides that currently pretty busy so not a lot of time
22:36:53 <Wormnest> Ah I thought you meant other problems
22:36:57 <Samu> there's some save that crashes when I load
22:37:10 <Samu> posted on the competition threads
22:37:45 <Samu> there's some issues with trains and road vehicles waiting in depot indefinitely
22:37:46 <Wormnest> I think I fixed that crash but haven´t released a new version
22:37:52 *** Alberth has left #openttd
22:38:39 <Wormnest> Still need to find the problem with wrong signal but will have to wait until I have more free time
22:46:28 *** Gumle2 has joined #openttd
22:47:29 *** glx_ has joined #openttd
22:49:17 *** Eddi|zuHause2 has joined #openttd
22:49:31 *** berndj-blackout has joined #openttd
22:50:15 *** HerzogDeXtEr1 has joined #openttd
22:51:42 *** Eddi|zuHause has quit IRC
22:51:42 *** HerzogDeXtEr has quit IRC
22:51:42 *** berndj has quit IRC
22:51:42 *** Rubidium has quit IRC
22:51:42 *** Rubidium has joined #openttd
22:51:42 *** glx is now known as Guest1894
22:52:01 *** ChanServ sets mode: +o Rubidium
22:52:02 *** glx_ is now known as glx
22:52:44 *** Knogle has quit IRC
22:52:49 *** Gja has quit IRC
22:52:58 *** Gumle2 is now known as Gja
22:53:49 *** ElleKitty has quit IRC
22:53:54 *** Guest1894 has quit IRC
22:54:13 *** Knogle has joined #openttd
23:13:55 *** gelignite has quit IRC
23:22:52 *** Eddi|zuHause2 is now known as Eddi|zuHause
23:26:28 *** Wormnest has quit IRC
23:28:57 *** andythenorth has left #openttd
23:48:46 *** Progman has quit IRC