00:00:02 -!- omarax has quit [Remote host closed the connection] 00:00:50 wow 00:00:52 gammafunk 00:00:57 are you going to take that slam against sif 00:00:59 https://crawl.develz.org/tavern/viewtopic.php?f=17&t=20436&view=unread#unread 00:01:44 Yes 00:02:00 Because of the source 00:02:31 dang 00:04:36 -!- sooheon has quit [Ping timeout: 258 seconds] 00:04:59 -!- sooheon_ has quit [Ping timeout: 258 seconds] 00:06:51 -!- amalloy_ is now known as amalloy 00:09:01 -!- Zeor has quit [Quit: Leaving.] 00:09:17 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-742-g4563caa (34) 00:09:36 -!- miek_ has quit [Ping timeout: 244 seconds] 00:11:18 -!- miek_ has joined ##crawl-dev 00:11:28 -!- CanOfWorms has quit [Quit: ChatZilla 0.9.92 [Firefox 3.6.28/20120306064154]] 00:11:53 -!- PleasingFungus has quit [Ping timeout: 250 seconds] 00:14:12 !tell |amethyst When trying to compile crawl on windows 10 under msys2 using gcc 5.3.0 with 'make debug-lite -j3 USE_PCRE=y EXTERNAL_FLAGS_L=-DDEBUG_STATISTICS' I get: http://dpaste.com/3FP3F5A 00:14:13 gammafunk: OK, I'll let |amethyst know. 00:17:50 <|amethyst> gammafunk: odd, that means it's being detected as Cygwin 00:18:42 <|amethyst> gammafunk: all that is inside #ifdef TARGET_COMPILER_CYGWIN 00:19:21 <|amethyst> which is only supposed to be set #if defined (__CYGWIN__) || defined (__CYGWIN32__) 00:20:34 <|amethyst> really the check should be about newlib, or better about the existence of std::to_string 00:22:38 <|amethyst> there's probably some obscene SFINAE shit you can do to actually check for the latter at compile time these days 00:22:50 <|amethyst> which like two people in the world understand 00:25:10 |amethyst: oh, interesting 00:25:34 hrm 00:25:47 so I could use gcc -V to see what was being defined there? 00:26:34 or -v rather 00:26:42 -!- destroythecore has quit [Read error: Connection reset by peer] 00:27:01 hrm, my target is x86_64-pc-msys 00:28:51 here's my output of gcc -dM -E : http://dpaste.com/3QKCAMZ 00:29:03 it does indeed have __CYGWIN__ 00:29:34 hrm 00:31:02 <|amethyst> I guess we need something like 00:31:34 -!- xnavy has quit [Ping timeout: 240 seconds] 00:31:55 <|amethyst> #if defined (__MSYS__) \n #define TARGET_COMPILER_MINGW \n #elif defined (__CYGWIN__) || defined (__CYGWIN32__) 00:32:06 <|amethyst> to replace the line 00:32:18 <|amethyst> !source platform.h:154 00:32:18 https://github.com/crawl/crawl/blob/master/crawl-ref/source/platform.h#l154 00:32:19 that sounds reasonable 00:32:36 -!- Kintak has quit [Ping timeout: 260 seconds] 00:32:46 shall I try that modification and see if things get fixed? 00:33:21 -!- xnavy_ is now known as xnavy 00:35:58 <|amethyst> hm 00:36:41 <|amethyst> try it but really it *is* based on cygwin 00:37:09 seems to be compiling 00:37:28 got past the file it had failed at before, but I'll let you know if the build completes 00:38:20 <|amethyst> you might run into problems in libw32c.cc 00:38:22 since git for windows sdk is also using msys2 but is compiling without issues 00:38:30 I wonder why this changed 00:38:39 it's an older gcc with that install, I think 00:38:43 <|amethyst> hm 00:38:47 <|amethyst> IIRC 00:38:56 <|amethyst> the problem with missing to_string 00:39:05 well, it did error, just not where you said 00:39:12 CXX ctest.o 00:39:12 crash.cc:43:22: fatal error: execinfo.h: No such file or directory 00:39:12 compilation terminated. 00:40:07 never even heard of that header 00:40:29 hrm, doesn't even exist on my ubuntu system 00:40:33 is it a windows-only thing? 00:40:38 <|amethyst> it's backtrace() 00:40:52 ah, yeah a system header 00:41:09 <|amethyst> which mingw has but I guess cygwin does not 00:41:36 hrm, hence your comment that msys2 is based on cygwin 00:41:41 so we can't just assume it's not cygwin? 00:41:45 <|amethyst> right 00:42:24 I mean, this compiler is still a mingw compile is it not? 00:42:38 <|amethyst> doesn't seem like it 00:42:48 do I have the wrong gcc installed 00:42:57 pacman -Ss gcc seems to indicate it's the right one 00:43:08 there are some toolchain things for mingw 00:43:41 <|amethyst> hm 00:44:00 This is the output of pacman -Ss: http://dpaste.com/36866AH 00:44:13 -!- ProzacElf has joined ##crawl-dev 00:44:18 <|amethyst> gammafunk: msys/ instead of mingw64/ 00:44:32 <|amethyst> means it depends on the msys library, which is a cygwin fork 00:44:46 I installed the mingw64 toolchain stuff initially 00:44:51 but gcc the command wasn't found 00:44:56 until I installed msys/gcc 00:45:17 -!- PleasingFungus has joined ##crawl-dev 00:45:27 hrm 00:46:20 Do I want 00:46:21 msys/mingw-w64-cross-gcc 5.3.0-1 (mingw-w64-cross-toolchain mingw-w64-cross) 00:46:21 Cross GCC for the MinGW-w64 00:46:33 <|amethyst> aha, that sounds like what you want 00:46:38 I shall try it 00:46:43 <|amethyst> that said 00:46:53 <|amethyst> it would be nice if we did support building against msys2 00:47:06 yeah, if you can suggest fixes I can certainly test 00:47:41 <|amethyst> oh duh 00:47:50 -!- Dracunos has quit [Ping timeout: 244 seconds] 00:47:51 wonder what the earliest possible version of crawl you could host would be (console and webtiles). buddy in another room asked and I wasn't sure the answer (though I bet it's not too hard to figure out) 00:48:26 <|amethyst> probably 2.72 for console 00:48:42 -!- Rust3dCor3 has quit [Ping timeout: 244 seconds] 00:48:46 wow, like linley crawl 2.72? 00:48:49 -!- KurzedMetal has quit [Quit: Leaving] 00:49:02 <|amethyst> I don't know how well it would work on a server 00:49:27 <|amethyst> but crawl-ancient has a branch with 2.72 allegedly made to compile on modern Linux 00:49:55 <|amethyst> "modern" as of several years ago 00:50:00 <|amethyst> CDO has 4.1.2a 00:50:00 someone in sa was asking about that 00:50:08 theoretically, shouldn't any given version compile on modern linux as long as it's not calling on packages that are totally deprecated? 00:50:23 <|amethyst> ProzacElf: only the ones that worked on Linux in the first place 00:50:30 well, ok 00:50:32 that's fair 00:50:48 <|amethyst> let me see 00:51:25 <|amethyst> oh 00:51:36 is crawl-ancient a branch? or a different repo? 00:51:43 <|amethyst> a different repo 00:51:45 ah ok 00:51:46 <|amethyst> ??crawl-ancient 00:51:46 crawl-ancient[1/1]: git://github.com/crawl-ref/crawl-ancient.git contains 2.72, 4.00b26, {4.1}.2alpha, and {crawl alternative} 00:51:52 <|amethyst> ah 00:52:10 <|amethyst> 2.72-lnx was written in pre-standard C++ 00:52:18 <|amethyst> as in #include 00:52:24 I'm sure it would kinda work. I got DF and cataclysm-dda working. 00:52:28 well 00:52:34 <|amethyst> hence the need for a port 00:52:35 hm. nm. I see what you are saying 00:52:48 <|amethyst> you want branch ancient-2.72 00:53:40 <|amethyst> not ancient, even though it has a commit for 2.72, because that doesn't have the fixes to make it compile 00:53:53 lol 00:54:04 -!- Dracunos7 has quit [Ping timeout: 240 seconds] 00:54:06 "kilobyte: Make the damn thing compile and work (a very crude port)." 00:54:50 does dcss use ncurses still? 00:54:50 i wonder what percentage of 'damn's in DCSS commit messages belongs to kilobyte 00:55:10 -!- FireSight has quit [] 00:55:31 -!- andre_1 has quit [Ping timeout: 276 seconds] 00:55:39 |amethyst: will I have to use CROSSHOST to compile with this mingw compiler I installed? 00:55:45 %git :/ncurses 00:55:45 07|amethyst02 * 0.19-a0-246-g5bb4cf0: Update Ash bondage on load. 10(4 weeks ago, 1 file, 6+ 2-) 13https://github.com/crawl/crawl/commit/5bb4cf025403 00:56:02 <|amethyst> gammafunk: probably? 00:56:41 <|amethyst> %git :/\ 07|amethyst02 * 0.18-a0-1360-g617818c: Use -isystem for ncurses (geekosaur) 10(4 months ago, 1 file, 5+ 5-) 13https://github.com/crawl/crawl/commit/617818c1bf0e 00:56:45 minmay: 10/12 00:57:14 lol 00:57:28 i got so sick of waiting on ash bondage updates 00:57:29 83% of damns, vs 14% of all commits 00:57:34 now they just happen when i load up 00:57:49 <|amethyst> hm, I got 15 00:58:21 |amethyst: I didn't count "Elyvilon be damned", "most damningly of all", or "I will never escape this damned place" 00:58:35 git log --grep [^d][Dd]amn[^a] and then not counting those three 00:58:44 did you count damnation? 00:58:45 <|amethyst> I only counted \ 00:59:33 ah, your approach seems more effective 00:59:33 <|amethyst> ah 00:59:33 <|amethyst> end of line 00:59:44 <|amethyst> wouldn't be matched by [^a] 00:59:48 yeah, i was wondering 00:59:54 so that puts him at 13/15 01:00:04 -!- omarax has quit [Remote host closed the connection] 01:00:21 damn. 01:00:39 oh interesting. crawl-ancient was just one folder of files 01:00:54 <|amethyst> johnstein: depend on which version you have checked out 01:01:40 <|amethyst> which is kind of annoying if you're doing archaeology, because you need a different path each time you do an older git blame 01:01:47 -!- Laraso has quit [Ping timeout: 244 seconds] 01:02:18 <|amethyst> but more accurate, because AFAIK it tracks the layout of the original source, which changed several times 01:03:05 <|amethyst> 5/6 instances of \ 01:03:30 i find git blame will occasionally track to older files, but i'm not sure how to reproduce or describe the behavior exactly 01:03:47 <|amethyst> it does track the changes back to older files 01:04:05 <|amethyst> the problem is that when I want to do one version older that what I see for a particular line in git blame 01:04:28 <|amethyst> I issue git blame 0123versionhash^ filename.cc 01:04:54 <|amethyst> but then that doesn't work, because that version didn't have filename.cc in the same location 01:05:49 ok, found the right crosshost target, now to see if it compiles... 01:06:08 after git status finishes, hopefully in the next hour... 01:06:13 -!- dtsund has joined ##crawl-dev 01:07:05 <|amethyst> gammafunk: oh, for a native msys2 build (which is probably not what we want for distribution), probably you can change that 01:07:09 <|amethyst> #ifdef TARGET_COMPILER_CYGWIN 01:07:10 <|amethyst> to 01:07:43 <|amethyst> #if defined(TARGET_COMPILER_CYGWIN) && !defined(__MSYS__) 01:07:48 <|amethyst> (in stringutil.h) 01:08:50 |amethyst: so I'd not change the other system header file, but would change stringutil.h, to fix the original error? 01:08:58 <|amethyst> yeah 01:08:59 er not system header file, but the platform header 01:09:12 <|amethyst> right 01:09:15 I'm trying a crosshost compile right now 01:09:29 since msys2 is supposed to enable creating windows native binaries 01:09:47 what's going to be the difference between msys2 builds and something like this crosshost I'm doing? 01:10:40 I mean msys2 itself is just the shell/environment and associated packages, but they're all supposed to be windows-native, not requiring execution under any environment, like cygwin does 01:10:43 <|amethyst> practically, requires the msys DLL and not just MSVCRT 01:11:12 <|amethyst> possibly some path-related changes? 01:11:33 <|amethyst> keep in mind, I don't do Windows development and don't really know Windows 01:11:46 yeah, but you understand this stuff better than I regardless 01:11:59 <|amethyst> when I say path issues, that would be more on us 01:12:06 well I'll try the crosshost build after git stash completes (in the next hour, hopefully) 01:12:14 and then can try the stringutil.h fix you mention 01:12:19 <|amethyst> IIRC we treat Cygwin as meaning "use Unix-like paths" 01:13:04 <|amethyst> basically our checks are a mess 01:14:15 can we just remove operating systems already 01:14:30 <|amethyst> well, not a mess exactly, but 01:14:54 <|amethyst> the fact that we have TARGET_COMPILER_CYGWIN and TARGET_COMPILER_MINGW is a little weird 01:15:17 yeah I guess since cygwin is not a compiler 01:15:23 <|amethyst> yeah 01:15:51 <|amethyst> and then we use them for things that are really about the C or C++ library 01:16:06 <|amethyst> e.g. "is to_string missing because of a stupid bug" 01:16:26 <|amethyst> we could throw more stuff into configure I suppose 01:17:23 <|amethyst> oh 01:17:25 <|amethyst> how's this 01:17:54 well 01:17:56 <|amethyst> if you're compiling for something that's not Windows or Cygwin or Linux, and you're on an ARM 01:18:04 crosscompiling failed at a random file 01:18:08 <|amethyst> then obviously your OS is "NDSFIRMWARE" 01:18:13 CXX dgnevent.o 01:18:13 make: *** [Makefile:1617: dgn-overview.o] Error 127 01:18:16 <|amethyst> which I assume is Nintendo DS 01:18:33 Error 127 is a good error imo 01:19:15 maybe I should not enable debug or any other stuff, but that's not a great sign 01:21:10 <|amethyst> might be worth adding V=1, but other than internal compiler error I don't know why you'd get an error with no diagnostics from one file but not another 01:21:39 -!- Mekire has quit [Quit: Page closed] 01:22:09 -!- WalkerBoh has quit [Remote host closed the connection] 01:22:22 can I simply add V=1 to my make command? 01:24:15 -!- Harudoku has quit [Ping timeout: 250 seconds] 01:25:08 <|amethyst> yeah 01:25:10 -!- CanOfWorms has joined ##crawl-dev 01:25:12 <|amethyst> that will show the commands 01:26:02 <|amethyst> so you can see if it actually got as far as trying to run g++ on line 1617 or if make got confused 01:26:38 -!- valrus has quit [Ping timeout: 258 seconds] 01:26:56 thanks 01:32:23 |amethyst: well I changed my make args and it's got past that file 01:32:33 which doesn't make me any happier really 01:32:48 was using -j3 as well as debug-lite target 01:33:19 maybe I should just try the msys2 native build and be done with it, since building for that other target isn't something we need in any way 01:33:37 I do wonder if it was just the use of -j though, I seem to recall some issues there 01:33:45 maybe I'll try recompiling with the same args but no -j3 01:33:50 scoreboard is back in business, it's updating hourly for CPO players only right now https://crawl.project357.org/scoreboard/index.html 01:34:01 i think we're getting pretty close to a true public release 01:34:07 cool 01:34:11 rather than just occasionally mentioning it here 01:34:20 woah can we change the backround image though 01:34:29 it's like bad dither marble 01:34:53 patches welcome! 01:35:12 i actually quite like it, compared to a plain background. it's low contrast enough to be ignored 01:36:58 unlike literally everything else chequers has ever done, i think the background is fine 01:37:22 wow, unprecedented 01:37:52 I wonder if "Highscores" should be rnamed 01:37:53 *renamed 01:37:57 chequers: "Version: 0.19" is a bit misleading though unless your players are using a time machine 01:38:15 it's kind of like "Achievements" 01:38:16 i guess it is tomorrow in australia, maybe they have 0.19 there already 01:38:43 since it has realtime as well as simply low turncount without regard to score 01:39:20 but that secondary tab is perhaps a bit confusing since it says "Overall" "Species" ... 01:39:51 which is talking about score, then it switches to things not score related with Shortest and Fastest 01:40:08 perhaps Shortest and Fastests could go on their own Achievements tab 01:40:13 along with other things that might get added 01:40:32 these days 'most pacific' isn't too much a thing, is it 01:41:14 -!- Kalir has quit [Quit: I'M OUT SON. PEACE, LOVE, EXPLOSIONS.] 01:42:17 oh wow. it compiled! 01:42:31 lots of warnings/deprecated stuff 01:43:19 I already miss autoexplore 01:43:36 oh. and arrows/numpad don't work. heh 01:44:28 "You have 23 points of unallocated experience." 01:45:41 -!- Guest9981 has quit [Ping timeout: 250 seconds] 01:47:07 -!- nikheizen has quit [Quit: leaving] 01:51:41 I think the compilation issue was related to use of -j 01:51:54 removing only -j3 seems to get it past that file 01:52:04 i don't think we can call it 'achievements' because we're going to add achievements 01:52:24 except probably not called 'achievements' so the more conservative community elements don't have a fit 01:52:45 amalloy: yeah, not sure how to represent trunk versions, any ideas? 01:52:57 chequers: why not just like Sequell does? 01:52:57 amalloy: i think '0.19-a' is really obtuse, if you're going to suggest that 01:53:30 call it 0.19-unstable if you want, or -trunk 01:54:07 maybe -trunk 01:54:14 or even -prealpha to spell it out?! 01:54:50 -!- ystael has quit [Ping timeout: 244 seconds] 01:55:11 chequers: I don't know why you think people would object to the word achievement if you add achievements 01:55:14 what are you working on chequers? 01:56:36 yeah sequell has a field 01:56:37 johnstein: linked above 01:56:38 !kw alpha 01:56:38 Built-in: alpha => alpha=true 01:56:52 and a major version field 01:57:01 oh oops. missed it. ty 01:57:09 so 0.19-a has alpha=true, and I think 0.18-a should as well 01:57:17 !lg * cv=0.18-a x=alpha 01:57:18 418013. [alpha=true] LORDOFBUTT the Skirmisher (L3 MiFi), quit the game on D:2 on 2016-06-15 10:28:26, with 48 points after 731 turns and 0:01:35. 01:57:20 yeah 01:57:28 -!- hellmonk has quit [Quit: Page closed] 01:58:05 -!- yesno has quit [Ping timeout: 258 seconds] 01:58:42 -!- debo_ has joined ##crawl-dev 01:58:43 so you suggest instead of one column for version, have two: version and "release status" {alpha,beta,final} 01:58:47 ? 01:59:05 -!- debo_ is now known as Guest83712 01:59:12 I think if you did it this way, it'd be alpha and stable 01:59:29 since for scoring/cheevo purposes beta == stable 01:59:50 although that's not precisely true, it seems true enough that the simplification is good 01:59:56 !kw beta 01:59:57 No keyword 'beta' 02:00:03 -!- omarax has quit [Remote host closed the connection] 02:00:13 yeah sequell doesn't have a notion of anything other than alpha and stable, I think 02:00:26 even though we do tag for beta, sequell doesn't see it as anything but alpha 02:01:08 I think the states might have to be something like alpha/stable/any ? 02:01:39 I'm not sure how this has to work for you on the database side nor on the interface side, but often people are interested in alpha+stable for a specific version 02:01:53 yeah 02:02:05 the simplest way would just be to count alpha and stable together, and only offer version 02:02:28 which would be nice enough to have on its own, compared to what we have now, which is nothing other than a static column 02:03:11 right now we only track 0.x, but changing that isn't too hard 02:03:38 (and we normalise all versions to 0.x) 02:04:16 are you going to make it possible to see pages filtered by version somehow? or is this just for what to display in columns? 02:04:31 yeah, that's a definite goal 02:07:46 -!- vale_ has quit [Remote host closed the connection] 02:11:02 oh no! it compile but failed to link! 02:11:21 LINK crawl.exe 02:11:21 /opt/lib/gcc/x86_64-w64-mingw32/5.3.0/../../../../x86_64-w64-mingw32/lib/../lib/libwinmm.a: error adding symbols: File in wrong format 02:11:24 collect2: error: ld returned 1 exit status 02:11:43 |amethyst: does the above mean anything to you? 02:11:54 I'm going to try the msys2 build now 02:13:24 -!- simmarine has quit [Read error: Connection reset by peer] 02:20:09 -!- Guest83712 has quit [Ping timeout: 250 seconds] 02:21:05 'highscores' title doesn' 02:21:09 doesn't describe its page perfectly 02:21:18 as it includes real-time and shortest wins etc 02:21:28 but it is tricky to come up with a general enough title 02:22:13 the alternative is to pull out the non-highscores into their own page, but right now they'd be pretty lonely with only shortest and fastest wins 02:22:56 keeping it as is might be 'good enough' for now 02:24:33 sure it's no major issue or anything 02:24:36 just a minor bug 02:24:55 ontoclasm: by the way, if you feel included to update the XXX spell icon to use your great new tmons tile, please do so 02:25:51 oh, hm 02:25:53 -!- Grivan has quit [Ping timeout: 260 seconds] 02:25:55 i forgot about it 02:26:39 -!- GauHelldragon has quit [Ping timeout: 250 seconds] 02:27:52 ??xxx 02:27:52 summon horrible things[1/1]: Level 8 summoning spell, produces large abominations and tentacled monstrosities. Has a 1/5 chance to drain intelligence by 1d3 points (1d2 in 0.15). Tentacled monstrosites and abominations have separate summons caps. Affectionately known as XXX. 02:29:09 Well, I do think shortest / fastest is a type of highscore 02:29:18 does it still drain int? i thought that got removed 02:29:21 You forgot about XXX! 02:29:24 yes it does 02:29:27 less than it used to though 02:29:33 all the tabs except overall slice the data in some, arbitrary way 02:30:05 chequers: well it's a high score in the most general sense of a score, but score is going to make people think of one thing in crawl, primarily 02:30:15 and it's not a high score in that sense at all for those categories 02:30:36 tbf for lowest turncount it's a high score if you require urune=3 02:30:43 yeah, fair 02:30:44 since lower turncount will give you a higher score 02:30:53 but for realtime it's not that at all, at least not directly 02:30:59 but yeah that's not major at all 02:31:17 biggest goal is to get streak logic workin again 02:31:27 then zxc can be happy he is #1 and we can launch :D 02:31:41 -!- debo_ has joined ##crawl-dev 02:31:59 -!- debo_ is now known as Guest72125 02:33:00 |amethyst: with the stringutil.h fix, I get this now: 02:33:01 CXX initfile.o 02:33:01 initfile.cc: In function ‘std::string _find_executable_path()’: 02:33:01 initfile.cc:4291:66: error: ‘readlink’ was not declared in this scope 02:33:01 readlink("/proc/self/exe", tempPath, sizeof(tempPath) - 1); 02:33:21 -!- ProzacElf has quit [Ping timeout: 260 seconds] 02:33:34 this is with a native msys2 compilation 02:41:44 -!- Demise_ has joined ##crawl-dev 02:43:25 -!- Shard1697 has quit [Ping timeout: 244 seconds] 02:44:57 @??tentacled_monstrosity 02:44:58 tentacled monstrosity (03X) | Spd: 10 | HD: 23 | HP: 104-149 | AC/EV: 5/5 | Dam: 22, 17, 13, 903(constrict) | 05demonic, 10doors, amphibious, unholy, see invisible | Res: 06magic(160), 05fire, 02cold, 10elec, 03poison, 12drown, 04rot, 13neg+++, 13torm | Vul: 08holy++ | XP: 2962 | Sz: Giant | Int: human. 02:45:21 @??large abomination 02:45:21 large abomination (04X) | Spd: 6-12 | HD: 11 | HP: 42-58 | AC/EV: 11/5 | Dam: 40 | 07undead, evil, unbreathing | Res: 06magic(100), 09poison+++, 12drown, 04rot+++, 13neg+++, 13torm | Vul: 08holy++, 11silver | XP: 340 | Sz: Big | Int: brainless. 02:45:27 @??large abomination 02:45:27 large abomination (04X) | Spd: 6-12 | HD: 11 | HP: 42-58 | AC/EV: 11/5 | Dam: 40 | 07undead, evil, unbreathing | Res: 06magic(100), 09poison+++, 12drown, 04rot+++, 13neg+++, 13torm | Vul: 08holy++, 11silver | XP: 340 | Sz: Big | Int: brainless. 02:45:28 -!- Insomniak` has quit [Ping timeout: 264 seconds] 02:46:01 -!- tabstorm has quit [Ping timeout: 276 seconds] 02:48:44 -!- Guest72125 has quit [Ping timeout: 252 seconds] 02:50:19 -!- Insomniak has quit [Quit: I like to rock] 02:54:23 does anything have holy+ vuln? 02:54:29 and does anything have holy resist? 02:54:31 @??daeva 02:54:31 daeva (08A) | Spd: 10 | HD: 14 | HP: 98-135 | AC/EV: 10/11 | Dam: 25, 10 | 08holy, 10weapons, 10items, 10doors, fighter, see invisible, fly | Res: 06magic(140), 03poison, 04rot, 13neg+++, 08holy | XP: 1868 | Sp: smiting (7-17) [06!sil] | Sz: Medium | Int: human. 02:55:11 hm, but holy brand does nothing to normal monsters, how does that logic work 02:55:21 holy works if you are vulnerable, and not at all otherwise? 02:55:28 https://dl.dropboxusercontent.com/u/1000017/crawl/xxx.png 02:55:31 -!- Krakhan has quit [Ping timeout: 246 seconds] 02:55:42 how's that 02:56:33 nice 02:57:17 disappointed it's not bottle of booze 02:57:26 :Y 02:57:38 all the aboms and tmons are actually just your imagination 02:58:33 -!- Leszczynek has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 02:58:53 hallucinations are back 02:59:39 -!- debo__ has joined ##crawl-dev 03:00:03 -!- omarax has quit [Remote host closed the connection] 03:01:05 -!- destrovel has quit [Ping timeout: 250 seconds] 03:02:41 03ontoclasm02 07* 0.19-a0-743-ge0d55e4: Summon Horrible Things tile 10(29 seconds ago, 1 file, 0+ 0-) 13https://github.com/crawl/crawl/commit/e0d55e4bd0d2 03:04:16 -!- debo__ has quit [Ping timeout: 246 seconds] 03:12:07 Unstable branch on crawl.beRotato.org updated to: 0.19-a0-743-ge0d55e4 (34) 03:16:08 -!- XVar has quit [Ping timeout: 244 seconds] 03:16:24 -!- Shard1697 has joined ##crawl-dev 03:20:01 -!- bitcoinbastard has quit [Ping timeout: 260 seconds] 03:26:09 finally python is like c++ 03:26:11 !tell Lasty_ should usk paralysis affect freed slaves? i would have thought no, but it did 03:26:12 amalloy: OK, I'll let lasty_ know. 03:26:18 I just added a type hint of Iterable[Tuple[Player,Iterable[Game]]] 03:31:14 !tell Lasty_ why can't i line pass through an invisible enemy? when i try, an empty line is printed for some reason as well 03:31:14 amalloy: OK, I'll let lasty_ know. 03:31:15 -!- CanOfWorms has quit [Remote host closed the connection] 03:32:05 -!- dtsund has quit [Ping timeout: 250 seconds] 03:36:35 -!- Grivan has quit [Ping timeout: 252 seconds] 03:38:22 ontoclasm: cool, nice how you made its tentacles all lined up 03:38:38 A well-groomed tmons is a happy tmons 03:42:39 hah 03:46:45 -!- XVar has quit [Ping timeout: 260 seconds] 03:47:04 -!- travis-ci has joined ##crawl-dev 03:47:05 The build has errored. (master - e0d55e4 #5989 : ontoclasm): https://travis-ci.org/crawl/crawl/builds/139684879 03:47:05 -!- travis-ci has left ##crawl-dev 03:52:27 -!- Zekka has quit [Ping timeout: 250 seconds] 03:54:28 -!- elliptic has quit [Quit: Leaving] 03:55:47 -!- elliptic has joined ##crawl-dev 03:58:13 -!- home has quit [Quit: Leaving] 04:00:03 -!- omarax has quit [Remote host closed the connection] 04:05:11 -!- VoxSomniator_ has quit [Quit: Leaving] 04:05:27 -!- cribozai_ has quit [Quit: Lost terminal] 04:06:48 -!- olscumpy has quit [Ping timeout: 260 seconds] 04:07:23 -!- ystael has quit [Ping timeout: 252 seconds] 04:08:41 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-743-ge0d55e4 (34) 04:11:15 -!- olscumpy has joined ##crawl-dev 04:13:13 -!- syraine has joined ##crawl-dev 04:18:23 -!- royiv has quit [Ping timeout: 252 seconds] 04:38:36 -!- Patashu_ has joined ##crawl-dev 05:00:03 -!- omarax has quit [Remote host closed the connection] 05:12:08 -!- bitcoinbastard_ has quit [Ping timeout: 260 seconds] 05:15:26 -!- Nattefrost has quit [Read error: Connection reset by peer] 05:16:31 -!- PleasingFungus has quit [Ping timeout: 272 seconds] 05:27:33 -!- mopl has quit [Ping timeout: 250 seconds] 05:31:01 -!- mopl_ has quit [Ping timeout: 250 seconds] 05:31:20 -!- GauHelldragon has quit [Ping timeout: 244 seconds] 05:32:45 -!- mopl has quit [Ping timeout: 250 seconds] 05:45:54 -!- ontoclasm has quit [Quit: Leaving.] 05:51:07 -!- Mekire has quit [Quit: Page closed] 05:53:53 -!- olscumpy has quit [Ping timeout: 264 seconds] 05:58:52 -!- removeelyvilon has quit [Quit: Page closed] 06:00:02 -!- omarax has quit [Remote host closed the connection] 06:01:41 -!- Twiggytwiggytwig has quit [Read error: Connection reset by peer] 06:02:37 -!- Telnaior has quit [Ping timeout: 258 seconds] 06:02:39 -!- Telnaior_ is now known as Telnaior 06:04:53 -!- Jafet has joined ##crawl-dev 06:08:29 -!- Telnaior has quit [Ping timeout: 250 seconds] 06:18:11 -!- Lasty has joined ##crawl-dev 06:18:59 -!- ystael has quit [Ping timeout: 260 seconds] 06:21:31 -!- amalloy is now known as amalloy_ 06:26:46 -!- sooheon has quit [Ping timeout: 244 seconds] 06:48:58 -!- Nattefrost has quit [Ping timeout: 244 seconds] 07:00:02 -!- omarax has quit [Remote host closed the connection] 07:01:42 -!- Tux[Qyou] has joined ##crawl-dev 07:10:32 -!- HellTiger has quit [Ping timeout: 260 seconds] 07:11:58 -!- mopl has quit [Ping timeout: 250 seconds] 07:16:13 -!- Shard1697 has quit [Ping timeout: 258 seconds] 07:25:20 -!- Patashu_ has quit [Ping timeout: 246 seconds] 07:48:48 -!- Wax has quit [Ping timeout: 250 seconds] 08:00:02 -!- omarax has quit [Remote host closed the connection] 08:16:03 -!- Shard1697 has joined ##crawl-dev 08:23:13 -!- wheals has joined ##crawl-dev 08:30:08 -!- Tuxedo[Qyou] has joined ##crawl-dev 08:33:45 -!- Tux[Qyou] has quit [Ping timeout: 276 seconds] 08:36:40 -!- Lasty has quit [Quit: Leaving.] 08:50:44 -!- andre_1 has quit [Ping timeout: 244 seconds] 08:53:53 -!- MaxFrost has quit [Quit: Going offline, see ya! (www.adiirc.com)] 08:58:33 -!- Grivan has quit [Ping timeout: 240 seconds] 09:00:03 -!- omarax has quit [Remote host closed the connection] 09:07:47 -!- sooheon has quit [Ping timeout: 260 seconds] 09:12:06 -!- trckry has quit [Ping timeout: 276 seconds] 09:14:40 -!- Idolo has quit [] 09:25:27 -!- debo has quit [Quit: orb spiders :(] 09:28:28 -!- tabstorm has quit [Ping timeout: 258 seconds] 09:31:28 -!- syraine has left ##crawl-dev 09:33:14 -!- syraine has quit [Quit: Page closed] 09:36:10 -!- Tuxedo[Qyou] has quit [Read error: Connection reset by peer] 09:40:06 -!- tealeaves has quit [Quit: Bye] 09:54:33 -!- Daekdroom has quit [Quit: Leaving] 09:57:40 -!- JimmahDean is now known as Guest35126 09:57:41 -!- Guest35126 has quit [Killed (orwell.freenode.net (Nickname regained by services))] 10:00:02 -!- omarax has quit [Remote host closed the connection] 10:02:35 -!- tealeaves has quit [Quit: Bye] 10:07:07 -!- Rast has joined ##crawl-dev 10:07:23 -!- Dracunos has quit [Ping timeout: 244 seconds] 10:10:12 -!- valrus has quit [Ping timeout: 246 seconds] 10:10:28 -!- Shard1697 has quit [Ping timeout: 244 seconds] 10:19:03 -!- debo has joined ##crawl-dev 10:20:25 -!- gressup_ is now known as gressup 10:39:05 -!- Patashu_ has joined ##crawl-dev 10:40:11 -!- Demise_ has quit [Ping timeout: 240 seconds] 10:40:54 -!- tabstorm has quit [Ping timeout: 260 seconds] 10:47:20 -!- sky___ has quit [Ping timeout: 250 seconds] 10:47:43 -!- Cryp71c has joined ##crawl-dev 10:50:13 You guys still use mantis for bug tracking? 10:50:50 Also have any of you guys had success setting up / configuring VS Community and developing on DCSS? 10:54:32 -!- FireSight has quit [] 10:59:40 -!- bitcoinbastard has quit [Ping timeout: 260 seconds] 11:00:02 -!- omarax has quit [Remote host closed the connection] 11:04:01 -!- Dracunos7 has quit [Ping timeout: 250 seconds] 11:07:15 -!- sooheon has quit [Ping timeout: 260 seconds] 11:12:11 -!- PsyMar has quit [Quit: witty quit message goes here] 11:12:46 -!- MarvinPA has joined ##crawl-dev 11:13:10 MarvinPA, dcss still using mantis for current bugs? 11:13:50 yeah 11:14:15 !bug 10000 11:14:15 https://crawl.develz.org/mantis/view.php?id=10000 11:14:37 thanks, I don't suppose you've ever used visual studio (or know of a wiki entry anywhere) for dcss dev and how to set it up? downloading it now but I suspect its not straightforward. 11:15:10 i haven't, i feel like there was maybe one windows dev who did (possibly mumra)? but i don't think anyone who's currently around 11:16:11 brb 11:16:16 -!- Cryp71c has quit [Read error: Connection reset by peer] 11:21:39 -!- GoblinBomb has quit [Quit: leaving] 11:22:57 -!- foxy has quit [Quit: Page closed] 11:29:13 -!- Cerpin_ has joined ##crawl-dev 11:31:47 -!- LexAckson_ has joined ##crawl-dev 11:39:01 -!- ontoclasm has joined ##crawl-dev 11:45:11 -!- sooheon has quit [Ping timeout: 240 seconds] 11:46:03 -!- Cryp71c has joined ##crawl-dev 11:47:25 !seen gammafunk 11:47:26 I last saw gammafunk at Thu Jun 23 07:38:37 2016 UTC (8h 8m 49s ago) saying 'A well-groomed tmons is a happy tmons' on ##crawl-dev. 11:48:52 -!- Schattenjager has quit [Ping timeout: 250 seconds] 11:54:24 -!- scummos| has quit [Ping timeout: 260 seconds] 11:54:24 -!- Gobbo has quit [Client Quit] 11:54:52 -!- Kenran has quit [Quit: Leaving] 11:55:13 New branch created: pull/304 (1 commit) 13https://github.com/crawl/crawl/pull/304 11:55:13 03Bsmalley7902 07https://github.com/crawl/crawl/pull/304 * 0.18-a0-1221-g9521030: Merge pull request #1 from crawl/master 10(5 months ago, 0 files, 0+ 0-) 13https://github.com/crawl/crawl/commit/952103024768 11:58:04 -!- doll has quit [Quit: Lost terminal] 11:58:50 -!- mopl has quit [Ping timeout: 250 seconds] 12:00:02 -!- omarax has quit [Remote host closed the connection] 12:01:37 -!- Cryp71c has quit [Read error: Connection reset by peer] 12:01:45 -!- simmarine has joined ##crawl-dev 12:11:17 -!- Cryp71c has joined ##crawl-dev 12:14:26 -!- bunge has quit [Ping timeout: 250 seconds] 12:30:30 -!- Ququman has joined ##crawl-dev 12:31:39 -!- tabstorm has quit [Quit: Lost terminal] 12:33:05 -!- Zekka has quit [Ping timeout: 244 seconds] 12:34:50 -!- Kellhus has quit [Quit: Page closed] 12:37:00 -!- dtsund has joined ##crawl-dev 12:37:10 -!- PleasingFungus has joined ##crawl-dev 12:38:03 -!- tealeaves has quit [Quit: Bye] 12:42:12 !tell chequers wrt rholy: cleansing flame 12:42:12 PleasingFungus: OK, I'll let chequers know. 12:42:23 -!- dtsund has quit [Quit: Reality is an illusion, the universe is a hologram, buy gold, BYE] 12:42:38 -!- dtsund has joined ##crawl-dev 12:48:11 -!- andre_1 has quit [Ping timeout: 240 seconds] 12:53:39 -!- DevlanMud|Lappy has quit [Ping timeout: 250 seconds] 13:00:02 -!- omarax has quit [Remote host closed the connection] 13:00:12 -!- Kalir has quit [Changing host] 13:04:37 -!- sooheon has quit [Ping timeout: 260 seconds] 13:05:18 Unstable branch on crawl.akrasiac.org updated to: 0.19-a0-743-ge0d55e4 (34) 13:06:53 New branch created: pull/305 (1 commit) 13https://github.com/crawl/crawl/pull/305 13:06:53 03ChrisOelmueller02 07https://github.com/crawl/crawl/pull/305 * 0.19-a0-744-g9d5edec: Don't mislabel DUR_LOWERED_MR status as MR- in HUD 10(15 minutes ago, 2 files, 2+ 2-) 13https://github.com/crawl/crawl/commit/9d5edecd3b52 13:08:13 03ChrisOelmueller02 07* 0.19-a0-744-g9d5edec: Don't mislabel DUR_LOWERED_MR status as MR- in HUD 10(16 minutes ago, 2 files, 2+ 2-) 13https://github.com/crawl/crawl/commit/9d5edecd3b52 13:08:13 03PleasingFungus02 {GitHub} 07* 0.19-a0-745-g08eaed9: Merge pull request #305 from ChrisOelmueller/patch-2 10(7 seconds ago, 0 files, 0+ 0-) 13https://github.com/crawl/crawl/commit/08eaed9020e5 13:14:14 -!- Kenran has quit [Quit: leaving] 13:16:11 -!- FunkyBomb has quit [Ping timeout: 250 seconds] 13:20:38 -!- GauHelldragon has quit [Ping timeout: 244 seconds] 13:22:24 -!- Kenran has quit [Client Quit] 13:25:15 -!- MgDark has quit [Read error: Connection reset by peer] 13:34:35 -!- GauHelldragon has quit [Ping timeout: 244 seconds] 13:34:53 -!- Lasty_ has quit [Read error: Connection reset by peer] 13:35:21 -!- Cerpin_ has quit [Ping timeout: 276 seconds] 13:36:54 -!- Kenran has quit [Quit: leaving] 13:41:44 -!- sooheon has quit [Ping timeout: 260 seconds] 13:44:14 -!- jefus has joined ##crawl-dev 13:45:45 -!- docnvk has quit [Ping timeout: 276 seconds] 13:46:11 -!- tealeaves has quit [Quit: Bye] 13:47:04 -!- tealeaves has quit [Client Quit] 13:48:03 -!- Cerpin_ has joined ##crawl-dev 13:48:40 -!- zxc_ has quit [Read error: Connection reset by peer] 13:49:58 -!- Kenran has quit [Quit: leaving] 13:50:53 -!- noisevoid has joined ##crawl-dev 13:51:03 hello, is anyone home? 13:51:43 -!- amalloy_ is now known as amalloy 13:51:43 If anyone can help, I'd really appreciate it. :) 13:52:36 So, i'm running a Raspberry Pi B (running DietPi), installed crawl via the package manager but ended up with v0.10.3 13:52:59 anyways, I'm trying to compile the source which is currently on the github repo 13:53:15 I'm using an old teletype vt100 terminal 13:53:20 over rs-232 13:53:25 so, no tiles, no audio 13:54:21 every time i try to compile i'm getting errors. went through install.txt to see if i was doing something obviously wrong... 13:55:28 from the makefile, it seems that if I don't want audio or tiles, i should NOT do `make TILES=n SOUND=n` as by passing in and defining those arguments will actually make them compile, yes? 13:55:54 so, by issuing a lone `make` command i should get just a ascii build 13:56:11 noisevoid, Yes, do you have all the dependencies installed (they're all listed in install) 13:56:40 i did apt-get the dependencies listed, all except the last 5 which were for tiles/graphics 13:56:53 noisevoid: I'm not the best person to help with compilation but I can confirm that a lone 'make' should be right 13:56:53 let me give you the exact error i'm getting, one sec... 13:57:04 ok, thank you for confirming that 13:57:05 Pastebin it if its longer than a line 13:57:12 plz 13:57:57 cc1plus: error: unrecognized command line option b-std=c++11b 13:58:21 then right after that... 13:58:42 Makefile:134: recipe for target `tool/tile_colour.o` failed 13:59:03 and that's in [build-rltiles] 13:59:52 -!- Tedronai has quit [Ping timeout: 244 seconds] 14:00:03 -!- omarax has quit [Remote host closed the connection] 14:00:10 i'm not really a c developer, i've only ever compiled from source a handful of times, and this is a sufficiently complicated build it seems like, so I figured I'd just ask you kind folks in here 14:00:19 -!- Cerpin_ has quit [Quit: leaving] 14:00:48 -!- Cerpin_ has joined ##crawl-dev 14:02:45 Whats your g++ --version 14:02:50 noisevoid: first result for googling your error: http://stackoverflow.com/questions/14674597/cc1plus-error-unrecognized-command-line-option-std-c11-with-g 14:02:50 PleasingFungus: You have 2 messages. Use !messages to read them. 14:03:50 hmm 14:05:10 alternately, it might be possible to compile a pre-c++11 version of the game, like (iirc) 0.14? 14:06:18 eh, i'm doing all this because i want to try the newest version 14:07:42 i figured 14:07:46 worth suggesting! 14:07:47 sorry if this seems really basic, but I'm not really sure how to use the info from that SO post 14:07:48 sorry 14:07:50 ;_: 14:08:03 the problem here is that your compiler is very old. 14:08:09 am i supposed to edit my makfile or something? 14:08:12 oh 14:08:12 no. 14:08:17 can you run "g++ --version"? 14:08:36 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-745-g08eaed9 (34) 14:08:38 man, i just did an upgrade via the package manager before even pulling the repo... 14:08:53 4.6.3 14:08:55 -!- CanOfWorms has joined ##crawl-dev 14:09:05 ah. yeah, you need 4.7, per that post. 14:09:42 this DietPi distro is stale as a motherfucker. I should have figured it was the package manifests being stale that caused this 14:09:42 -_- 14:09:51 googling around suggests you can do things ilke "sudo apt-get install gcc-4.9 g++-4.9" 14:10:06 and then maybe alias that to g++, i guess 14:10:18 https://www.youtube.com/watch?v=EabkMaJ-3nk here's someone else doing 4.7 14:11:25 yeah, my package manager doesnt know what to do 14:11:31 i'll see if i can get this going 14:11:35 thanks for the help, man 14:11:37 :D 14:11:47 np 14:11:49 google is your friend! 14:16:48 fuck, could this be because wheezy/main sources is throwing a 404 when i try to run apt-get update? 14:17:02 i should have just installed raspbian, goddamnit 14:17:21 there's actually a few apt repositories that are unreachable 14:17:26 PleasingFungus: did you hack my microwave? it keeps flashing PF 14:17:38 B) 14:18:17 (they threw me out of ##dad-jokes so now i have to get my jollies in here) 14:19:05 hi, dad jokes 14:19:07 i'm pf. 14:19:41 -!- olscumpy has joined ##crawl-dev 14:20:46 huzzah, installing gcc/g++ 4.7 right meow 14:20:54 thanks pf 14:22:29 -!- dtsund has quit [Ping timeout: 250 seconds] 14:32:46 hmm... getting same error still 14:34:11 oh wait, hold on, i didn't apply the update-alternatives thing 14:34:29 -!- simmarine has quit [Read error: Connection reset by peer] 14:34:52 -!- simmarine has joined ##crawl-dev 14:36:57 -!- JimmahDean has quit [] 14:38:16 nope, still getting exactly the same error 14:38:52 -!- olscumpy has quit [Ping timeout: 264 seconds] 14:42:46 prediction: your 'g++' is still using the old version 14:42:56 run g++ --version again 14:45:19 did you look at the video i sent? 14:49:32 -!- olscumpy has joined ##crawl-dev 14:51:37 so, while I'm not on a raspberry, g++ is *not* part of the alternatives system. c++ is. 14:51:41 i watched the video, and `g++ --version` outputs (Debian 4.7.2-5+rpi1) 4.7.2 14:51:55 oh, neat 14:52:10 (c++ being provided by g++ in my current configuration) 14:52:43 hm. geekosaur, as the build and rasp pi expert, you should take over w/the build debugging here. 14:52:51 waaaaat 14:52:56 thank you for volunteering! 14:53:00 your service is appreciate.d 14:53:05 * geekosaur knows *-all about rasp. that was 1kb :p 14:53:05 * Sequell also knows *-all about rasp. that was 1kb :p 14:53:25 details! 14:53:36 you probably use a linux, or have in the past, right? I figure that's good enough 14:53:49 as a humble mac user, i know nothing of these strange 'debians' and 'apt-gets'... 14:54:10 i accidentally my whole linux 14:54:23 I know debian fairly well. rpi debian is claimed to be a bit weird though 14:54:33 should bai suzhen leave a storm dragon hide, she's not really a storm dragon 14:55:07 her True Form is a dragon, but not exactly a storm dragon 14:55:13 and water dragon armour definitely can't be a thing imo, before someone suggests it! 14:55:16 i mean, she shouldn't leave a drac corpse 14:55:18 haha 14:55:23 provides rDrown 14:56:02 -!- newbie|3 has quit [Ping timeout: 244 seconds] 14:56:25 i suppose if thematically it's a transformation she could shapeshift back 14:56:57 or just have plain dragon as her species and leave "the dragon corpse of bai suzhen" 14:57:07 well if it's a transformation it should change back to a drac corpse like other transformed monsters right 14:57:09 [23 18:53] as a humble mac user, i know nothing of these strange 'debians' and 'apt-gets'... 14:57:15 never used fink, I take it? :p 14:57:23 yeah transforming back when killed sounds consistent with other monsters to me 14:57:24 i honestly don't even know what that is! 14:57:45 MarvinPA: elliptic: no, what i was saying is: she thematically *starts* transformed, and then eventually reverts when injured to her True Form 14:57:58 -!- flappity_ has quit [Read error: Connection reset by peer] 14:58:00 so, thematically, she should *not* leave a drac corpse 14:58:02 it's a third party package manager (fink, macports, and homebrew are the main ones) 14:58:18 uh oh, Important Lore 14:58:24 also i really wonder what happens when you butcher a 'dragon' corpse. 14:58:25 the flavour cost... 14:58:35 i suspect you probably can't even make one at present 14:58:39 since you'd have to be able to zombify it 14:58:47 dummy monsters 14:59:10 -!- sooheon has quit [Ping timeout: 272 seconds] 14:59:23 !send PleasingFungus a tauntaun 14:59:23 Sending a tauntaun to PleasingFungus. 14:59:47 not sure what to make of that one 15:00:02 -!- omarax has quit [Remote host closed the connection] 15:00:05 just the butchering corpses thing? 15:00:59 sooo... after i do a failed build with make, i'm supposed to do `make clean`, right? 15:01:04 -!- halv has quit [Ping timeout: 260 seconds] 15:01:33 you shouldn't have to with our makefile, but it won't hurt 15:01:40 -!- HellTiger has quit [Ping timeout: 264 seconds] 15:01:53 PleasingFungus: in that case maybe it is a bug that she leaves a draconian corpse if she is killed before transforming! (yes I know this isn't easy to do) 15:02:02 elliptic: i think that might be very easy to fix, actually 15:02:22 could just change her species to storm dragon (or w/e) 15:02:41 draconians are touchy, fragile beasts, but that might work? 15:02:45 also storm dragon sounds reasonable enough to me, doesn't she make storm clouds 15:03:23 -!- simples has quit [Quit: Page closed] 15:03:30 she breathes water though, and has non-storm dragon resists! 15:03:33 even if she isn't a normal storm dragon she can still be related 15:03:33 she is a storm dragon but not a @??storm dragon 15:03:50 xtahua does non-fire dragon things and still drops a fire dragon hide 15:03:52 vault tag her 'eastern storm dragon' 15:04:12 some kind of witchcraft while generating corpses 15:04:16 :P 15:04:53 she's a bit more different than xtahua/fire dragon but that does seem fair, in that it's nice for the solution to be "do nothing" 15:05:07 still getting `cc1plus: error: unrecognized command line option b-std=c++11b` 15:05:14 less effort than figuring out what breaks if i mess with her species! 15:05:25 oh, i'm definitely messing with her species 15:05:42 hrm, wish |amethyst was around for these build issues. 15:05:46 MarvinPA: well there is still the Important bug I mentioned before (that PF might be fixing?) 15:05:51 oh hah, yeah 15:06:17 we can't have it be the case that doing huge damage to kill her before she transforms is bad because you lose out on a valuable storm dragon hide chance 15:06:30 i'm poking at it 15:06:37 haha 15:07:38 -!- ontoclasm has quit [Quit: Leaving.] 15:10:38 does anyone know how can i just skip building rltiles completely? 15:10:44 -!- Kenran has quit [Quit: leaving] 15:11:24 can't 15:11:44 it's required even for console builds these days 15:12:01 also, it's not just rltiles that needs it 15:12:18 oh, sure, yeah 15:12:19 you'd just get the same error on the next thing it tried to build. 15:14:40 what i'd want to check is what version of g++ your make is actually using 15:15:18 but i don't know enough about makefiles to say how to do that, exactly. something like "$(shell gcc --version | echo)? idk 15:15:31 like, adding something like that to the makefile to see what it sees 15:16:33 um, that's rather wrong 15:17:54 -!- PsyMar has quit [Quit: witty quit message goes here] 15:19:05 i figured 15:19:54 -!- trckry has quit [] 15:22:53 I'd probably add a line to the "greet" rule. search for "greet:", and on the line below it type a tab and "gcc --version" 15:25:35 (without the quotes) 15:25:58 -!- Amnesiac has quit [Ping timeout: 250 seconds] 15:29:00 noisevoid: ^ do what this guy said 15:29:21 (see, i knew you were the right guy to debug this!) 15:30:10 fwiw, (1) you use $(shell) when you want to capture output, not when you want to just display it; (2) echo doesn't take input, it echoes its parameters; (3) "anything | cat" is just "anything", unless you are specifically testing the effect of buffering (which is different for pipes vs. terminals) 15:31:00 -!- dtsund has joined ##crawl-dev 15:31:06 geekosaur: so you're saying PleasingFungus should have written instead: eval $(shell gcc --version | xargs echo) 15:31:10 lmao 15:31:14 (3a) "echo $(anything)" likewise except for possibly using a lot of memory if "anything" produces a lot of output 15:31:25 it says 4.7.2 15:31:44 neat! 15:31:51 very 15:31:53 * geekosaur wanted to say earlier that 4.7 might not be new enough 15:31:59 ;-; 15:32:01 but I don't recall exactly 15:32:08 I thought we needed 4.8 though 15:32:12 (or later) 15:32:21 oh, do we? 15:32:32 stack overflow claimed gcc 4.7 should fix that particular error 15:32:40 would it lie to us...? 15:33:05 SO is infallible! 15:33:20 ok, well, i can improvise from here 15:33:24 my recollection is that 4.7 has partial c++11 support . older 4.7s might not do that option and even later versions lack some parts of c++11 15:33:35 just install, update the gcc and g++ alternatives 15:33:40 thought we ran into this with older mingw distributions 15:33:56 solution: clang? 15:34:02 clang?? 15:34:03 clang 15:34:21 which came with 4.6, and had an upgrade to a 4.7 which had -std=c++11 but still failed to compile things due to incomplete support 15:34:36 is gcc on 4.9 right now? 15:34:48 irrelevant, i suppose 15:34:49 upstream's in the gcc5 series now 15:35:00 and ongoing devel work for gcc6 15:35:04 4.9 seems to exist 15:35:04 holy shitballs 15:35:20 (they stepped up their development to try to catch up to clang) 15:35:27 :) 15:35:34 i am unfamiliar with clang 15:35:37 is it another compiler? 15:35:40 ya 15:35:43 yes, from the llvm project 15:35:43 i shall google 15:35:45 it's a bit like gcc, but better. 15:35:52 -!- sooheon has quit [Ping timeout: 264 seconds] 15:35:59 then why am i not using it? 15:35:59 haha 15:36:13 hey, actually, why isn't there a chroot in place 15:36:19 make everyone's build env the same 15:36:23 has *much* better error messages. but most linuxes still use gcc because large chunks of the linux kernel are extremely gcc-specific 15:36:25 would sort out crap like this 15:36:34 oh, gotcha 15:41:11 updated, see that the makefile is now using 4.8.2, but still same error persists 15:41:41 oh, wait. probably need to have it run "g++ --version" 15:41:51 ok 15:41:52 -!- scummos| has quit [Ping timeout: 264 seconds] 15:41:54 it's entirely possible you have gcc 4.8 but g++ 4.7 15:42:03 -!- tealeaves has quit [Quit: Bye] 15:42:40 both report 4.8 15:43:08 hm. then I think something else has gone wrong, because 4.8 definitely supports -std=c++11 15:43:32 can you put the full build log on a pastebin somewhere? 15:43:39 make 2>&1 | tee build.log 15:43:45 and then pastebin build.log 15:44:11 -!- Cerpin_ has quit [Quit: leaving] 15:44:32 (my main worry at this point is you had "b"s around the original error you showed here and I am hoping that was just something mishandling utf8 quotes and not literally "b"s...) 15:47:07 03PleasingFungus02 07* 0.19-a0-746-g995b792: Make Bai Suzhen return to her true form in death 10(20 minutes ago, 3 files, 47+ 42-) 13https://github.com/crawl/crawl/commit/995b79207bb0 15:48:05 i believe it is just the encoding. im driving the rpi from a vt-100 terminal from 1988 15:49:42 export TERM=vt100 LANG=C 15:53:15 ...althougj if you can't display unicode properly, running crawl is probably a lost cause these days --- at the very least you need rcfile tweaks to limit crawl to the character set a vt100 can display 15:53:18 yeah, i see the grave characters now 15:53:20 thanks 15:53:47 i thought i'd already added the term env var to my bashrc... 15:54:18 right, it's LANG that controls whether gcc uses unicode in its error messages or not, the TERM part was just for completeness 15:55:16 -!- ontoclasm has joined ##crawl-dev 15:56:35 -!- Cerpin_ has joined ##crawl-dev 15:57:25 http://pastebin.com/9DTHVadS 15:57:40 oh ok 15:57:55 that's some graybeard shit right thur 15:58:39 (also because I recalled something about pager not working right but that turned out to be someone in another channel. but that kind of thing happens when you have an almost-compatible terminal setting, like using a vt100 with TERM=xterm-256color...) 15:59:51 ... wow, that is weird. like it installed the driver but not the backend for 4.8 :/ 16:00:03 -!- omarax has quit [Remote host closed the connection] 16:00:24 oh, build with V=1 might tell you if it's using a different g++ for some reason 16:00:35 make V=1 16:01:50 -!- Rust3dCor3 has quit [Ping timeout: 244 seconds] 16:03:54 http://pastebin.com/TJJBw44D 16:04:03 -!- halv has quit [Ping timeout: 246 seconds] 16:04:26 this terminal has a monochrome display, so no colour 16:04:39 but it shouldn't prevent this from building... 16:04:46 <|amethyst> what does arm-linux-gnueabihf-g++ --version say? 16:04:49 not with that error, anyway! 16:04:54 oh thank god, it's |amethyst. we're saved 16:05:14 4.6.3 !!! 16:05:26 heh, yes, that would do it 16:05:29 huzzah 16:06:46 -!- Cerpin_ has quit [Quit: leaving] 16:07:00 |amethyst: you made that up didn't you 16:07:10 (nd for the best because I can't load that page... "Refresh to continue" (refresh) "Refresh to continue" (shift-refresh) "Refresh to continue" !tableflip) 16:07:24 fr: a demon type named Gnueabihf 16:07:39 haha 16:07:39 is this a situation where he has to use CROSSHOST, or something? 16:07:39 sounds like a panlord name 16:07:45 <|amethyst> I don't think so 16:07:48 -!- Kenran has quit [Quit: leaving] 16:08:05 <|amethyst> it sounds like the main 'gcc' and 'g++' binaries are linked to gcc-4.8 etc 16:08:15 how the hell do i upgrade that? i do apt-cache search for gnueabihf and nothing pops up 16:08:17 <|amethyst> but the arch-specific names are linked to -4.6 for whatever reason 16:08:35 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-746-g995b792 (34) 16:08:38 bizarro weirdardo 16:08:50 <|amethyst> noisevoid: dpkg -S $(which arm-linux-gnueabihf-g++) will at least tell you which package it comes from 16:09:00 -!- Cerpin_ has joined ##crawl-dev 16:09:29 -!- Kenran has quit [Client Quit] 16:09:41 -!- elliptic has quit [Quit: Leaving] 16:09:47 \/usr/bin/arm-linux-gnueabihf-g++ 16:10:07 in that output there should be a name of a package 16:10:18 nope 16:10:24 gives me a path 16:10:58 <|amethyst> what's the exact command you ran 16:11:40 -!- elliptic has joined ##crawl-dev 16:11:58 i didnt run another command.. 16:12:29 <|amethyst> the command that gave the output "\/usr/bin/arm-linux-gnueabihf-g++" 16:12:46 noisevoid: did that command really only give you one line of output, with nothing other than what you pasted about (the line beginning with \) ? 16:12:46 that was the output of `dpkg -S $(which arm-linux-gnueabihf-g++)` 16:13:01 <|amethyst> what does dpkg -S /bin/ls say? 16:13:11 <|amethyst> maybe your dpkg is broken, or maybe they changed what -S means? 16:13:24 coreutils: /bin/ls 16:13:34 that's what dpkg -S /bin/ls gives on my system, for example 16:13:37 oh i see what you mean, i missed the leading part 16:13:50 g++:/usr/bin/arm-linux-gnueabihf-g++ 16:13:57 g++: /usr/bin/arm-linux-gnueabihf-g++ 16:14:05 <|amethyst> what does dpkg -l g++ say? 16:14:17 <|amethyst> in particular, the 'Version' column 16:15:35 http://pastebin.com/zEDVDGa7 16:15:45 <|amethyst> that's your problem 16:15:49 <|amethyst> your g++ package is at 4.6.3 16:16:02 <|amethyst> how did you get g++ 4.8? 16:16:52 but check this out, i just tried `apt-get install g++-4.8` and it says i already have 4.8 16:17:00 <|amethyst> right, you have g++ 4.8 16:17:07 <|amethyst> err 16:17:17 <|amethyst> you have several versions of g++, including 4.8 16:17:23 yes 16:17:27 <|amethyst> but the 'g++' package itself is only 4.6 16:17:33 yeah, so default g++ is still 4.6.3; installing a later version doesn't make it the default 16:17:53 i thought that the update-alternatives stuff changed that 16:17:53 hmm 16:18:08 <|amethyst> maybe I missed the scrollback 16:18:21 <|amethyst> did you run update-alternatives manually? 16:18:29 yeah 16:18:29 as I remarked earlier, g++ is not controlled by alternatives 16:18:38 oh snap 16:18:38 installing g++-4.8 gives you a program names g++-4.8 16:18:52 <|amethyst> well, *something* is making 'g++' run version 4.8 16:18:52 g++ continues to point to the one installed by the g++ package 16:19:07 <|amethyst> g++ --version 16:19:07 <|amethyst> g++ (Raspbian 4.8.2-21~rpi3rpi1) 4.8.2 16:19:14 hm. maybe alternatives are set up differently on rpi then 16:19:30 I am looking at my x86_64 debian, don't have an rpi 16:20:40 -!- Kenran has quit [Client Quit] 16:20:43 update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8 16:20:49 <|amethyst> oh 16:20:50 update-alternatives --config gcc 16:21:19 <|amethyst> you will need to do something similar with arm-linux-gnueabihf-g++ and arm-linux-gnueabihf-gcc 16:21:21 -!- yourname2 has quit [Client Quit] 16:21:37 <|amethyst> presumably you have /usr/bin/arm-linux-gnueabihf-g++-4.8 etc? 16:22:25 <|amethyst> though I guess it might be better to make that a slave of the /usr/bin/gcc alternative 16:22:28 heyo, there's the missing link 16:22:34 i do 16:22:42 i'll just update the alternatives again 16:22:47 hopefully this works... 16:26:03 FUCK YEAH 16:26:11 no error on tile_colour.o 16:26:25 seems to be compiling 16:27:01 thanks you guys 16:27:08 I should see if I can figure out the weird readlink error I got when compiling on msys2 16:27:26 so, are all of you guys developers? 16:27:30 for crawl, i mean 16:27:32 -!- Zekka has quit [*.net *.split] 16:27:32 -!- Ququman has quit [*.net *.split] 16:27:32 -!- Nattefrost has quit [*.net *.split] 16:27:32 -!- Jafet has quit [*.net *.split] 16:27:32 -!- Weretaco has quit [*.net *.split] 16:27:34 -!- hyperbolic has quit [*.net *.split] 16:27:34 -!- Medra has quit [*.net *.split] 16:27:35 -!- ChongLi has quit [*.net *.split] 16:27:35 -!- Kalma has quit [*.net *.split] 16:27:35 -!- Chousuke has quit [*.net *.split] 16:27:35 -!- vible has quit [*.net *.split] 16:27:36 -!- Ragnor has quit [*.net *.split] 16:27:36 -!- Napkin has quit [*.net *.split] 16:27:36 -!- _fortis has quit [*.net *.split] 16:27:37 -!- Kramell has quit [*.net *.split] 16:27:37 -!- Xjs|moonshine has quit [*.net *.split] 16:27:37 -!- _sk has quit [*.net *.split] 16:27:38 -!- Medar has joined ##crawl-dev 16:27:38 -!- Chousuke has joined ##crawl-dev 16:27:42 -!- Ququman has joined ##crawl-dev 16:27:57 -!- Jafet has joined ##crawl-dev 16:27:58 -!- hyperbolic has joined ##crawl-dev 16:28:59 people with + have commit access 16:29:02 I'm not a crawl dev, I just do the mac builds/packaging 16:29:42 and the occasional random helping out, as long as it doesn't require too much knowledge of crawl internals (I treasure the few neurons I have left! :p ) 16:29:42 people without + are sabotuers and rascals 16:30:11 however, so are people with the +. 16:30:20 hahaha 16:30:33 where are you guys located? 16:30:47 We all work in a big office building. 16:30:49 why does my windows 10 vm show up as Aborted every time I start up virtualbox 16:30:50 Downtown Vancouver. 16:30:52 It's a nice location! 16:30:55 good views of the bay 16:30:55 -!- Eronarn__ has quit [Ping timeout: 258 seconds] 16:31:08 you're not serious 16:31:12 would I lie? 16:31:15 PleasingFungus is in a maximum security prison 16:31:16 oracle's making snarky comments about microsoft :p 16:31:20 the rest of us are at various places 16:31:29 you are from the interwebs 16:31:31 hahaha 16:31:42 -!- yaknyasn has quit [Ping timeout: 258 seconds] 16:32:09 <|amethyst> I am in Lexington, Kentucky 16:32:27 Akron, Ohio 16:32:39 -!- Cryp71c has quit [Quit: Leaving] 16:32:59 cool 16:33:03 -!- Eronarn__ has joined ##crawl-dev 16:33:15 im over in ca 16:33:48 <|amethyst> noisevoid lives in the calcium mines 16:33:59 *yeast mines 16:34:16 -!- travis-ci has joined ##crawl-dev 16:34:17 The build was broken. (master - 995b792 #5993 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/139859989 16:34:17 -!- travis-ci has left ##crawl-dev 16:35:21 -!- ProzacElf has joined ##crawl-dev 16:35:36 -!- Kenran has quit [Quit: leaving] 16:35:37 -!- Weretaco has joined ##crawl-dev 16:35:40 check this out: https://www.instagram.com/p/BG3I8QXnCrg/?taken-by=noisevoid 16:35:45 there she is 16:35:55 hrm, there's that error again 16:35:56 weird crash 16:35:59 -!- _fortis has quit [K-Lined] 16:36:06 -!- Rast- has joined ##crawl-dev 16:38:42 -!- ystael has quit [Ping timeout: 246 seconds] 16:38:48 i'd always wondered where the ctrl+[ shortcut for esc came from 16:38:56 turns out to be fro terminals like these 16:39:25 -!- Rast has quit [Ping timeout: 250 seconds] 16:40:20 -!- Kenran has quit [Client Quit] 16:40:36 -!- Xenobreeder has joined ##crawl-dev 16:40:55 <|amethyst> probably much older ones 16:41:35 true 16:41:45 damn thing's older than i am 16:42:47 <|amethyst> what model is this? 16:44:24 Informer 213 16:44:51 <|amethyst> so 88 or so? 16:45:11 <|amethyst> esc = ctrl-[ was 25 years old at that point :) 16:45:18 i bought it 4 years ago at an antique mall on the grapevine, plugged it in at the store and this huge ball of black smoke errupted out of it 16:45:29 yeah, 88 16:46:00 finally took it apart a week ago, replaced a bunch of ceramic 10uF caps, and it runs like a champion again 16:46:31 terminals at antique stores. /me feels old suddenly 16:46:41 <|amethyst> "You are required to notify the local telephone company prior to the connection and upon the final disconnection of the modem." 16:46:51 hahaha yup 16:46:57 i'm half tempted to buy a land line 16:47:02 pay for* 16:47:17 did you know that dialup is a public service nowadays? 16:47:27 <|amethyst> ? 16:47:50 <|amethyst> what do you mean by "public service"? 16:47:58 free 16:48:05 at least here in california 16:48:37 <|amethyst> SoCalFree.net? 16:48:37 every county in the state has a local dialup service you can connect to and use 16:48:52 <|amethyst> ah 16:49:23 pretty neat, actually 16:50:23 -!- Cerpin_ has quit [Quit: leaving] 16:52:28 -!- Cerpin_ has joined ##crawl-dev 16:55:03 <|amethyst> PleasingFungus: would be nice for things like this if we could backtrace the lua stack 16:56:29 ya 16:59:04 <|amethyst> in the contrib copy of Lua that line would correspond to setobj2s(L, ra, cl->upvals[b]->v); in case OP_GETUPVAL: 16:59:15 <|amethyst> lvm.c:429 that is 17:00:03 -!- omarax has quit [Remote host closed the connection] 17:00:26 -!- Wax has quit [Ping timeout: 250 seconds] 17:07:20 -!- Kenran_ has quit [Client Quit] 17:07:34 -!- sooheon has quit [Ping timeout: 240 seconds] 17:11:47 -!- CanOfWorms has quit [Quit: ChatZilla 0.9.92 [Firefox 3.6.28/20120306064154]] 17:14:37 -!- Kenran has quit [Ping timeout: 258 seconds] 17:17:01 -!- ProzacElf has quit [Ping timeout: 276 seconds] 17:21:59 -!- rchandra has joined ##crawl-dev 17:22:40 -!- Cerpin_ has quit [Ping timeout: 264 seconds] 17:23:27 gammafunk 17:23:29 did you see my messages 17:23:55 -!- removeelyvilon_ has joined ##crawl-dev 17:24:29 Quick question: Can I use mantis for a feature request or only for bug reports? 17:27:18 -!- PhazeDK has quit [Ping timeout: 250 seconds] 17:28:39 hrm, crawl seemed to build just fine now 17:28:45 wonder why I was getting that build error before 17:29:49 removeelyvilon_: no feature requests on mantis 17:30:18 okay then 17:30:36 removeelyvilon_: you can make issues on github, but I don't think we're using those extensively 17:30:46 oh maybe we even have them disabled 17:30:53 gammafunk: I don't think we want FRs there either 17:30:59 -!- mamgar has quit [Quit: Exit Stage Left] 17:31:40 <|amethyst> yeah, issues (other than pull requests) are disabled 17:32:00 <|amethyst> IMO *implemented* FRs are okay in either place (either as Patches in mantis, or pull requests in github) 17:32:26 <|amethyst> but "someone should do this" belongs in Tavern or dev wiki or here 17:32:37 |amethyst: yeah, those are fine I think... the problem with letting people submit FRs is just that the barrier to posting them is too low 17:34:18 FR: Rocket launchers 17:34:45 -!- Insomniak` has quit [Quit: I like to rock] 17:34:53 closed, not epic enough 17:34:57 Well if you don't mind I will just ask you directly. Can you make it so that greater demons don't target you with their AOE spells? I think that them having a chance to arrive hostile, turn hostile, and the spell having devastating miscast effects like self-banishment or a durable hostile hell sentinel are enough things to worry about 17:35:19 the flavor cost... 17:35:19 PleasingFungus: You have 1 message. Use !messages to read it. 17:35:27 yeah that's always been a thing with SGD 17:35:34 also an issue with makhleb demons, I'm always really worried that balrugs will fireball me 17:35:44 from a fluff point of view it is nice that they don't worry too much about the well-being of their "master" 17:35:49 Cool! A hell sentinel! better make sure it stays the hell away from me 17:35:55 !source beam.cc:2243 17:35:56 https://github.com/crawl/crawl/blob/master/crawl-ref/source/beam.cc#l2243 17:36:03 but that can go either way. might as well say that you have enough control over them for a time 17:36:10 it's mostly a problem with that things that have fball or damnation 17:36:11 i wonder about that "& undead" thing 17:36:11 or even that they like you 17:36:23 the status does say "charmed" 17:36:37 I always wine and dine my balrugs 17:36:42 what spell is that referring to? I don't think it applies to shadow creatures, it's only stuff with the temp charm thing 17:36:53 summon greater demon 17:36:59 no you're misunderstanding me 17:37:12 that's the "summoning greater demons" part. what about the "& undead"? 17:37:37 control undead? 17:37:50 don't think those are charmed, but maybe they are! 17:38:16 what bit of code is that even referring to? 17:38:18 -!- pipel is now known as avimd 17:38:22 "wine and dine"? 17:38:43 ohh nevermind i see, it's the default if no foe ratio is set elsewhere 17:39:03 which is true for most spells 17:39:51 -!- Cerpin_ has joined ##crawl-dev 17:40:05 -!- Cerpin_ has quit [Client Quit] 17:44:31 -!- wheals has quit [Ping timeout: 258 seconds] 17:46:15 -!- andre_1 has quit [Ping timeout: 246 seconds] 17:46:57 -!- Patashu_ has quit [Ping timeout: 246 seconds] 17:47:43 Will it blend? 17:48:09 comment unsurprisingly dates back to first revision, with a very slightly different wording ('gtr. demons & undead'). still no explanation of how one summons undead in that way - maybe it was a kiku reaper thing? 17:48:17 though i guess they wouldn't be firing beams 17:48:21 <|amethyst> looks like it applies to summon demon, control undead, and enslavement 17:48:33 oh, i hadn't considered control undead 17:48:36 that's probably it 17:48:41 03MarvinPA02 {GitHub} 07* 0.19-a0-747-g9c36c40: Fix missing speech for Xom cleaving 10(7 seconds ago, 1 file, 4+ 0-) 13https://github.com/crawl/crawl/commit/9c36c40f8967 17:49:45 <|amethyst> hm, which demon summoning things 17:51:09 does it actually apply to makh's summons? 17:51:32 <|amethyst> looks like no 17:51:41 <|amethyst> those are "(friendly, summoned)" 17:51:58 heh 17:52:02 <|amethyst> looks like just SGD, and only 1s? 17:52:03 that's what i figured 17:52:10 yeah 17:52:19 ?/Brodale 17:52:19 No matches. 17:52:36 ??wizards without wizlabs 17:52:36 wizards without wizlabs[1/1]: Spell namesakes: Leda, Lee, Alistair, Ozocubu, Borgnjor, Maxwell, Olgreb, Gell, Yara. Artifact smiths: Ukta ({hat of the bear spirit}), Black/Doom Knight, Octopus King, The Captain, The Alchemist, Zhor, Cekugob, the Botono. 17:53:09 !learn e wizards without wizlabs[1 s/Botono/Botono, Brodale/ 17:53:10 wizards without wizlabs[1/1]: Spell namesakes: Leda, Lee, Alistair, Ozocubu, Borgnjor, Maxwell, Olgreb, Gell, Yara. Artifact smiths: Ukta ({hat of the bear spirit}), Black/Doom Knight, Octopus King, The Captain, The Alchemist, Zhor, Cekugob, the Botono, Brodale. 17:53:11 If memory serves, I got fried my a makhleb balrug too 17:53:19 a friendly one 17:53:42 <|amethyst> yes, they still have a foe_ratio of under 100% 17:53:52 yeah 17:53:53 -!- debo has quit [Quit: orb spiders :(] 17:53:55 that's not a special thing about demons, that's just it figuring that the damage it does to your enemies is more important than the damage it does to you 17:54:05 probably you were near multiple and/or high-hd enemies 17:54:06 <|amethyst> it thought the monsters it was hurting were four times as powerful as you 17:54:29 or somewhat less than that if they were rf- or you were rf+, possibly 17:54:43 <|amethyst> PleasingFungus: ? re wizards without wizlabs? 17:55:21 Brodale, King of Bros 17:55:39 !learn edit wizards_without_wizlabs[1] s/, the Botono.*/./ 17:55:39 wizards without wizlabs[1/1]: Spell namesakes: Leda, Lee, Alistair, Ozocubu, Borgnjor, Maxwell, Olgreb, Gell, Yara. Artifact smiths: Ukta ({hat of the bear spirit}), Black/Doom Knight, Octopus King, The Captain, The Alchemist, Zhor, Cekugob. 17:55:44 huh, apparently that was a dev's name, too. maybe don't add a wizlab for that 17:56:02 oh, if we aren't including removed unrands then yeah brodale shouldn't be on the list 17:56:14 lemme see if I can get a good link. 17:56:16 <|amethyst> oh, there was an unrand named after him? 17:56:19 sort of 17:56:51 <|amethyst> ¡learn edit wizards_without_wizlabs[1] s/\.$/, Plog./ 17:57:06 ancient item name code: 17:57:23 -!- Ququman has quit [Remote host closed the connection] 17:57:24 ... 17:57:26 i guess there are wizlabs without the wizard existing elsewhere so botono and/or brodale could always come back in theory 17:57:26 + (item.special == SPWPN_VAMPIRES_TOOTH) ? "Vampire's Tooth" : 17:57:27 + (item.special == SPWPN_STAFF_OF_WUCAD_MU) ? "Staff of Wucad Mu" 17:57:29 + : "Brodale's Buggy Bola", 17:57:32 if the cloud mage and hellbinder count 17:57:57 it was the name of 'invalid unrand ID' 17:58:51 i just appreciated that it had a name at all, much less such a very crawl-ish name 17:59:00 need an entry for "good things that buggy stuff gets called" 17:59:04 Ah I see. It is like casting freezing cloud on myself if I have rc+++ 17:59:05 Marduk 17:59:14 brodale's eggplant 17:59:25 removeelyvilon_: yeah, except it doesn't look at current hp at all 17:59:47 that's how I died once 17:59:47 MarvinPA: of course, since this was Classic Crawl, it also had a description for before you ID'd it. 17:59:59 excellent 18:00:02 -!- omarax has quit [Remote host closed the connection] 18:00:08 now THAT was flavor 18:00:14 -!- dpeg_ has joined ##crawl-dev 18:00:28 Would anyone mind me adding a runed door to Yiuf's hut? 18:00:44 yeah that seemed a reasonable idea 18:00:47 oh, i saw that thread 18:00:49 <|amethyst> if you do, remove the fungus IMO 18:00:52 seems fine to me 18:00:59 yeah +1 for removing all fungi 18:01:02 noooo 18:01:10 ok, will do 18:01:11 seems fair and also yet another reminder to let monsters open runed doors 18:01:17 MarvinPA: yes 18:01:30 rare chance for club overload will stay, ok? 18:01:40 you'd have to review existing vaults that use runed doors, surely 18:01:42 e.g. that arrival one 18:01:43 -!- Harudoku has quit [Ping timeout: 252 seconds] 18:01:45 sure 18:01:56 PleasingFungus: need runed doors and superruned doors! 18:01:59 also it's a huge PITA to review existing uses of runed doors, since afaik there's no way to grep for them 18:02:05 * ontoclasm twitches 18:02:06 but most runed doors don't require that 18:02:10 dpeg_: imagine if someone in crawl had invented the Lock... 18:02:12 -!- Nattefrost has quit [Ping timeout: 244 seconds] 18:02:18 Unstable branch on underhound.eu updated to: 0.19-a0-747-g9c36c40 (34) 18:02:19 and yes that is the reason i've had this sat on my todo list for years 18:02:33 i guess they have the rune lock 18:02:38 who needs boring mundane ones? 18:02:40 huh... crawl had secret doors but never locked ones 18:02:47 afaik 18:02:50 -!- Shard1697 has joined ##crawl-dev 18:02:58 crawl also needs gems 18:03:08 i still don't know what they would do, but i want them. 18:03:10 more than it needs cheevos? 18:03:16 it's about to have cheevos! 18:03:17 i hear 18:03:23 sweet 18:03:32 @_@ 18:03:37 first the chequersboard, then the steam release... 18:03:40 it's only up up up for crawl! 18:03:46 i guess it could go along with forcing runed doors to be a kfeat as brought up last time this was discussed, since that would at least save any future searchers-for-runed-doors the same pain 18:04:14 nice, that makes it easier to escape with yiuf 18:04:30 were there objections to making runed doors kfeat-only? 18:05:01 steam release scheduled definitively for 2037 18:05:06 KFEAT: = = runed_door 18:05:11 i don't think so, other than "it's impossible because aaah searching every vault for runed doors" 18:05:17 you'd still find it even then 18:05:23 -!- ProzacElf has joined ##crawl-dev 18:05:42 hrm, wouldn't you just get syntax errors when loading up vaults afterward? and then you could tidy 18:05:46 <|amethyst> no 18:05:51 <|amethyst> unknown symbols become floor 18:05:55 uh 18:06:03 why did we do that? 18:06:21 that seems bad 18:06:27 so that people can use ` and ' and " and , all to mean floor in the same vault in different complicated ways 18:06:32 -!- scummos__ has quit [Remote host closed the connection] 18:06:49 well, they could still be required to use KFEAT I think 18:07:15 <|amethyst> probably that fell out of implementation? 18:07:31 -!- LexAckson_ has quit [Ping timeout: 240 seconds] 18:07:37 hooray. 18:07:39 <|amethyst> my guess is that unknown symbols imply floor for the same reason that 1/2/3/d/e/f become floor 18:07:47 <|amethyst> s/imply/become/ 18:08:33 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-747-g9c36c40 (34) 18:08:42 hrm, yeah I guess internally non-feature glyphs would need to explicitely be marked as floor if we errored on unknown glyphs 18:09:00 but it would probably be better to have unknown glyphs raise an error rather than default to floor, like PF says 18:09:14 <|amethyst> yeah 18:09:32 <|amethyst> also, it would be nice if that error happened during des cache building 18:09:45 <|amethyst> but I guess that's asking too much, given SUBST etc 18:09:54 -!- avimd has quit [Quit: Page closed] 18:10:06 oh, does SUBST have some special relationship with des cache? 18:10:12 -!- Mekire has quit [Ping timeout: 250 seconds] 18:10:15 I thought all that stuff is evaluated when cache is created 18:10:24 or is it when the map is actually loaded in crawl 18:10:26 <|amethyst> subst is random 18:10:36 right 18:10:43 so it can't do that! 18:10:55 fr: des cache iterates through all possible permutations of every vault 18:10:59 possibly using 'threading' 18:11:02 how long could it take? 18:11:23 O(a lot) 18:11:51 <|amethyst> O(2**regret-index) 18:11:59 lol 18:12:01 well thanks for considering making Hell Sentinels a little bit friendlier 18:12:14 take the path that only few choose to tread. Sayonara 18:12:19 -!- removeelyvilon_ has quit [Quit: Page closed] 18:13:16 poor irc etiquette - that should've been his or her /quit message! 18:13:21 tch tch 18:13:38 <|amethyst> Maybe e was telling us to "get lost" 18:13:41 <|amethyst> or "go take a hike" 18:13:53 i should go take a hike. 18:14:23 heh, fungi are sessile dude, you don't have any legs 18:15:29 @??wandering mushroom 18:15:29 wandering mushroom (07f) | Spd: 10 | HD: 8 | HP: 36-52 | AC/EV: 5/0 | Dam: 2013(confuse) | 03plant, unbreathing | Res: 06magic(40), 03poison, 12drown, 13neg+++, 13torm | XP: 311 | Sz: tiny | Int: brainless. 18:15:38 do NOT look at the last line there 18:16:45 haha Sz: tiny! 18:16:49 :( 18:16:50 <|amethyst> http://creation.com/the-fungus-that-walks 18:16:57 <|amethyst> FR: Hands: tiny 18:17:33 this channel needs an "hours since last forced dick joke" counter 18:18:03 <|amethyst> I didn't think that was a dick joke 18:19:08 |amethyst: you didn't read to the end of that page, did you 18:19:28 It’s almost as if our Creator put slime moulds here so that we could be in no doubt about the origin of life. 18:19:55 <|amethyst> PleasingFungus: you mean the part about how it proves evolution is incorrect because it is does not belong to any of the kingdoms they learned in middle school? 18:20:02 <|amethyst> s/is does/does/ 18:20:05 :) 18:20:13 fr: God of the Gaps 18:20:36 rShaft, rCliff (when we add cliffs) 18:21:22 why would you need to resist cliff he seems nice 18:21:32 and shaft is p cool too 18:21:41 i'm just so sick of all these Clives! 18:21:50 sorry not sorry 18:22:00 03dpeg02 07* 0.19-a0-748-ga2274fc: Runed door for Crazy Yiuf's hut (Arrhythmia) 10(22 seconds ago, 1 file, 5+ 7-) 13https://github.com/crawl/crawl/commit/a2274fc66aa7 18:23:06 it's customary to not properly credit Arrhythmia 18:23:12 sorry 18:23:23 I did git commit -m twice to get the name right :) 18:23:25 it's ok, we can't all follow the rules 18:23:46 gammafunk: i like to credit archaeo instead 18:23:52 really mix things up, you know? 18:23:53 very good choice 18:24:09 I've literally done that by the way 18:24:21 the other time I gave credit to myself 18:26:05 -!- Rast- has quit [Read error: Connection reset by peer] 18:26:13 -!- Rast- has joined ##crawl-dev 18:27:12 -!- Cerpin_ has joined ##crawl-dev 18:28:37 -!- Dracunos has quit [Ping timeout: 250 seconds] 18:28:43 -!- Dracunos_ is now known as Dracunos 18:28:44 -!- Zekka has quit [Ping timeout: 260 seconds] 18:31:49 pro 18:32:24 -!- travis-ci has joined ##crawl-dev 18:32:25 The build is still failing. (master - 9c36c40 #5994 : Chris Campbell): https://travis-ci.org/crawl/crawl/builds/139889657 18:32:25 -!- travis-ci has left ##crawl-dev 18:33:34 -!- elliptic has quit [Quit: Leaving] 18:34:15 -!- droogie has quit [Ping timeout: 244 seconds] 18:34:53 -!- elliptic has joined ##crawl-dev 18:35:20 did i break it 18:35:30 doubtful 18:35:43 nope, same crash 18:35:44 oh right i forgot what i'd even committed 18:35:51 would be very impressive if that had managed to break something 18:35:53 %git 9c36c40 18:35:53 07MarvinPA02 {GitHub} * 0.19-a0-747-g9c36c40: Fix missing speech for Xom cleaving 10(47 minutes ago, 1 file, 4+ 0-) 13https://github.com/crawl/crawl/commit/9c36c40f8967 18:35:55 ya 18:36:38 -!- jj123 has quit [Ping timeout: 250 seconds] 18:42:03 -!- dtsund has quit [Ping timeout: 250 seconds] 18:45:46 -!- wheals has joined ##crawl-dev 18:45:56 -!- Asuran has quit [Read error: Connection reset by peer] 18:47:30 -!- Yermak has joined ##crawl-dev 18:47:53 -!- Isvaffel has quit [Quit: Leaving] 18:48:24 FR: if I saved my game with autopickup off, I wanna resume it with off mode too! 18:48:49 -!- kgarrison343 has joined ##crawl-dev 18:51:00 huh, i'd expect that would be marshalled 18:52:34 would be good to implement that and remove the autopickup_default option imo 18:52:36 or whatever it's called 18:53:06 i second this 18:54:09 -!- removeelyvilon has quit [Quit: Page closed] 18:54:51 -!- Cerpin_ has quit [Ping timeout: 246 seconds] 18:59:59 still compiling... 19:00:02 -!- omarax has quit [Remote host closed the connection] 19:00:06 -!- tealeaves has quit [Quit: Bye] 19:04:30 -!- ldf has quit [Read error: No route to host] 19:06:04 ontoclasm: hopefully a few months 19:06:04 chequers: You have 1 message. Use !messages to read it. 19:06:21 ? 19:06:37 oh 19:06:40 steam? 19:07:23 -!- binni has quit [Quit: Ex-Chat] 19:08:17 -!- scummos| has quit [Ping timeout: 252 seconds] 19:09:25 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-748-ga2274fc (34) 19:13:04 -!- travis-ci has joined ##crawl-dev 19:13:05 The build has errored. (master - a2274fc #5995 : David Ploog): https://travis-ci.org/crawl/crawl/builds/139897530 19:13:05 -!- travis-ci has left ##crawl-dev 19:14:01 -!- sooheon has quit [Ping timeout: 276 seconds] 19:19:19 -!- HellTiger has quit [Ping timeout: 250 seconds] 19:25:24 -!- ystael has quit [Ping timeout: 244 seconds] 19:25:51 -!- Demise_ has joined ##crawl-dev 19:26:20 -!- Krakhan has quit [Changing host] 19:27:01 -!- DevlanMud|Lappy has quit [Ping timeout: 276 seconds] 19:29:17 -!- Shard1697 has quit [Ping timeout: 250 seconds] 19:30:01 -!- Kellhus has quit [Quit: Page closed] 19:34:40 -!- GauHelldragon has quit [Ping timeout: 264 seconds] 19:37:15 -!- Shard1697 has joined ##crawl-dev 19:43:10 -!- Guest35126 is now known as JimmahDean 19:49:12 03gammafunk02 07* 0.19-a0-749-g66ae36b: Support compilation under recent MSYS2 10(8 minutes ago, 1 file, 3+ 1-) 13https://github.com/crawl/crawl/commit/66ae36becc60 19:52:57 -!- simples has quit [Quit: Page closed] 19:53:20 -!- duralumin has quit [Read error: Connection reset by peer] 19:53:27 03gammafunk02 07[stone_soup-0.18] * 0.18.1-48-g4cf74bf: Support compilation under recent MSYS2 10(12 minutes ago, 1 file, 3+ 1-) 13https://github.com/crawl/crawl/commit/4cf74bf17542 19:59:16 -!- yesno has quit [Ping timeout: 264 seconds] 19:59:55 -!- koboldina has quit [Quit: Page closed] 20:00:02 -!- omarax has quit [Remote host closed the connection] 20:07:33 -!- Grivan has quit [Ping timeout: 260 seconds] 20:08:52 Stable (0.18) branch on crawl.jorgrun.rocks updated to: 0.18.1-48-g4cf74bf 20:10:26 gammafunk: was absent playing Curious Expedition? How can I break compilation by changing a des file? 20:10:34 make that first ? an ! 20:11:51 dpeg_: breaking the build can include compilation errors or errors that make crawl fail to build the des cache or errors that make crawl's tests fail 20:11:51 gammafunk: You have 1 message. Use !messages to read it. 20:11:54 -!- tealeaves has quit [Quit: Bye] 20:12:00 <|amethyst> but in that case 20:12:05 in this case it was just travis arbitrarily failing 20:12:08 <|amethyst> yeah 20:12:09 next time I'll blame travis back! 20:12:40 <|amethyst> if you follow that link, scroll down, and click the line with the red !, you'll see the build log 20:13:00 can't from here, but thanks! 20:13:03 travis fails to set up the build env, so if you see just one or two builds failing, it's likely just travis itself failing, but you can always double-check 20:16:10 * bh blames dpeg_ 20:16:56 bh: in my room, the blame piles up to the roof already! 20:17:13 Unstable branch on crawl.jorgrun.rocks updated to: 0.19-a0-749-g66ae36b (34) 20:17:33 -!- dtsund has joined ##crawl-dev 20:19:29 -!- PleasingFungus has quit [Quit: ChatZilla 0.9.92 [Firefox 47.0/20160604131506]] 20:20:41 -!- MarvinPA has quit [Ping timeout: 244 seconds] 20:21:37 -!- Shard1697 has quit [Ping timeout: 276 seconds] 20:25:37 -!- Taraiph has quit [Ping timeout: 250 seconds] 20:27:20 ...still compiling... 20:28:40 -!- nikheizen has joined ##crawl-dev 20:32:59 -!- travis-ci has joined ##crawl-dev 20:33:00 The build passed. (master - 66ae36b #5996 : gammafunk): https://travis-ci.org/crawl/crawl/builds/139912843 20:33:00 -!- travis-ci has left ##crawl-dev 20:37:15 -!- bonghitz has quit [Remote host closed the connection] 20:44:40 Fog has been broken 13https://crawl.develz.org/mantis/view.php?id=10521 by Yermak 20:44:51 -!- Blazinghand has joined ##crawl-dev 21:00:02 -!- omarax has quit [Remote host closed the connection] 21:00:55 -!- Shard1697 has joined ##crawl-dev 21:01:32 -!- CanOfWorms has joined ##crawl-dev 21:14:35 -!- dtsund has quit [Ping timeout: 250 seconds] 21:21:57 it's always been broken, ever seen that classic orbruntombtv with cloak of the thief? :P 21:24:46 -!- tealeaves has quit [Quit: Bye] 21:25:04 -!- Taraiph has quit [Ping timeout: 264 seconds] 21:25:44 -!- tealeaves has quit [Client Quit] 21:28:15 -!- Mekire has quit [Ping timeout: 250 seconds] 21:32:30 -!- introsp3ctive has quit [Remote host closed the connection] 21:32:57 -!- valrus has quit [Quit: Leaving] 21:35:06 -!- Rast-- has joined ##crawl-dev 21:35:06 -!- Rast- has quit [Read error: Connection reset by peer] 21:35:51 -!- dtsund has joined ##crawl-dev 21:37:33 -!- ystael has quit [Ping timeout: 250 seconds] 21:38:44 -!- Blazinghand has quit [Quit: Leaving] 21:40:16 -!- dpeg_ has quit [Quit: Lost terminal] 21:42:39 -!- bonghitz has quit [Ping timeout: 244 seconds] 21:42:57 -!- SpongeJr has quit [Ping timeout: 258 seconds] 21:43:22 remember that time lightli crashscummed tomb like 50 times 21:43:31 uh no 21:43:42 it was in vaults and I was acquirement scumming 21:43:59 and apologized in ##crawl-dev 21:46:05 -!- sky__ has quit [Ping timeout: 250 seconds] 21:47:25 -!- sooheon has quit [Ping timeout: 276 seconds] 21:48:06 no im talking about the staff of bugginess one 21:49:14 maybe I'm thinking of someone else, you only had 10 crashes in vaults apparently 21:52:54 -!- amalloy is now known as amalloy_ 21:53:21 -!- PleasingFungus has joined ##crawl-dev 21:53:35 looks like Temple Reform is causing save-compat bugs 21:53:47 http://i.imgur.com/jwB91Iz.png 21:53:58 %git 9d5edecd 21:53:58 07ChrisOelmueller02 * 0.19-a0-744-g9d5edec: Don't mislabel DUR_LOWERED_MR status as MR- in HUD 10(9 hours ago, 2 files, 2+ 2-) 13https://github.com/crawl/crawl/commit/9d5edecd3b52 21:54:08 finally a reason for ½ unicode in crawl 21:54:11 haha 21:54:13 <|amethyst> ah 21:54:31 since temple vaults are chosen at game start, but some temple vaults were removed or renamed? 21:54:38 <|amethyst> yeah 21:55:07 clearly just rewrite all missing temple vaults to chequers_sunken_temple 21:55:14 <|amethyst> need to readd those to dat/des/altar/compat or something like that 21:56:48 <|amethyst> or I guess you could maybe pick a new temple map with the same size? 21:57:21 <|amethyst> (in the first option, readd with weight 0 of course) 21:57:55 -!- andre_1 has quit [Ping timeout: 250 seconds] 22:00:03 -!- omarax has quit [Remote host closed the connection] 22:00:16 former is probably simplest 22:00:28 idk which vaults were removed 22:02:31 -!- Jafet has quit [Quit: WeeChat 1.5] 22:03:41 -!- Lasty has joined ##crawl-dev 22:05:44 -!- Lasty has quit [Client Quit] 22:06:22 -!- simples has quit [Quit: Page closed] 22:08:30 pf: do transmutations count for yara's? 22:08:45 er, tmut forms 22:08:50 short answer is yes 22:09:00 why are you casting yara's on yourself? 22:09:21 no, I was watching a zig player fight against a ghost that could have had yara's, if it were a monster spell 22:09:50 was wondering if their lich form would disappear 22:10:02 -!- vale_ has quit [Remote host closed the connection] 22:10:38 yeah, after a turn 22:10:42 does yara's still work on berserk? 22:10:47 -!- tealeaves has quit [Quit: Bye] 22:11:01 hm. good q 22:11:26 no 22:11:28 -!- Lasty has joined ##crawl-dev 22:11:39 however, it will work on the slow you get after berserk expires 22:13:04 haha 22:13:07 secret tech... 22:13:19 actually, that might have been what i was using it on 22:13:36 either that or i'd hit a guy who was zerking and then hit them again while they were slow 22:14:19 the one game where i really used yara's......i specifically learned it to use on deep trolls 22:14:34 and by the time i was running into deep trolls it was actually just much more efficient to tab through them 22:14:42 yara's was still useful in snake though 22:14:47 so i don't feel that bad about it 22:14:53 haha 22:15:06 hrm 22:15:09 @??deep elf archer 22:15:09 deep elf archer (07e) | Spd: 10 | HD: 10 | HP: 41-59 | AC/EV: 3/15 | Dam: 21 | 10weapons, 10items, 10doors, archer, spellcaster | Res: 06magic(80) | XP: 671 | Sp: blink away, slow, confuse, repel missiles | Sz: Medium | Int: human. 22:15:18 they really still have rmsl... 22:15:23 crazy 22:15:44 <|amethyst> PleasingFungus: 62 removed maps 22:15:47 <|amethyst> PleasingFungus: re temple 22:16:36 i swear deep elf archers are more dangerous than master archers 22:16:36 deng 22:16:58 lol 22:17:04 ProzacElf: yeah that's a common opinion. i nerfed them a bit a month or two ago 22:17:08 although they are significantly less dangerous than a blade master with dual quickblades and +8 CPA =p 22:17:11 <|amethyst> PleasingFungus: git show cc390b852004c86346b21af8bb9989e556c7ef73 | perl -lne '$s[$1eq"+"?1:0]{$2}=1if/^([+-])\s*NAME:\s*(\S+)/;END{for(sort keys%{$s[0]}){print($_)unless exists$s[1]{$_}}}' 22:17:19 aaaaaaa 22:17:23 heh 22:19:45 -!- hellmonk has quit [Quit: Page closed] 22:20:23 -!- Daekdroom has quit [Quit: Leaving] 22:20:55 <|amethyst> ah, better 22:22:07 <|amethyst> git show cc390b852004c86346b21af8bb9989e556c7ef73|perl '-lne$s{$1}{$2}=1if/^([+-])\s*NAME:\s*(\S+)/;END{for(sort+keys%{$s{"-"}}){print($_)unless+exists$s{"+"}{$_}}}' 22:22:20 is there a way to query a user's total playtime using sequell? (rhetorical, I'd like to know how) 22:22:21 <|amethyst> get rid of those silly spaces 22:22:33 <|amethyst> !lg nikheizen x=sum(dur) 22:22:34 209 games for nikheizen: sum(dur)=13d+10:19:04 22:22:38 !gamesby nikheizen 22:22:39 nikheizen has played 209 games, between 2014-01-01 05:34:21 and 2016-06-18 01:23:20, won 12 (5.7%), high score 14189899, total score 47676032, total turns 2890142, play-time/day 0:21:29, total time 13d+10:19:04. 22:22:49 |amethyst: crawlcode y/n 22:22:52 re your perling 22:22:59 thank you 22:23:10 -!- Twinge has quit [] 22:23:17 <|amethyst> PleasingFungus: it was made that way intentionally so I vote no 22:23:30 hrm 22:23:33 i'll mull it over 22:24:32 -!- vale_ has quit [Remote host closed the connection] 22:26:25 -!- docnvk has quit [Ping timeout: 276 seconds] 22:27:27 oh, |amethyst is perlering now? Can I see some samples? 22:27:50 Probably it's perlers of obscure computer science references though 22:28:02 it's a lamb(da) 22:28:18 yeah, although I might pay $15 for a perler of bubble sort 22:28:44 or a great perler of a map of the c++14 stl 22:29:02 I love me some bubble sort 22:29:08 spent a while trying to make it efficient 22:29:40 I almsot got there with this method that tries to group them up as it does the swaps, and then swap within that, but I realised it wasn't really bubblesort so I had to go back to the drawing board again 22:30:07 just don't accidentally prove that P=NP or we'll all be in trouble 22:30:26 <|amethyst> Proof: 22:30:28 <|amethyst> P = 0 22:30:36 <|amethyst> s/^/Let / 22:30:39 <|amethyst> QED 22:30:44 P can equal NP but does it always? 22:30:56 <|amethyst> or you can let N = 1 22:30:58 <|amethyst> either way works 22:31:00 or 0 22:31:07 -!- vale_ has quit [Remote host closed the connection] 22:33:41 -!- Amphouse has quit [Ping timeout: 250 seconds] 22:34:42 I tried something like that for my proof that pi is irrational. Defined pi to be sqrt(2) and proceeded from there, but my teacher wasn't very accepting of new approaches 22:35:02 heh 22:35:26 i will note that pi is several times larger than sqrt(2) 22:35:31 by traditional reckoning 22:35:36 Not according to my definition 22:36:49 out of curiosity, why does changing pi to sqrt(2) make it any easier to show pi's irrationality? 22:37:15 the proof that sqrt(2) is irrational is considerably easier than the proof that pi is irrational 22:38:30 -!- kgarrison343 has quit [Ping timeout: 246 seconds] 22:40:05 -!- jeefus has joined ##crawl-dev 22:40:45 i feel like a hole in this approach is if you defined pi as a rational number your proof falls apart 22:42:34 uh, you can't do that, obv, 'cause it's irrational 22:43:32 -!- jefus has quit [Ping timeout: 240 seconds] 22:44:27 you can just define pi to be whatever you want since pi is just a greek letter 22:44:42 in some disciplines pi is defined to mean something else 22:47:17 -!- Amnesiac has quit [Quit: Page closed] 22:55:06 finished compiling.. 22:55:28 hey, anyone ever just gotten a blank screen when trying to start crawl? 22:55:54 bet you it's loading vaults 22:56:46 takes a couple of seconds on first-time startup for a modern computer 22:56:49 yeah, if it's running after compilation, it needs to build a des cache 22:56:50 you might be there a while. 23:00:02 -!- omarax has quit [Remote host closed the connection] 23:08:08 -!- Mekire has quit [Quit: Page closed] 23:09:19 -!- Lasty has quit [Quit: Leaving.] 23:09:25 -!- HellTiger has quit [Ping timeout: 250 seconds] 23:09:50 -!- Lasty has joined ##crawl-dev 23:12:15 -!- Tickenest has quit [Quit: Page closed] 23:15:22 -!- debo has joined ##crawl-dev 23:21:01 -!- ontoclasm has quit [Quit: Leaving.] 23:30:36 -!- wheals has quit [Remote host closed the connection] 23:32:50 -!- tealeaves has quit [Quit: Bye] 23:47:51 -!- zxc has joined ##crawl-dev 23:49:24 -!- ystael has quit [Ping timeout: 244 seconds] 23:52:26 -!- sooheon has quit [Ping timeout: 272 seconds] 23:52:48 -!- Twinge has joined ##crawl-dev 23:59:32 minmay: i think you posted the tstbtto update in the wrong thread 23:59:50 -!- koboldina has joined ##crawl-dev