Your message dated Mon, 27 May 2013 21:21:10 +0000
with message-id <[email protected]>
and subject line Bug#439807: fixed in monsterz 0.7.1-5
has caused the Debian Bug report #439807,
regarding monsterz: add monster names and a start screen animation
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
439807: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439807
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: monsterz
Version: 0.7.0-1
Severity: wishlist
Tags: patch
hi Sam
as the name says, this patch adds a simple animation to the start screen,
and names for the monsters (in en and it locale - you may add fr)
thanks
a.
ps: the animation is inspired by the g'old pacman
-- System Information:
Debian Release: 4.0
APT prefers stable
APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Versions of packages monsterz depends on:
ii libc6 2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii monsterz-data 0.7.0-1 graphics and audio data for monste
monsterz recommends no packages.
-- no debconf information
--
Andrea Mennucc
"E' un mondo difficile. Che vita intensa!" (Tonino Carotone)
--- /usr/share/games/monsterz/monsterz.py~ 2006-05-13 16:49:27.000000000 +0200
+++ /usr/share/games/monsterz/monsterz.py 2007-08-27 16:25:09.000000000 +0200
@@ -17,7 +17,7 @@
from random import randint
from sys import argv, exit, platform
from os.path import join, isdir, isfile, dirname, expanduser
-from os import write, mkdir
+from os import write, mkdir, getenv
# String constants
VERSION = '0.7.0'
@@ -41,6 +41,16 @@
ITEM_METAL = ITEMS + 2
ITEM_PUZZLE = ITEMS + 3
+LANG = getenv('LC_MESSAGES') or getenv('LC_ALL') or getenv('LANG') or ''
+
+ITEM_NAMES = ['hairy','cloudy','cyclop','auntie','roswell','horny',
+ 'bluewhale','octopie','ghost']
+
+if LANG[:2] == 'it':
+ ITEM_NAMES=['buffopelo','nuvolastra','ciclope',
+ 'ziantonietta','roswell','cornutazzo',
+ 'balenablu','polipetto','fantasmino']
+
STATUS_MENU = 0
STATUS_NEW = 1
STATUS_GAME = 2
@@ -1360,6 +1370,33 @@
return True
return False
+ wander_monster=None
+ wander_x=0
+ wander_y=0
+ def wanderer_draw(self):
+ if self.wander_monster==None :
+ if randint(0,30) == 1 :
+ self.wander_monster = randint(0,ITEMS-1)
+ self.wander_y=randint(20,SCREEN_HEIGHT-ITEM_SIZE-20)
+ self.wander_x=-ITEM_SIZE
+ return
+ if randint(0,10) == 1 :
+ monster = data.blink[self.wander_monster]
+ else:
+ monster = data.normal[self.wander_monster]
+ system.blit(monster, (self.wander_x, self.wander_y))
+ system.blit(fonter.render(ITEM_NAMES[self.wander_monster],
+ 30, (250,250,250)),
+ (self.wander_x+ITEM_SIZE, self.wander_y+ITEM_SIZE/2-15))
+ if self.wander_x < SCREEN_WIDTH/3 or self.wander_x > (SCREEN_WIDTH/3)*2 :
+ self.wander_x += randint(4,8)
+ self.wander_y += randint(-2,2)
+ else:
+ self.wander_x += 3
+ self.wander_y += randint(-1,1)
+ if self.wander_x > SCREEN_WIDTH :
+ self.wander_monster=None
+
msat = [0] * 4
marea = None
def iterate_menu(self):
@@ -1389,6 +1426,7 @@
# Print logo and menu
w, h = data.logo.get_size()
system.blit(data.logo, (24 + 192 - w / 2, 24 + 96 - h / 2))
+ self.wanderer_draw()
for x in range(4):
if self.msat[x] > 180:
monster = data.surprise[shapes[x]]
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: monsterz
Source-Version: 0.7.1-5
We believe that the bug you reported is fixed in the latest version of
monsterz, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Barry deFreese <[email protected]> (supplier of updated monsterz package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sun, 26 May 2013 21:35:56 -0400
Source: monsterz
Binary: monsterz monsterz-data
Architecture: source i386 all
Version: 0.7.1-5
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team <[email protected]>
Changed-By: Barry deFreese <[email protected]>
Description:
monsterz - arcade puzzle game
monsterz-data - graphics and audio data for monsterz
Closes: 439807 605981
Changes:
monsterz (0.7.1-5) unstable; urgency=low
.
* Add startup animation patch. (Closes: #439807).
- Thanks to A Mennucc for the patch.
* Move existing manpage to section 6. (Closes: #605981).
* Change packaging to dh7 style.
* Add patch to pass CFLAGS to Makefile.
- Add hardening flags.
* Change to source format 3.0 quilt.
- Drop quilt build-dep.
* Bump Standards Version to 3.9.4.
Checksums-Sha1:
ed806e4068fefd813bfbbe7ad74b33a5cf1282cb 1485 monsterz_0.7.1-5.dsc
606bf584672930c8ac13c14eb40fd357b8771768 7157 monsterz_0.7.1-5.debian.tar.gz
2efa32f00fc92033a9c680af9e02e6bd947a92ae 10966 monsterz_0.7.1-5_i386.deb
59c7620d3c7b837448744c0838d1ce2031d1aa52 1388464 monsterz-data_0.7.1-5_all.deb
Checksums-Sha256:
98aca4972dfce29f0ee50b583ce60051d310ee88127a1ebafacd69929502fb7c 1485
monsterz_0.7.1-5.dsc
83978da6a95549bf1694ae09fa3a974414c32f4aa4167734a58bfd50e56e8069 7157
monsterz_0.7.1-5.debian.tar.gz
c22adbcca22d7cca11f0118e7150e9d3911efd9e52be130fa4ef1c6c0c00354d 10966
monsterz_0.7.1-5_i386.deb
5a6c91c9e77885f315feb22f889c7a07b51ca1ad2ddfeaebc82a296bee8ab651 1388464
monsterz-data_0.7.1-5_all.deb
Files:
8143d1e324083b054c05b8c535ab1cbd 1485 games optional monsterz_0.7.1-5.dsc
8e5503a182e66e88e30f80045231322e 7157 games optional
monsterz_0.7.1-5.debian.tar.gz
fe5b34982b56b01b13a80bd5dfcd9320 10966 games optional monsterz_0.7.1-5_i386.deb
b25bd42a178b5b9234746ac221701b16 1388464 games optional
monsterz-data_0.7.1-5_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iEYEARECAAYFAlGjk1kACgkQ5ItltUs5T3773wCgxWSdmqwcYBdmu8UQDRAxpQBI
iowAn15Um6U6gwleH1L0CzoCj+LMOTG4
=n/cL
-----END PGP SIGNATURE-----
--- End Message ---