Mercurial > hg > early-roguelike
annotate install-sh @ 245:e7aab31362af
Rogue V[345], Super-Rogue: Fix violet fungi/venus flytraps.
Violet fungi (renamed venus flytraps in Rogue V5) do an increasing
amount of damage each time they hit. If they miss, you still suffer
the same number of HP. This worked by keeping a counter and printing
new damage strings into monsters[5].m_stats.s_dmg, which is the
"prototype" of that particular monster.
Each individual monster has its own damage string. Apparently these
were once char *, pointing to the same string as the prototype. When
the s_dmg member was changed to be an internal char array, changing the
prototype's damage string no longer had any effect on actual monsters.
As a result, flytraps did no damage on a hit, or only one point in V5.
The mechanism for doing damage on a miss continued to work.
This has been fixed by overwriting the individual monster's damage
string instead of the prototype's. It is now no longer necessary to
reset the damage string when the flytrap is killed. The method for
resetting it when the hero teleports away had to be modified. Comments
referencing the long-unused xstr have been removed.
| author | John "Elwin" Edwards |
|---|---|
| date | Sun, 01 May 2016 19:39:56 -0400 |
| parents | 78ca6502d2a6 |
| children | d9badb9c0179 |
| rev | line source |
|---|---|
| 88 | 1 #!/bin/sh |
| 2 # install - install a program, script, or datafile | |
| 3 | |
| 4 scriptversion=2011-11-20.07; # UTC | |
| 5 | |
| 6 # This originates from X11R5 (mit/util/scripts/install.sh), which was | |
| 7 # later released in X11R6 (xc/config/util/install.sh) with the | |
| 8 # following copyright and license. | |
| 9 # | |
| 10 # Copyright (C) 1994 X Consortium | |
| 11 # | |
| 12 # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| 13 # of this software and associated documentation files (the "Software"), to | |
| 14 # deal in the Software without restriction, including without limitation the | |
| 15 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
| 16 # sell copies of the Software, and to permit persons to whom the Software is | |
| 17 # furnished to do so, subject to the following conditions: | |
| 18 # | |
| 19 # The above copyright notice and this permission notice shall be included in | |
| 20 # all copies or substantial portions of the Software. | |
| 21 # | |
| 22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
| 23 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
| 24 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
| 25 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN | |
| 26 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- | |
| 27 # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
| 28 # | |
| 29 # Except as contained in this notice, the name of the X Consortium shall not | |
| 30 # be used in advertising or otherwise to promote the sale, use or other deal- | |
| 31 # ings in this Software without prior written authorization from the X Consor- | |
| 32 # tium. | |
| 33 # | |
| 34 # | |
| 35 # FSF changes to this file are in the public domain. | |
| 36 # | |
| 37 # Calling this script install-sh is preferred over install.sh, to prevent | |
| 38 # 'make' implicit rules from creating a file called install from it | |
| 39 # when there is no Makefile. | |
| 40 # | |
| 41 # This script is compatible with the BSD install script, but was written | |
| 42 # from scratch. | |
|
07c4d4883ef2
rogue3: begin porting to autoconf.
John "Elwin" Edwards |
