Nightlies embark on long journey towards 3.3
Collapse
X
-
Thanks for the reply!
- FrankComment
-
I don't remember the exact message, but my game froze with
A gruesome software bug leaps at you! panic save succeeded
Prior to this, my arrows inscribe f0 were being printed with some non-std characters. I think it was an 'h' that caused the crash. I got some output to my terminal:
Code:08138000-0814c000 rw-p 00000000 00:00 0 0a107000-0c256000 rw-p 00000000 00:00 0 [heap] b7700000-b7721000 rw-p 00000000 00:00 0 b7721000-b7800000 ---p 00000000 00:00 0 b7833000-b785b000 rw-p 00000000 00:00 0 b786a000-b786c000 rw-p 00000000 00:00 0 bfc4c000-bfc61000 rw-p 00000000 00:00 0 [stack]
Comment
-
I think there are some memory corruption issues that have been introduced with some of the big refactors going on. I also think similar refactors may have caused the bug where the message "You see a XYZ" occasionally gets printed N times instead of once.Comment
-
I really wish recent messages got dumped in the char dump even when you didn't just die.
A couple messages with increasing numbers:
You combine 57 arrows (1d4) (+0, +0) {f0} in your quiver (n).
Then several increases with the f0 missing up to 63
You combine 59 arrows (1d4) (+0, +0) {} in your quiver (n).
Somewhere in there I wield one arrow of wounding into the quiver. Then I pick up another arrow, I think one I shot from the ones with empty {} inscription.
You have 62 arrows (1d4) (+0, +0) {0C-??}
where the ?? are chars I do not know how to type, first a + over a - and second a superscore [an _ but up high]
Woohoo! -- it saved and reloaded with the strange inscription. Savefile available if you want it.Comment
-
I guess I am running through gdb for the forseeable future. I don't yet know if this is reproducible. I started up again, shot a few arrows inscribed f0 [4 I think] and then a bunch with no inscription. I plan to save and reload, but first I'll copy some messages.
I really wish recent messages got dumped in the char dump even when you didn't just die.
A couple messages with increasing numbers:
You combine 57 arrows (1d4) (+0, +0) {f0} in your quiver (n).
Then several increases with the f0 missing up to 63
You combine 59 arrows (1d4) (+0, +0) {} in your quiver (n).
Somewhere in there I wield one arrow of wounding into the quiver. Then I pick up another arrow, I think one I shot from the ones with empty {} inscription.
You have 62 arrows (1d4) (+0, +0) {0C-??}
where the ?? are chars I do not know how to type, first a + over a - and second a superscore [an _ but up high]
Woohoo! -- it saved and reloaded with the strange inscription. Savefile available if you want it.takkaria whispers something about options. -more-Comment
-
In yet another strangeness, I had two staves of teleport stacked and a third one unstacked in my pack that did not merge. The cause has something to do with my !* autoinscription. When I uninscribed the one, they merged and kept the !*. Of course, my savefile may be corrupted by the back-and-forth.Comment
-
This is because the memory-leak-causing inscriptions change (quark removal) was reverted in between, nuking the fix. Sorry. Was there a ticket I can reopen?"Been away so long I hardly knew the place, gee it's good to be back home" - The BeatlesComment
-
Comment
-
Wait a minute. A memory leak with quarks shouldn't be possible unless you are working too hard. Store the strings sequentially in a huge array, and don't ever remove anything. On level change, do garbage collection and compact the array. Is whatever alternative that is in use now worth the effort?Comment
-
I identified a blessed weapon because my pack was full and I had a rod of ID. Usually I test-wield, and toss blessed weapons unless they have ESP. This one provided protection from confusion, and I did a double-take before realizing the long-awaited changes of some high resists into abilities must be in 3.3 dev already.Comment
-
Wait a minute. A memory leak with quarks shouldn't be possible unless you are working too hard. Store the strings sequentially in a huge array, and don't ever remove anything. On level change, do garbage collection and compact the array. Is whatever alternative that is in use now worth the effort?"Been away so long I hardly knew the place, gee it's good to be back home" - The BeatlesComment
-
I identified a blessed weapon because my pack was full and I had a rod of ID. Usually I test-wield, and toss blessed weapons unless they have ESP. This one provided protection from confusion, and I did a double-take before realizing the long-awaited changes of some high resists into abilities must be in 3.3 dev already."Been away so long I hardly knew the place, gee it's good to be back home" - The BeatlesComment
-
I thought in this code linked lists are considered too dangerous to implement. Reference counts are an order of magnitude worse.Comment
-
Why would you change that? That means when you fire an arrow, you either have to generate a new string or else you have to keep reference counts. Either way lies madness.
I thought in this code linked lists are considered too dangerous to implement. Reference counts are an order of magnitude worse."Been away so long I hardly knew the place, gee it's good to be back home" - The BeatlesComment
Comment