IRC logs for #openttd on OFTC at 2010-10-25
            
00:05:45 *** pugi has quit IRC
00:08:17 *** Keiya_ has joined #openttd
00:19:56 <avdg> hmm, yet another floating point exception?
00:20:05 <avdg> @fs4182
00:21:02 *** Brianetta has quit IRC
00:23:06 <Eddi|zuHause> one should just close the report because the game was touched with a modified version
00:23:43 <avdg> I did also had that bug, and also with a modified version (wich seemed to be non-cpp files)
00:23:54 *** Keiya has joined #openttd
00:24:46 <avdg> Still, I don't know if it triggered the same error
00:25:08 <Eddi|zuHause> the problem is, the game logic contains (almost) no floating point operations
00:25:23 <avdg> I know, because pointers are "bad"
00:25:42 <Eddi|zuHause> "point", not "pointer"
00:25:52 <avdg> uh, what did I say -_
00:25:59 <avdg> floating points
00:26:37 <avdg> bleh, I'm multitasking with other programming problems :p
00:27:05 <Eddi|zuHause> floats are not "bad" per se, but their behaviour cannot be synchronized between different processor architectures
00:28:06 <Eddi|zuHause> that, or it can't use the proccessor's floating point acceleration, which makes using floats practically useless
00:28:35 <avdg> compiler optimalisation I bet
00:28:47 <Eddi|zuHause> no, it's inherent to the processor
00:28:56 <Eddi|zuHause> has nothing to do with the compiler
00:30:16 *** Keiya_ has quit IRC
00:30:37 *** Keiya_ has joined #openttd
00:30:43 <Eddi|zuHause> example: if you use 64 bit floats ("double precision"), one processor can directly use 64 bit functions, or the other may promote them to 80 bit floats, use those functions, and then cut the results back to 64 bit
00:31:02 <Eddi|zuHause> both methods are valid, but they may produce slightly different rounding behaviour
00:31:09 <avdg> sound logic
00:31:26 <Eddi|zuHause> so it cannot be trusted for synchronisation
00:31:27 <avdg> but I am not experienced with modern cpu's
00:32:01 <Eddi|zuHause> x86 processors typically use the "promote to 80 bits" method
00:32:49 <Eddi|zuHause> but it's not the only source for differences
00:33:15 <avdg> hmm, do you know if floating point registers have equal performance if they only do integer instructions?
00:33:24 <avdg> random question
00:34:09 <SmatZ> SIGFPE is raised for division by zero
00:34:14 <SmatZ> and maybe other cases...
00:34:19 <Eddi|zuHause> i am not an assembler programmer, i'd have suspected they can't be used for integer at all
00:34:20 <SmatZ> (integer division by zero, that is)
00:34:31 <SmatZ> as well as modulo...
00:34:34 <avdg> just a part I think
00:34:40 <SmatZ> which could indicate a problem in GUI
00:34:46 <avdg> as I know a bit how a float is constructed
00:34:48 <SmatZ> because there is / and % used quite often
00:35:15 *** Keiya has quit IRC
00:35:30 <Eddi|zuHause> well, it'd certainly help to have the debugging symbols to resolve the location
00:35:55 <SmatZ> [05] ./openttd(_Z17HandleMouseEventsv+0xf91) [0x83eb291]
00:35:58 <SmatZ> we got this :)
00:36:07 <SmatZ> and it seems to be the official binary
00:36:12 <SmatZ> better than nothing :p
00:36:23 *** Fuco has quit IRC
00:36:28 <avdg> hmm, maybe I should dig in my errorfile as wel
00:36:31 <avdg> l
00:37:38 <avdg> bleh, I think I lost it -_
00:37:47 <SmatZ> no problem :)
00:38:08 <avdg> pm just pointed my that it was invalid
00:38:10 *** Keiya has joined #openttd
00:39:04 <SmatZ> 83eb291: f7 3d f8 98 56 08 idivl 0x85698f8
00:39:08 <SmatZ> integer division
00:39:20 <avdg> :)
00:39:40 <avdg> bleh, I really should learn more assembler
00:39:54 <avdg> and crashlog reading
00:42:20 <Eddi|zuHause> i really don't care about assembler...
00:42:36 <avdg> I do :p
00:42:39 <Eddi|zuHause> the higher level the language, the better
00:43:05 * avdg loves lowlevel
00:43:25 <avdg> but getting further works indeed only by going higher
00:45:15 *** Keiya_ has quit IRC
00:46:21 *** Biolunar has quit IRC
00:49:53 <SmatZ> :)
00:50:21 <SmatZ> there is indeed something strange with the scrolling code
00:50:32 <avdg> scrolling code?
00:50:38 <SmatZ> when I hold lmb on the "scroll up" button, it sometimes causes the bar to jump
00:50:39 <avdg> is it reproducable yet?
00:50:50 <SmatZ> I am not able to crash openttd though
00:51:16 <SmatZ> in crash.png, there is mouse pressing the "scroll up" button
00:51:21 <avdg> hmm
00:51:36 <avdg> the code is a bit changed in the last time
00:55:19 *** Progman has quit IRC
00:56:16 *** ctibor|spi has quit IRC
01:13:06 <SmatZ> reproduced :)
01:14:08 *** Pulec has quit IRC
01:16:40 <avdg> now fix it :D
01:17:18 <avdg> isn't it related to the fact that _scrollbar_size could be zero?
01:17:32 * avdg didn't checked out the code yet
01:18:28 <SmatZ> it's most likely related to that, yes :)
01:25:35 *** Mazur has quit IRC
01:25:49 <avdg> what I'm also wondering at, is the small scroller, in ui from many os there is a minimum size
01:26:03 <avdg> but just ignore me if I'm asking too much :p
01:35:05 <avdg> widget.cpp, at rule 111
01:35:18 <avdg> thats the only place where you can get a zero
01:38:18 <Eddi|zuHause> weren't a couple of things regarding scrolling and zeroes be fixed recently?
01:39:40 <SmatZ> I don't know
01:40:16 <avdg> I do only know that there where some issues about the ui fixed
01:40:27 <avdg> like the flickering button
01:42:06 <SmatZ> the "mouse button is pressed at the [^] button" even seems to be sometimes delivered as "mouse clicked at some place in the scrollbar, move the scrollbar to that place"
01:42:41 <SmatZ> in that case ScrollbarClickPositioning() would be called
01:42:50 <SmatZ> and could set _scrollbar_size to 0
01:44:13 <avdg> what I don't get, is why _scrollbar_size is a global
01:44:36 <SmatZ> it's related to currently active scrollbar
01:44:41 <SmatZ> but strange, yes
01:46:43 <Eddi|zuHause> probably a remnant from old gui code
01:47:18 <avdg> the code isn't cleaned up imo, and it will never be till someone wants to
01:47:45 <SmatZ> it's a (not THAT slow) proces
01:47:48 <SmatZ> s
01:48:05 <avdg> its just because no1 is looking at it
01:48:13 <avdg> I think
01:48:45 <SmatZ> there's a whole new GUI system in 1.0 :p
01:48:59 <SmatZ> and there are still changes being commited
01:49:02 <Eddi|zuHause> there have been _massive_ changes in GUI code in the past year
01:49:47 <avdg> and still needs changes
01:50:46 *** Wizzleby has joined #openttd
01:50:55 <avdg> but anyway, its 4 am
01:51:02 <avdg> almost :p
01:52:39 <avdg> gn
01:52:59 *** avdg has quit IRC
02:01:46 *** r0b0tb0y has joined #openttd
02:14:18 *** lugo has quit IRC
02:19:08 *** Lakie has quit IRC
02:32:44 *** nicfer has quit IRC
03:05:23 *** r0b0tb0y has quit IRC
03:40:00 *** r0b0tb0y has joined #openttd
03:41:12 *** glx has quit IRC
04:15:20 *** a1270 has joined #openttd
04:19:40 *** DDR has joined #openttd
04:47:03 *** r0b0tb0y has quit IRC
04:56:04 *** Eddi|zuHause has quit IRC
04:56:17 *** Eddi|zuHause has joined #openttd
05:14:11 *** r0b0tb0y has joined #openttd
05:19:46 *** elmz has joined #openttd
05:27:09 *** ecke has quit IRC
05:32:43 *** frustrated_farmer has joined #openttd
05:36:56 *** r0b0tb0y has quit IRC
05:39:15 *** frustrated_farmer has quit IRC
05:40:37 *** r0b0tb0y has joined #openttd
05:41:26 *** Keiya_ has joined #openttd
05:41:38 *** Phoenix_the_II has quit IRC
05:47:38 <Terkhen> good morning
05:48:50 *** Keiya has quit IRC
05:56:28 *** Mortomes has quit IRC
05:58:03 <planetmaker> good morning
06:11:22 *** xiong has joined #openttd
06:13:19 <xiong> Hi, guys.
06:26:08 *** Cybertinus has joined #openttd
06:29:09 *** ^Spike^ has joined #openttd
06:32:11 *** Prof_Frink has quit IRC
06:45:03 *** TinoDid|znc has joined #openttd
06:46:44 *** Keiya has joined #openttd
06:47:33 *** TinoDidriksen has quit IRC
06:47:33 *** TinoDid|znc is now known as TinoDidriksen
06:51:11 <CIA-2> OpenTTD: planetmaker * r21036 /trunk/src/video/cocoa/event.mm: -Fix: [OSX] Properly set the palette when using the 8bpp blitter during start-up
06:54:25 *** Keiya_ has quit IRC
07:02:44 *** duckblaster has joined #openttd
07:05:21 *** CIA-2 has quit IRC
07:06:39 *** dfox has joined #openttd
07:08:22 *** xiong has quit IRC
07:10:02 *** Mortomes|TGIF has joined #openttd
07:11:23 *** Mortomes|TGIF is now known as Mortomes|Work
07:12:45 *** ar3k has joined #openttd
07:17:55 *** Chrill has joined #openttd
07:31:16 *** Chrill has quit IRC
07:31:34 *** JVassie has joined #openttd
07:35:24 <dihedral> planetmaker, the os x maintainer ? :-D
07:37:16 <Rubidium> does he dare?
07:44:50 <planetmaker> that is the question
07:45:06 <planetmaker> at least not yet
07:45:17 *** pugi has joined #openttd
07:48:30 <planetmaker> and CIA-2 is laggy ;-)
07:50:10 *** Keiya_ has joined #openttd
07:52:36 <planetmaker> but I had the feeling that the palette wasn't properly initialized at all... stupid thing and no wonder it comes out strange
07:52:38 *** JVassie has quit IRC
07:56:20 *** Keiya has quit IRC
08:05:01 <dihedral> at least now the argument 'no dev has a mac' does not count
08:05:17 <planetmaker> nor was it correct before :-P
08:05:31 <dihedral> oh? who else?
08:05:44 <planetmaker> I don't tell. I fear the wrath ;-)
08:05:49 <dihedral> lol
08:07:06 <planetmaker> truely I shouldn't shed light on that issue :-P
08:08:07 <dihedral> planetmaker, true, it'll only get the forums unbearable again :-D
08:08:25 <planetmaker> :-P
08:10:07 *** planetmaker has left #openttd
08:10:40 *** planetmaker has joined #openttd
08:10:46 <planetmaker> hmpf... nasty ctrl+w issue
08:11:01 <planetmaker> @voice
08:11:01 *** DorpsGek sets mode: +v planetmaker
08:12:14 <dihedral> hehe
08:12:36 <dihedral> Osai swears on this colloqui client :-P
08:13:17 <planetmaker> that wouldn't change this "issue"
08:13:18 <Osai> Yes!!!
08:13:25 <dihedral> hello Osai :-)
08:13:58 <planetmaker> It's layer8, you know. Ctrl+W just on the wrong window :-)
08:13:58 <Osai> hi
08:13:58 <planetmaker> An Osai !!
08:13:58 <dihedral> planetmaker, i thought ctrl+w did not work on macs
08:13:58 <dihedral> it thought it was command+w
08:13:58 <dihedral> ^^
08:14:02 <planetmaker> I'm not working on a mac right now
08:14:08 <dihedral> ahhhh
08:14:11 <dihedral> traitor :-D
08:14:21 <planetmaker> but on mac it'd be cmd+w. Same problem, other key
08:14:41 <planetmaker> which reminds me... cmd should double for ctrl :-)
08:14:59 <Osai> how are you guys??
08:15:07 <planetmaker> fine and busy :-)
08:15:19 <planetmaker> how're you, long time no see :-)
08:15:38 <Osai> good too, but very busy
08:16:06 <dihedral> studies ey?
08:16:11 <dihedral> doing well(ish) too
08:16:22 <dihedral> working from home today so i do not infect all my coworkers :-S
08:16:43 <dihedral> though that kinda already states i will not be as productive either ^^
08:17:35 <planetmaker> he... seems to go around. Been there the weekend
08:17:44 <Osai> Yes
08:17:44 <planetmaker> And thus missed a nice "Spanferkel" :-(
08:17:50 <dihedral> hehe
08:18:04 <dihedral> i woke up with it sunday morning
08:18:14 <dihedral> i have no idea where i could have gotten it from
08:19:20 *** r0b0tb0y has quit IRC
08:19:55 <Osai> gosh, too many disconnects... cya later
08:20:02 <planetmaker> he :S
08:20:40 *** Progman has joined #openttd
08:21:49 *** mr_sticky has joined #openttd
08:22:09 <dihedral> planetmaker, he joins from his phone
08:22:24 <dihedral> he has a plugin in znc which pushes highlights to his phone :-D
08:22:25 <planetmaker> I suspect so. Still
08:22:36 <dihedral> so if that disconnects all the time ...
08:23:00 *** CIA-2 has joined #openttd
08:23:10 * dihedral kicks CIA-2
08:23:12 <CIA-2> ow
08:23:36 <planetmaker> hm. seems to be an automated bot response :-)
08:23:51 * Terkhen hughs CIA-2
08:24:00 <dihedral> :-P
08:24:13 * dihedral hugs Terkhen
08:24:17 * planetmaker steals an 'h' from Terkhen
08:24:26 <Terkhen> whatever :P
08:24:32 <dihedral> Terken <- you mean that/ :-D
08:24:56 <planetmaker> not out of Terkhen ;-)
08:25:03 <dihedral> ^^
08:25:08 <Terkhen> the fact that I'm studying english right now makes that mistake even worse
08:25:15 <planetmaker> :-P
08:25:51 <dihedral> Terkhen, you could have easily enough found out if 'hughs' was something we did not know about - or make up a story :-D
08:25:55 *** mr_sticky has quit IRC
08:27:09 <planetmaker> that's quite difficult when you never know from where there are people around ;-)
08:32:00 <peter1138> version me will you?
08:33:51 *** andythenorth__ has joined #openttd
08:37:33 <dihedral> :-D
08:37:53 <dihedral> i just thought that way i could find out who might possibly have a mac :-P
08:38:00 <dihedral> of course only if you reply ^^
08:38:04 *** ctibor has joined #openttd
08:38:06 <peter1138> nobody, duh
08:38:23 <dihedral> lies! ^^
08:38:54 * planetmaker fears the bjarni-effect :-P
08:39:06 <Terkhen> :)
08:41:17 <dihedral> planetmaker, you mean, disappear and never show up again?
08:41:25 <dihedral> or try to fix something and not succeed :-D
08:41:46 <planetmaker> the latter with the social stigma attached to it ;-)
08:42:01 <planetmaker> The first is quite well under my control ;-)
08:42:09 <dihedral> ^^
08:42:11 <planetmaker> But might be connected to the second issue ;-)
08:43:35 * andythenorth__ knows who else has a mac
08:44:54 <planetmaker> 8% of the computer user on some large German computer magazine's page seem to have.
08:48:53 <dihedral> planetmaker, but i do not count 16 devs :-D
08:49:02 <planetmaker> ;-)
08:49:23 <planetmaker> @calc 100/8
08:49:23 <DorpsGek> planetmaker: 12.5
08:49:32 <planetmaker> :-P
08:49:54 <dihedral> planetmaker, i was specifically refering to devs;-)
08:50:04 <dihedral> but perhaps we should just drop this topic ;-)
08:50:38 <planetmaker> ^^
08:51:13 *** Keiya has joined #openttd
08:53:55 *** X-2 has joined #openttd
08:58:50 *** Keiya_ has quit IRC
09:04:25 *** DDR has quit IRC
09:23:10 <Rubidium> pff... using some large German computer magazine for stats...
09:23:46 <Rubidium> @calc 27/3362*100
09:23:46 <DorpsGek> Rubidium: 0.803093396788
09:24:04 <Rubidium> there, less than 1% of people use a mac (binary)
09:24:20 <planetmaker> :-P
09:24:33 <dihedral> add those who compile themselves ^^
09:24:49 <planetmaker> 15 people more?
09:24:50 <Rubidium> are "developers"
09:25:08 *** norbert79 has joined #openttd
09:26:06 *** perk11 has joined #openttd
09:31:45 * peter1138 smirks at xkcd
09:38:58 *** heffer has quit IRC
09:40:35 * norbert79 checks xkcd
09:41:02 * norbert79 agrees :)
09:43:26 <planetmaker> scary future, eh? ;-)
09:43:39 <planetmaker> spam bots passing the turing test...
09:55:03 *** JVassie has joined #openttd
09:58:24 <Hirundo> Who knows, how many here are actually spam bots....
09:59:15 <peter1138> I always suspect dihedral...
09:59:46 *** Keiya_ has joined #openttd
09:59:59 <planetmaker> just don't mention the war :-P
10:01:47 <dihedral> pffft
10:02:50 *** Fuco has joined #openttd
10:05:02 <peter1138> Never mention the Swiss Sonderbund war of 1847.
10:07:15 *** Keiya has quit IRC
10:08:13 *** theholyduck has joined #openttd
10:08:51 *** dfox has quit IRC
10:09:09 *** Eddi|zuHause2 has joined #openttd
10:13:00 *** Eddi|zuHause has quit IRC
10:21:32 <peter1138> Ahhh, gstreamer has the best... aasink :D
10:23:18 *** Adambean has joined #openttd
10:25:11 *** Eddi|zuHause2 is now known as Eddi|zuHause
10:27:05 *** theholyduck has quit IRC
10:39:53 *** Keiya has joined #openttd
10:46:09 *** KenjiE20 has joined #openttd
10:47:10 *** Keiya_ has quit IRC
11:05:23 *** Pulec has joined #openttd
11:56:14 *** Chruker has joined #openttd
11:57:42 *** Keiya_ has joined #openttd
11:58:48 *** Lurimax has joined #openttd
12:00:54 *** Lakie has joined #openttd
12:02:17 *** Fast2 has joined #openttd
12:05:05 *** Keiya has quit IRC
12:19:51 *** glx has joined #openttd
12:19:51 *** ChanServ sets mode: +v glx
12:22:11 *** Devroush has joined #openttd
12:34:31 *** perk11 has quit IRC
12:37:00 *** r0b0tb0y has joined #openttd
12:44:37 *** Keiya has joined #openttd
12:52:00 *** Keiya_ has quit IRC
12:56:29 *** avdg has joined #openttd
12:59:35 *** xiong has joined #openttd
13:01:56 *** lugo has joined #openttd
13:10:53 <Belugas> hello
13:11:04 <planetmaker> hullo Belugas
13:22:05 *** KouDy has joined #openttd
13:32:40 *** r0b0tb0y has quit IRC
13:33:56 <Belugas> mister planetmaker :) i though of you during the weekend, while I was digging in the basement ;)
13:34:12 <dihedral> find a corpse did you? :-D
13:34:18 <dihedral> hello Belugas
13:35:12 <Belugas> well... yes,but neither human or highly developped life forms :)
13:37:50 <planetmaker> :-D
13:38:01 * planetmaker wonders how my name could be connected to basements.
13:38:20 <planetmaker> Should I take care to not run accross you in a dark alley as you already prepared a pit hole? ;-)
13:40:49 *** Keiya_ has joined #openttd
13:40:56 <dihedral> hehe
13:46:52 *** Adambean has quit IRC
13:48:30 *** Keiya has quit IRC
13:56:31 <Belugas> because i was thinking that most probably, you would be the first outsider to enjoy the shower i'm preparing the basement for hehehe
13:56:59 <planetmaker> :-)
13:57:19 <planetmaker> That I'd love to be
13:57:51 *** Lakie` has joined #openttd
14:03:40 *** Lakie has quit IRC
14:04:36 <dihedral> now i want to see pictures ^^
14:06:28 *** perk11 has joined #openttd
14:08:08 *** norbert79 has quit IRC
14:08:32 <Belugas> naughty boy, dihedral, naughty boy
14:08:55 <Belugas> or noughty... or else
14:08:57 <Belugas> BAD BOY!
14:09:04 <planetmaker> he :-)
14:09:10 <planetmaker> But he's right: I'm curious, too :-)
14:09:38 <planetmaker> Also I've heard you have a good camera and good lenses... ;-)
14:09:49 <SpComb> special shower
14:10:53 <Belugas> hehehe
14:11:09 <Belugas> ok, i'll try to make a few shots ;)
14:11:27 <Belugas> my camera is not as good as yours, thuogh hehe
14:12:06 <planetmaker> I doubt that ;-)
14:12:21 <planetmaker> Your model is much newer and as such it probably is at least as good
14:15:02 *** davis has joined #openttd
14:15:31 <planetmaker> I guess especially the sensitivity is much better
14:15:46 <Belugas> only one way to find out :)
14:15:51 <planetmaker> The only thing I'd miss would be the handling which I grew accustomed to
14:23:45 *** fonsinchen has joined #openttd
14:24:28 *** theholyduck has joined #openttd
14:26:39 <Belugas> yeah..the layout is very different
14:26:48 <Belugas> if you play with the controls, that is...
14:26:57 <Belugas> you're all to the left, i'm all to the right
14:27:14 <Belugas> plus, i think it's lighter as well
14:27:22 <Belugas> welll... without lenses :)
14:28:14 *** Lakie` is now known as Lakie
14:29:26 <planetmaker> using manual settings not infrequently, I'm quite accustomed to using a separate dial for exposure time and aperture
14:29:59 <planetmaker> one for the thumb, the other for the index finger
14:30:00 *** heffer has joined #openttd
14:31:26 <Belugas> mmh... indeed
14:32:14 <Belugas> i have only one wheel. So in manual, it controls the exposure, while pressing a button plus using the wheel controls the aperture
14:32:23 <Belugas> really not the same engine :)
14:32:46 <planetmaker> probably just the same wire going to A or to B ;-)
14:34:33 *** Fast2 has quit IRC
14:36:12 *** fonsinchen has quit IRC
14:42:17 *** xiong has quit IRC
14:47:59 *** Keiya has joined #openttd
14:48:33 *** Mucht has joined #openttd
14:55:27 *** Keiya_ has quit IRC
14:55:45 *** Eddi|zuHause has quit IRC
14:56:04 *** Eddi|zuHause has joined #openttd
14:56:18 *** frosch123 has joined #openttd
14:57:15 *** ar3kaw has joined #openttd
14:59:29 <Belugas> could be, but the hell if i'll open it up to verify :)
14:59:36 *** goblin has joined #openttd
15:00:14 *** ar3k has quit IRC
15:03:03 *** ecke has joined #openttd
15:06:36 *** Keyboard_Warrior has joined #openttd
15:13:01 *** theholyduck has quit IRC
15:25:15 *** zodttd2 has joined #openttd
15:25:23 *** Mortomes|Work has quit IRC
15:29:33 *** Lakie has quit IRC
15:30:16 <Belugas> gaaaaaa
15:30:26 <Belugas> just figured out what was wrong
15:30:42 <Belugas> i did not started winamp
15:31:07 <frosch123> good point
15:31:29 * frosch123 starty rhythmbox
15:31:35 *** zodttd has quit IRC
15:33:03 *** ecke has quit IRC
15:34:52 *** Lakie has joined #openttd
15:40:06 *** Keiya_ has joined #openttd
15:44:22 *** perk11 has quit IRC
15:45:13 *** Lakie has quit IRC
15:47:20 *** Keiya has quit IRC
15:50:37 *** dfox has joined #openttd
15:52:09 <Belugas> :)
15:52:17 <Belugas> life without music is... boring
15:52:40 <Eddi|zuHause> indeed... that's why i go making music now.
15:52:41 <avdg> music in brain is cool, but sometimes anoying ;-)
15:54:43 <Belugas> true that. i had that piece in my head for the whole weekend. cannot get it out. could not even record it, even worse :S
15:56:39 *** pugi has quit IRC
16:03:05 *** pugi has joined #openttd
16:10:57 *** theholyduck has joined #openttd
16:17:30 *** Keyboard_Warrior has quit IRC
16:19:02 *** theholyduck has quit IRC
16:21:06 *** theholyduck has joined #openttd
16:30:35 *** KouDy has quit IRC
16:35:58 *** Zuu has joined #openttd
16:38:23 *** KouDy has joined #openttd
16:38:24 <Belugas> that brianher67 guy is a real mess
16:38:37 *** Prof_Frink has joined #openttd
16:39:05 <Belugas> when you though ou have read it all, they come with a guy who can write even worse english
16:42:10 *** Keiya has joined #openttd
16:43:13 *** Keyboard_Warrior has joined #openttd
16:49:52 *** Keiya_ has quit IRC
16:50:15 *** theholyduck has quit IRC
16:50:49 *** TheMask96- has quit IRC
16:54:15 <azaghal> Yo
16:56:26 *** TheMask96 has joined #openttd
17:00:42 <Belugas> Oy
17:02:25 *** Mazur has joined #openttd
17:11:44 *** norbert79 has joined #openttd
17:12:02 *** Kurimus has joined #openttd
17:16:27 *** Zuu_ has joined #openttd
17:16:27 *** Keyboard_Warrior has quit IRC
17:17:31 *** Zuu has quit IRC
17:17:39 *** Zuu_ is now known as Zuu
17:19:06 *** |Jeroen| has joined #openttd
17:24:25 <TrueBrain> ITS SO FLUFFYYYYYYY
17:25:22 * orudge pats TrueBrain
17:26:11 *** JVassie_ has joined #openttd
17:27:32 *** DDR has joined #openttd
17:32:01 *** JVassie has quit IRC
17:33:38 <avdg> trains aren't fluffy -_
17:37:04 *** theholyduck has joined #openttd
17:37:39 <Prof_Frink> A train full of fluff is.
17:38:27 *** tokai has quit IRC
17:40:39 *** tokai has joined #openttd
17:40:39 *** ChanServ sets mode: +v tokai
17:41:50 *** Brianetta has joined #openttd
17:44:50 *** Fast2 has joined #openttd
17:44:50 *** fjb is now known as Guest594
17:44:52 *** fjb has joined #openttd
17:45:36 <CIA-2> OpenTTD: translators * r21038 /trunk/src/lang/ (german.txt korean.txt):
17:45:36 <CIA-2> OpenTTD: -Update from WebTranslator v3.0:
17:45:36 <CIA-2> OpenTTD: german - 2 changes by norbert79
17:45:36 <CIA-2> OpenTTD: korean - 4 changes by junho2813
17:49:24 <Belugas> a cloud train
17:49:32 <Belugas> a train in the sky
17:49:38 <Belugas> with diamonds
17:52:28 *** Guest594 has quit IRC
17:53:18 *** azaghal has quit IRC
17:58:46 <Zuu> hmm, a Skytrain? :-)
17:58:59 <Zuu> (like in Vancouver)
17:59:49 *** theholyduck has quit IRC
18:04:40 * Zuu wants to be entertained
18:05:03 *** Devroush has quit IRC
18:05:32 *** Devroush has joined #openttd
18:13:44 <andythenorth__> se
18:13:49 <andythenorth__> sheep are fluffy
18:16:19 * andythenorth__ flogs dead horse
18:16:38 *** |Jeroen| has quit IRC
18:17:19 *** ecke has joined #openttd
18:17:43 *** pugi has quit IRC
18:18:20 *** pugi has joined #openttd
18:31:56 *** GIORDANO has joined #openttd
18:32:31 <andythenorth__> 5 coal wagons *is* the perfect load for a tank loco yes / no?
18:33:11 <planetmaker> maybe :-P
18:33:23 <planetmaker> I'd use 9
18:33:41 <planetmaker> but that *might* need two engines
18:33:44 <planetmaker> depends
18:33:45 <andythenorth__> would that reach top speed?
18:33:48 <GIORDANO> can anyone help me ?
18:33:52 * andythenorth__ stops with the in jokes
18:33:56 <andythenorth__> rude
18:34:05 <GIORDANO> What happened? I just start the game. First set up a new TRAIN STATION, and others near INDUSTRY. But why all the stations I'm really empty. See my photo shoot.
18:34:05 <planetmaker> no, we don't know your question and your nick shouts
18:34:05 <GIORDANO> In writing my station EMPTY. WOOD Should it exist at the station entrance.
18:34:05 <GIORDANO> If blank how I transports. Can anyone please explain why this way? how not to empty his WOOD STATION exists.
18:34:05 <GIORDANO> I've never experienced anything like this in Transport Tycoon Deluxe (WINDOWS VERSION).
18:34:05 <GIORDANO> To my knowledge in Transport Tycoon Deluxe (Windows version). Each of the pairs deket STATION industry. It is never empty. There are always content.
18:34:06 <GIORDANO> Why in OPENTTD different?.
18:34:06 <GIORDANO> For the first time I experienced in OPENTTD (32 BIT). Weird.
18:34:07 * planetmaker is rude
18:34:08 <GIORDANO> All that I can place near statisiun AGRICULTURAL INDUSTRY, OIL WELL, and so forth. Always empty. I am so confused with OPENTTD (32 BIT) is why different.
18:34:08 <GIORDANO> Can anyone explain or help me?
18:34:10 <GIORDANO> Thank you.
18:34:40 <GIORDANO> http://www.tt-forums.net/viewtopic.php?f=5&t=50699
18:34:46 <avdg> wow, floating is so not nice
18:34:57 <GIORDANO> please help me
18:35:01 * avdg is confused
18:35:08 <GIORDANO> i'm confuse
18:35:11 <planetmaker> as am I
18:35:19 <planetmaker> what's the issue?
18:35:21 <andythenorth__> GIORDANO: have you sent any trains there yet?
18:35:26 <planetmaker> ^
18:35:37 <andythenorth__> the station won't start providing cargo until a vehicle has visited it
18:35:54 <planetmaker> with the correct wagons even
18:36:23 <andythenorth__> send a wood train there, should fix the problem
18:36:28 <andythenorth__> try it and let us know :)
18:36:38 <GIORDANO> oh
18:36:40 * andythenorth__ makes up for earlier rudeness
18:36:40 *** azaghal has joined #openttd
18:36:59 <planetmaker> besides, you can change that behaviour. Somewhere in the adv. settings
18:37:11 <planetmaker> Then cargo will be delivered no matter what the trains transport
18:37:19 <planetmaker> But that makes the game harder
18:38:38 <GIORDANO> how ?
18:39:09 <dihedral> wiki.openttd.org - might contain a buch of answers to questions you do not even have yet
18:39:36 <dihedral> and by reading it you can win a free game
18:39:54 <Zuu> ^^
18:39:55 <GIORDANO> i build station in anywhere like in agriculture, oil wells but the station write : ACCEPT NOTHING
18:40:13 <dihedral> would you mind stepping away from the all caps wordings? :-P
18:40:38 <dihedral> oil wells do not accept, they produce
18:40:44 <Zuu> Accept = What cargo can be transported to the station.
18:40:56 <Zuu> Try placing a station close to a factory.
18:40:57 <dihedral> the key word is 'to'
18:41:52 <Zuu> Hint: Factories accept copper ore, rubber and steel.
18:42:53 <GIORDANO> oh.
18:43:13 <GIORDANO> okay i will try it now :)
18:43:21 <GIORDANO> thank you.
18:43:24 * planetmaker would really welcome nicknames which don't shout
18:43:58 <Prof_Frink> I don't see BRIAN_BLESSED in here.
18:47:35 *** Lurimax has quit IRC
18:50:02 *** tokai has quit IRC
18:51:56 *** tokai has joined #openttd
18:51:56 *** ChanServ sets mode: +v tokai
18:52:58 *** theholyduck has joined #openttd
18:55:22 *** elmz has quit IRC
19:01:59 *** Devroush has quit IRC
19:06:01 <dihedral> c'mon planetmaker, it's not just the NICKNAMES that are SHOUTING out into this CHANNEL
19:06:30 <planetmaker> the last one who did now obviously was you ;-)
19:06:59 <dihedral> ^^
19:07:34 *** Keiya_ has joined #openttd
19:09:11 *** andythenorth__ has quit IRC
19:14:55 *** Keiya has quit IRC
19:15:34 *** lewymati has joined #openttd
19:19:24 *** andythenorth_ has joined #openttd
19:21:29 *** davis has quit IRC
19:26:53 *** JVassie_ has quit IRC
19:30:03 *** KritiK has joined #openttd
19:31:31 *** JVassie has joined #openttd
19:31:46 *** lewymati has quit IRC
19:33:22 *** Pulec has quit IRC
19:33:38 *** Devroush has joined #openttd
19:40:18 *** norbert79 has quit IRC
19:43:52 *** Keiya has joined #openttd
19:44:02 *** keoz has joined #openttd
19:46:02 <GIORDANO> thank you very much vitus for your help. It's work. :)
19:46:58 <GIORDANO> I'm very happy. ^.^
19:47:48 *** Pulec has joined #openttd
19:51:20 *** Keiya_ has quit IRC
19:55:02 *** GIORDANO has quit IRC
19:56:44 *** GIORDANO has joined #openttd
19:59:26 *** GIORDANO has left #openttd
20:00:18 *** Brianetta has quit IRC
20:20:31 *** Biolunar has joined #openttd
20:23:08 <Markk> Is there any way I can have two airports for the same station?
20:23:34 <dihedral> nope ^^
20:23:49 <dihedral> but i think you can add a heliport and an airfield
20:24:10 <dihedral> if it helps :-P
20:24:19 <andythenorth_> how is new airports coming?
20:24:20 <Rubidium> dihedral: stop thinking :)
20:24:27 <Markk> dihedral: Nope
20:24:27 <Markk> :)
20:24:42 * dihedral switches is brains off
20:24:55 * andythenorth_ would like to put an end to helicopter fishing in FIRS
20:25:31 <dihedral> andythenorth_, add military fishing: 'fire in the hole'
20:25:44 <dihedral> # it's raining fish! halleluja! ...
20:26:05 *** DDR has quit IRC
20:38:00 *** ar3kaw has quit IRC
20:40:54 *** Keiya_ has joined #openttd
20:43:25 <Zuu> dihedral: like the whale they blown up?
20:43:50 <CIA-2> OpenTTD: frosch * r21039 /trunk/src/vehicle.cpp: -Fix/Cleanup: Remove an unneeded and even wrong test, which is never reached anyway though.
20:46:54 *** xiong has joined #openttd
20:48:16 *** Keiya has quit IRC
20:50:57 *** lewymati has joined #openttd
20:51:15 *** welshdragon has quit IRC
20:53:21 *** LaSeandre has quit IRC
20:56:53 *** Chruker has quit IRC
20:58:58 *** lewymati has quit IRC
21:00:28 *** LaSeandre has joined #openttd
21:00:28 *** welshdragon has joined #openttd
21:01:08 *** GIORDANO has joined #openttd
21:01:27 <GIORDANO> where i must extract : gui4fix.tar ?
21:01:31 <GIORDANO> what folder ?
21:01:46 <GIORDANO> does anyone know ?
21:02:03 <GIORDANO> http://www.tt-forums.net/viewtopic.php?f=36&p=644152#p644152
21:02:43 <avdg> that post is 3 years old :o
21:03:16 <GIORDANO> oh
21:03:20 <GIORDANO> it's work now ?
21:04:22 *** nicfer has joined #openttd
21:04:45 <GIORDANO> avdg if i find a *.extension, where i must put it ?
21:05:05 <GIORDANO> avdg if i find a *.TAR extension, where i must put it ?
21:05:07 <avdg> I don't know, I'm not doing gfx development
21:05:14 <avdg> and please don't float
21:05:51 <GIORDANO> ok :)
21:09:11 *** GIORDANO has left #openttd
21:12:23 *** Kurimus has quit IRC
21:14:29 *** KouDy has quit IRC
21:19:39 *** GT has joined #openttd
21:20:23 <GT> giordano: Use this tar http://jupix.info/openttd/gfxdev-repo/index.php?act=file&id=44, put it in the data directory
21:20:37 <avdg> he's gone
21:21:35 <GT> Well, that saves answering a reply to:it does not work
21:32:26 *** andythenorth_ has quit IRC
21:33:40 *** frosch123 has quit IRC
21:34:46 <Eddi|zuHause> All Hell Breaks Loose!
21:35:01 <Eddi|zuHause> or in other words, MB actually releases a GRF...
21:36:05 <SmatZ> what's strange about it?
21:36:20 *** Fast2 has quit IRC
21:36:32 *** theholyduck has quit IRC
21:36:39 <Eddi|zuHause> except for the ECS and FIRS cargo hacks, he hasn't actually released anything in 5 years...
21:36:59 <SmatZ> I thought he is a newgrf coder
21:37:05 <SmatZ> ok, I was wrong
21:37:29 * SmatZ is really lost in the newgrf world
21:37:48 <Hirundo> Eddi|zuHause: what, where? Do you have a link?
21:38:09 *** Keiya_ has quit IRC
21:38:15 <Eddi|zuHause> Hirundo: http://www.tt-ms.de/forum/showthread.php?tid=4929
21:38:30 *** Keiya_ has joined #openttd
21:39:12 <Hirundo> Ah, the German forum. Could've known it
21:39:35 <Eddi|zuHause> Hirundo: "exclusive preview" ;)
21:39:56 <Hirundo> That takes one year in the TTD world
21:39:57 *** theholyduck has joined #openttd
21:40:30 <Rubidium> what? Duke Nukem is released?
21:40:35 <SmatZ> hehe
21:40:37 *** Biolunar has quit IRC
21:40:57 <SmatZ> wasn't Duke Nukem: Manhattan Project actually DNF?
21:41:19 <Eddi|zuHause> Rubidium: no, it's not a DBSet...
21:41:41 <SmatZ> NewShips XL ?:)
21:41:43 <Rubidium> oh, it's not on bananas so it doesn't exist
21:41:58 <SmatZ> :D
21:44:29 *** Keyboard_Warrior has joined #openttd
21:45:16 <Eddi|zuHause> SmatZ: no, it's not an "XL", it's more of an "Update" for supporting ECS/FIRS (including cargo graphics)
21:46:00 *** DDR has joined #openttd
21:51:01 *** theholyduck has quit IRC
21:51:28 *** ar3k has joined #openttd
21:55:11 *** Keiya_ has quit IRC
21:57:40 <PeterT> TrueBrain: who is a PeterT in the making?
21:59:45 <Eddi|zuHause> is it ironic to install windows in a window? ;)
22:02:43 *** Lakie has joined #openttd
22:04:21 *** rhaeder has quit IRC
22:06:43 *** GT has quit IRC
22:07:45 *** rhaeder has joined #openttd
22:09:05 *** keoz has quit IRC
22:09:27 <Zuu> Eddi|zuHause: A computer that resides in a window between the glases?
22:10:00 <Zuu> Or just a virtual machine running as a window on your computer?
22:10:42 <Eddi|zuHause> just a virtual machine, i'm afraid ;)
22:11:40 <Eddi|zuHause> but it's kinda acting up
22:17:06 *** goblin has quit IRC
22:18:35 <Zuu> Oh, too bad. A window-computer would be cool :-)
22:19:56 <Zuu> If you deattach the laptop screen or find a somewhat thin laptop where you can open up the screen 180 degrees, you could probably get it to fit in a 2-glass window.
22:20:33 <Zuu> Drill a hole for the power cord and possible a usb-hub for external devices and you have your window-computer :-)
22:22:40 <Zuu> I'm quite sure my apartment building is old enough to not have 3-glass windows, so that would be an "interesting" project. That said, I'd rather buy a extra window at Bauhaus than experimenting with my windows :-)
22:23:31 *** r0b0tb0y has joined #openttd
22:25:43 <Zuu> Hmm, my kitchen windows has internal blinders and a good 5-10 cm distance between the outer and inner glass. More than plenty of space ^^
22:29:44 *** Lakie has quit IRC
22:31:39 *** Cybertinus has quit IRC
22:34:41 *** Zuu has quit IRC
22:39:15 <fjb> Hm... a -0 would be helpful...
22:41:02 *** Keyboard_Warrior has quit IRC
22:49:52 *** HerzogDeXtEr1 has joined #openttd
22:54:50 *** xiong has quit IRC
22:55:51 *** HerzogDeXtEr has quit IRC
22:55:53 *** dfox has quit IRC
23:00:02 *** theholyduck has joined #openttd
23:24:02 *** theholyduck has quit IRC
23:28:00 *** Brianetta has joined #openttd
23:28:51 *** Eddi|zuHause has quit IRC
23:29:37 *** Eddi|zuHause has joined #openttd
23:30:23 *** Fuco has quit IRC
23:31:16 *** Devroush has quit IRC
23:48:11 *** pugi has quit IRC
23:49:05 *** avdg has quit IRC
23:50:39 <Terkhen> good night
23:58:18 <SmatZ> good night, Terkhen