super-tux-commit Mailing List for Super Tux (Page 42)
Brought to you by:
wkendrick
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(94) |
Apr
(500) |
May
(531) |
Jun
(196) |
Jul
(224) |
Aug
(193) |
Sep
(117) |
Oct
(115) |
Nov
(319) |
Dec
(97) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(19) |
Feb
|
Mar
(105) |
Apr
(41) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2007 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
|
Sep
(7) |
Oct
(12) |
Nov
(26) |
Dec
(39) |
2009 |
Jan
(6) |
Feb
(15) |
Mar
(10) |
Apr
(25) |
May
(29) |
Jun
(21) |
Jul
(26) |
Aug
(8) |
Sep
(3) |
Oct
|
Nov
|
Dec
(10) |
2010 |
Jan
(5) |
Feb
(5) |
Mar
(2) |
Apr
|
May
(5) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
From: Ricardo C. <ri...@ae...> - 2004-08-03 18:59:04
|
Hmmm, made a test and doesn't seem to be working. Can anyone confirm me th= is? Will have a look at this later. Anyway, isn't really important. Ricardo Em Ter=E7a, 3 de Agosto de 2004 19:47, o Ricardo Cruz escreveu: > Update of /cvsroot/super-tux/supertux/src > In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16160/src > > Modified Files: > Tag: supertux_0_1_1_branch > badguy.cpp player.cpp world.cpp world.h > Log Message: > Bug fix: Ice blocks should now break full boxes. > > Index: player.cpp > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v > retrieving revision 1.88.2.1 > retrieving revision 1.88.2.2 > diff -u -d -r1.88.2.1 -r1.88.2.2 > --- player.cpp 10 Jul 2004 21:53:08 -0000 1.88.2.1 > +++ player.cpp 3 Aug 2004 18:47:15 -0000 1.88.2.2 > @@ -228,7 +228,7 @@ > World::current()->trygrabdistro(base.x, base.y - 32,BOUNCE= ); > World::current()->trybumpbadguy(base.x, base.y - 64); > > - World::current()->trybreakbrick(base.x, base.y, size =3D=3D > SMALL); + World::current()->trybreakbrick(base.x, base.y, si= ze > =3D=3D SMALL, dir); > > bumpbrick(base.x, base.y); > World::current()->tryemptybox(base.x, base.y, RIGHT); > @@ -241,7 +241,7 @@ > World::current()->trybumpbadguy(base.x+ 31, base.y - 64); > > if(size =3D=3D BIG) > - World::current()->trybreakbrick(base.x+ 31, base.y, size > =3D=3D SMALL); + World::current()->trybreakbrick(base.x+ 3= 1, > base.y, size =3D=3D SMALL, dir); > > bumpbrick(base.x+ 31, base.y); > World::current()->tryemptybox(base.x+ 31, base.y, LEFT); > @@ -622,6 +622,7 @@ > void > Player::collision(void* p_c_object, int c_object) > { > +return; > BadGuy* pbad_c =3D NULL; > > switch (c_object) > > Index: world.h > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /cvsroot/super-tux/supertux/src/Attic/world.h,v > retrieving revision 1.39 > retrieving revision 1.39.2.1 > diff -u -d -r1.39 -r1.39.2.1 > --- world.h 10 May 2004 13:21:41 -0000 1.39 > +++ world.h 3 Aug 2004 18:47:15 -0000 1.39.2.1 > @@ -107,7 +107,7 @@ > void trygrabdistro(float x, float y, int bounciness); > > /** Try to break the brick at the given coordinates */ > - void trybreakbrick(float x, float y, bool small); > + void trybreakbrick(float x, float y, bool small, Direction col_side); > > /** Try to get the content out of a bonus box, thus emptying it */ > void tryemptybox(float x, float y, Direction col_side); > > Index: world.cpp > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /cvsroot/super-tux/supertux/src/Attic/world.cpp,v > retrieving revision 1.73 > retrieving revision 1.73.2.1 > diff -u -d -r1.73 -r1.73.2.1 > --- world.cpp 10 May 2004 19:06:03 -0000 1.73 > +++ world.cpp 3 Aug 2004 18:47:15 -0000 1.73.2.1 > @@ -579,7 +579,7 @@ > > /* Break a brick: */ > void > -World::trybreakbrick(float x, float y, bool small) > +World::trybreakbrick(float x, float y, bool small, Direction col_side) > { > Level* plevel =3D get_level(); > > @@ -628,6 +628,8 @@ > player_status.score =3D player_status.score + SCORE_BRICK; > } > } > + else if(tile->fullbox) > + tryemptybox(x, y, col_side); > } > > /* Empty a box: */ > > Index: badguy.cpp > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /cvsroot/super-tux/supertux/src/badguy.cpp,v > retrieving revision 1.68.2.1 > retrieving revision 1.68.2.2 > diff -u -d -r1.68.2.1 -r1.68.2.2 > --- badguy.cpp 18 Jul 2004 19:39:05 -0000 1.68.2.1 > +++ badguy.cpp 3 Aug 2004 18:47:15 -0000 1.68.2.2 > @@ -289,7 +289,7 @@ > if (dir =3D=3D LEFT && issolid( base.x, (int) base.y + halfheight)) > { > if (kind =3D=3D BAD_MRICEBLOCK && mode =3D=3D KICK) > - World::current()->trybreakbrick(base.x, base.y + halfheight, > false); + World::current()->trybreakbrick(base.x, base.y + > halfheight, false, dir); > > dir =3D RIGHT; > physic.set_velocity(-physic.get_velocity_x(), > physic.get_velocity_y()); @@ -298,8 +298,8 @@ > if (dir =3D=3D RIGHT && issolid( base.x + base.width, (int)base.y + > halfheight)) { > if (kind =3D=3D BAD_MRICEBLOCK && mode =3D=3D KICK) > - World::current()->trybreakbrick(base.x + base.width, (int) > base.y + halfheight, false); - > + World::current()->trybreakbrick(base.x + base.width, (int) > base.y + halfheight, false, dir); + > dir =3D LEFT; > physic.set_velocity(-physic.get_velocity_x(), > physic.get_velocity_y()); return; > > > > ------------------------------------------------------- > This SF.Net email is sponsored by OSTG. Have you noticed the changes on > Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, > one more big change to announce. We are now OSTG- Open Source Technology > Group. Come see the changes on the new OSTG site. www.ostg.com > _______________________________________________ > Super-tux-commit mailing list > Sup...@li... > https://lists.sourceforge.net/lists/listinfo/super-tux-commit =2D-=20 THE LESSER-KNOWN PROGRAMMING LANGUAGES #16: C- This language was named for the grade received by its creator when he submitted it as a class project in a graduate programming class. C- is best described as a "low-level" programming language. In fact, the language generally requires more C- statements than machine-code statements to execute a given task. In this respect, it is very similar to COBOL. |
From: Ricardo C. <rm...@us...> - 2004-08-03 18:53:02
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17219/src Modified Files: Tag: supertux_0_1_1_branch player.cpp Log Message: Ooops, forgot to remove the line I use to not be damaged by bad guys. Yes, I am a lazy bastard. :D Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.88.2.2 retrieving revision 1.88.2.3 diff -u -d -r1.88.2.2 -r1.88.2.3 --- player.cpp 3 Aug 2004 18:47:15 -0000 1.88.2.2 +++ player.cpp 3 Aug 2004 18:52:48 -0000 1.88.2.3 @@ -622,7 +622,6 @@ void Player::collision(void* p_c_object, int c_object) { -return; BadGuy* pbad_c = NULL; switch (c_object) |
From: Ricardo C. <rm...@us...> - 2004-08-03 18:47:24
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16160/src Modified Files: Tag: supertux_0_1_1_branch badguy.cpp player.cpp world.cpp world.h Log Message: Bug fix: Ice blocks should now break full boxes. Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.88.2.1 retrieving revision 1.88.2.2 diff -u -d -r1.88.2.1 -r1.88.2.2 --- player.cpp 10 Jul 2004 21:53:08 -0000 1.88.2.1 +++ player.cpp 3 Aug 2004 18:47:15 -0000 1.88.2.2 @@ -228,7 +228,7 @@ World::current()->trygrabdistro(base.x, base.y - 32,BOUNCE); World::current()->trybumpbadguy(base.x, base.y - 64); - World::current()->trybreakbrick(base.x, base.y, size == SMALL); + World::current()->trybreakbrick(base.x, base.y, size == SMALL, dir); bumpbrick(base.x, base.y); World::current()->tryemptybox(base.x, base.y, RIGHT); @@ -241,7 +241,7 @@ World::current()->trybumpbadguy(base.x+ 31, base.y - 64); if(size == BIG) - World::current()->trybreakbrick(base.x+ 31, base.y, size == SMALL); + World::current()->trybreakbrick(base.x+ 31, base.y, size == SMALL, dir); bumpbrick(base.x+ 31, base.y); World::current()->tryemptybox(base.x+ 31, base.y, LEFT); @@ -622,6 +622,7 @@ void Player::collision(void* p_c_object, int c_object) { +return; BadGuy* pbad_c = NULL; switch (c_object) Index: world.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/Attic/world.h,v retrieving revision 1.39 retrieving revision 1.39.2.1 diff -u -d -r1.39 -r1.39.2.1 --- world.h 10 May 2004 13:21:41 -0000 1.39 +++ world.h 3 Aug 2004 18:47:15 -0000 1.39.2.1 @@ -107,7 +107,7 @@ void trygrabdistro(float x, float y, int bounciness); /** Try to break the brick at the given coordinates */ - void trybreakbrick(float x, float y, bool small); + void trybreakbrick(float x, float y, bool small, Direction col_side); /** Try to get the content out of a bonus box, thus emptying it */ void tryemptybox(float x, float y, Direction col_side); Index: world.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/Attic/world.cpp,v retrieving revision 1.73 retrieving revision 1.73.2.1 diff -u -d -r1.73 -r1.73.2.1 --- world.cpp 10 May 2004 19:06:03 -0000 1.73 +++ world.cpp 3 Aug 2004 18:47:15 -0000 1.73.2.1 @@ -579,7 +579,7 @@ /* Break a brick: */ void -World::trybreakbrick(float x, float y, bool small) +World::trybreakbrick(float x, float y, bool small, Direction col_side) { Level* plevel = get_level(); @@ -628,6 +628,8 @@ player_status.score = player_status.score + SCORE_BRICK; } } + else if(tile->fullbox) + tryemptybox(x, y, col_side); } /* Empty a box: */ Index: badguy.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/badguy.cpp,v retrieving revision 1.68.2.1 retrieving revision 1.68.2.2 diff -u -d -r1.68.2.1 -r1.68.2.2 --- badguy.cpp 18 Jul 2004 19:39:05 -0000 1.68.2.1 +++ badguy.cpp 3 Aug 2004 18:47:15 -0000 1.68.2.2 @@ -289,7 +289,7 @@ if (dir == LEFT && issolid( base.x, (int) base.y + halfheight)) { if (kind == BAD_MRICEBLOCK && mode == KICK) - World::current()->trybreakbrick(base.x, base.y + halfheight, false); + World::current()->trybreakbrick(base.x, base.y + halfheight, false, dir); dir = RIGHT; physic.set_velocity(-physic.get_velocity_x(), physic.get_velocity_y()); @@ -298,8 +298,8 @@ if (dir == RIGHT && issolid( base.x + base.width, (int)base.y + halfheight)) { if (kind == BAD_MRICEBLOCK && mode == KICK) - World::current()->trybreakbrick(base.x + base.width, (int) base.y + halfheight, false); - + World::current()->trybreakbrick(base.x + base.width, (int) base.y + halfheight, false, dir); + dir = LEFT; physic.set_velocity(-physic.get_velocity_x(), physic.get_velocity_y()); return; |
From: Marek M. <wa...@us...> - 2004-08-03 15:34:02
|
Update of /cvsroot/super-tux/supertux/data/levels/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9388/data/levels/default Modified Files: Tag: supertux_0_1_1_branch bonusisland.stwm Log Message: added one new level to SuperTux team section, changed their numbers (please test!) Index: bonusisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/default/Attic/bonusisland.stwm,v retrieving revision 1.1.2.14 retrieving revision 1.1.2.15 diff -u -d -r1.1.2.14 -r1.1.2.15 --- bonusisland.stwm 31 Jul 2004 22:48:31 -0000 1.1.2.14 +++ bonusisland.stwm 3 Aug 2004 15:33:52 -0000 1.1.2.15 @@ -87,12 +87,15 @@ (x 46) (y 15)) (level (name "bonus1/wansti-level1.stl") - (x 59) + (x 59) (y 15)) (level (name "bonus1/wansti-level2.stl") + (x 55) + (y 19)) + (level (name "bonus1/wansti-level3.stl") (x 60) (y 21)) - (level (name "bonus1/wansti-level3.stl") + (level (name "bonus1/wansti-level5.stl") (x 57) (y 23)) (level (name "bonus1/bonus-level1.stl") |
From: Benjamin P. J. <lit...@us...> - 2004-08-02 10:21:20
|
Update of /cvsroot/super-tux/supertux/data/images/shared In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8781/data/images/shared Added Files: tornado-right-1.png tornado-right-2.png tornado-left-2.png tornado-right-4.png tornado-left-4.png tornado-left-3.png tornado-right-3.png tornado-left-1.png Log Message: - Added new Tornado enemy --- NEW FILE: tornado-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tornado-right-4.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-08-01 21:56:58
|
Update of /cvsroot/super-tux/supertux/data/images/shared In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5564/data/images/shared Modified Files: tux-grow-left-1.png tux-grow-left-2.png tux-grow-left-3.png tux-grow-left-4.png tux-grow-left-5.png tux-grow-left-6.png tux-grow-left-7.png tux-grow-right-1.png tux-grow-right-2.png tux-grow-right-3.png tux-grow-right-4.png tux-grow-right-5.png tux-grow-right-6.png tux-grow-right-7.png Log Message: Growing Tux animation without stars by Benjamin!! Thx! I believe the stars are odd for the players. Index: tux-grow-right-1.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-1.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsDu3aeq and /tmp/cvsdmqpQ0 differ Index: tux-grow-right-2.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-2.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsBGxNHs and /tmp/cvs9ZNwl3 differ Index: tux-grow-right-3.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-3.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvs5Oo25u and /tmp/cvs4tTlL5 differ Index: tux-grow-right-4.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-4.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvs7NS6jx and /tmp/cvsbOMS07 differ Index: tux-grow-right-5.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-5.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsRsri4z and /tmp/cvsOfjRMa differ Index: tux-grow-right-6.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-6.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsHRcewF and /tmp/cvs9K5Tjg differ Index: tux-grow-right-7.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-right-7.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsWKdgPL and /tmp/cvsvmLvFm differ Index: tux-grow-left-6.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-6.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvs8ljO0M and /tmp/cvsLosqTn differ Index: tux-grow-left-7.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-7.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsh4bjAV and /tmp/cvsWL1Vww differ Index: tux-grow-left-4.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-4.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvseD4WwW and /tmp/cvsy7zoAx differ Index: tux-grow-left-5.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-5.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvs3JlLKY and /tmp/cvsIZlUPz differ Index: tux-grow-left-2.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-2.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsOLmgi2 and /tmp/cvs3Tb4qD differ Index: tux-grow-left-3.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-3.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsnJdG48 and /tmp/cvsyMUThK differ Index: tux-grow-left-1.png =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/shared/tux-grow-left-1.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsYcUHif and /tmp/cvsxxNoyQ differ |
From: Marek M. <wa...@us...> - 2004-08-01 18:38:48
|
Update of /cvsroot/super-tux/supertux/data/levels/bonus1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7752/data/levels/bonus1 Modified Files: Tag: supertux_0_1_1_branch bonus-level3.stl Log Message: added lava tiles and used them in Bonus Island Castle Index: bonus-level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/Attic/bonus-level3.stl,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- bonus-level3.stl 1 Aug 2004 12:07:06 -0000 1.1.2.3 +++ bonus-level3.stl 1 Aug 2004 18:38:38 -0000 1.1.2.4 @@ -33,8 +33,8 @@ 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 65 65 65 65 65 65 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 69 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 0 0 68 64 64 69 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 64 0 0 64 64 64 64 69 0 0 0 0 68 64 64 64 64 0 0 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 0 0 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 0 0 0 64 64 64 64 69 0 0 0 0 0 0 44 68 64 64 69 0 0 0 68 64 64 69 0 0 0 68 64 69 0 0 0 68 64 64 69 0 0 102 68 65 65 65 65 65 64 64 69 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 68 64 64 64 62 64 69 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 27 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 29 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 65 65 65 65 65 65 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 65 65 65 65 65 65 65 65 65 65 65 69 0 0 0 0 68 64 64 64 69 0 0 0 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 0 0 68 64 64 69 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 69 0 0 0 0 0 68 65 69 0 0 0 0 0 68 65 69 0 0 0 0 0 68 65 69 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 64 0 0 64 64 64 64 69 0 0 0 0 68 64 64 64 64 0 0 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 0 0 0 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 69 0 0 0 0 44 44 44 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 0 0 68 64 64 69 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 68 64 69 0 0 0 0 0 68 64 69 0 0 0 0 0 68 64 69 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 69 0 0 0 0 0 0 0 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 - 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 76 76 68 64 64 69 76 76 76 68 64 64 69 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 68 69 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 76 76 76 76 68 64 64 64 64 64 64 64 64 64 64 69 76 76 76 76 68 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 69 0 0 0 0 0 0 0 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 68 64 64 64 64 - 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 75 75 68 64 64 69 75 75 75 68 64 64 69 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 68 69 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 75 75 75 75 68 64 64 64 64 64 64 64 64 64 64 69 75 75 75 75 68 64 64 64 64 64 64 64 64 64 64 69 112 112 112 112 112 112 112 112 112 112 68 64 64 64 64 64 64 64 64 64 64 69 112 112 112 112 112 112 112 112 112 112 112 112 112 112 68 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 112 68 65 65 65 65 65 65 65 64 64 65 65 65 65 65 65 65 65 65 65 64 64 64 64 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 62 65 65 65 65 65 65 65 65 65 65 69 0 0 0 0 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 68 64 64 64 64 + 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 174 174 68 64 64 69 174 174 174 68 64 64 69 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 68 69 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 174 174 174 174 68 64 64 64 64 64 64 64 64 64 64 69 174 174 174 174 68 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 0 0 0 0 0 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 69 0 0 0 0 0 0 0 0 0 0 68 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 68 64 64 64 64 + 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 68 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 173 173 68 64 64 69 173 173 173 68 64 64 69 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 68 69 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 68 64 64 64 64 64 64 64 64 64 64 64 64 64 69 173 173 173 173 68 64 64 64 64 64 64 64 64 64 64 69 173 173 173 173 68 64 64 64 64 64 64 64 64 64 64 69 112 112 112 112 112 112 112 112 112 112 68 64 64 64 64 64 64 64 64 64 64 69 112 112 112 112 112 112 112 112 112 112 112 112 112 112 68 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 112 68 65 65 65 65 65 65 65 64 64 65 65 65 65 65 65 65 65 65 65 64 64 64 64 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 62 65 65 65 65 65 65 65 65 65 65 69 0 0 0 0 0 0 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 64 69 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 173 68 64 64 64 64 ) (background-tm @@ -51,8 +51,8 @@ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 174 174 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 173 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) (foreground-tm @@ -69,8 +69,8 @@ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 69 76 76 76 76 76 76 76 76 76 76 76 68 64 64 64 64 64 64 64 64 69 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 68 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 69 75 75 75 75 75 75 75 75 75 75 68 64 64 64 64 64 64 64 64 64 64 69 75 75 75 75 75 75 75 75 75 75 75 75 75 75 0 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 69 174 174 174 174 174 174 174 174 174 174 174 68 64 64 64 64 64 64 64 64 69 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 174 68 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 69 173 173 173 173 173 173 173 173 173 173 68 64 64 64 64 64 64 64 64 64 64 69 173 173 173 173 173 173 173 173 173 173 173 173 173 173 0 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 64 64 64 64 64 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) (reset-points |
From: Marek M. <wa...@us...> - 2004-08-01 18:38:48
|
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7752/data/images/tilesets Modified Files: Tag: supertux_0_1_1_branch supertux.stgt Added Files: Tag: supertux_0_1_1_branch lava1-1.png lava1-2.png lava1-3.png lava1-4.png lava2-1.png lava2-2.png lava2-3.png lava2-4.png Log Message: added lava tiles and used them in Bonus Island Castle --- NEW FILE: lava2-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava2-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava2-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava2-1.png --- (This appears to be a binary file; contents omitted.) Index: supertux.stgt =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/tilesets/supertux.stgt,v retrieving revision 1.28 retrieving revision 1.28.2.1 diff -u -d -r1.28 -r1.28.2.1 --- supertux.stgt 10 May 2004 21:47:17 -0000 1.28 +++ supertux.stgt 1 Aug 2004 18:38:38 -0000 1.28.2.1 @@ -12,7 +12,7 @@ (tilegroup (name "Classic-Bg") (tiles 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101)) (tilegroup (name "Points") (tiles 132 133)) (tilegroup (name "Bonus") (tiles 44 83 84 102 103 104 105 112 128)) - (tilegroup (name "Misc") (tiles 75 76 79 80 126 127 129 130 134 135 136 137 138 139 81)) + (tilegroup (name "Misc") (tiles 75 76 79 80 126 127 129 130 134 135 136 137 138 139 81 173 174)) (tilegroup (name "Pipe") (tiles 53 54 55 56 57 58 59 60)) (tilegroup (name "Grey") (tiles 64 65 66 67 68 69)) (tile (id 0) @@ -494,5 +494,18 @@ (tile (id 139) (solid #f) (images "run4.png")) + + ;; Lava + + (tile (id 173) + (images "lava1-1.png" "lava1-2.png" "lava1-3.png" "lava1-4.png") + (water #t) + (anim-speed 120)) + (tile (id 174) + (images "lava2-1.png" "lava2-2.png" "lava2-3.png" "lava2-4.png") + (water #t) + (anim-speed 120)) + ) + --- NEW FILE: lava1-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava1-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava1-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava1-3.png --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7629/data/images/tilesets Modified Files: supertux.stgt Added Files: lava1-1.png lava1-2.png lava1-3.png lava1-4.png lava2-1.png lava2-2.png lava2-3.png lava2-4.png Log Message: added lava tiles --- NEW FILE: lava2-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava2-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava2-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava2-1.png --- (This appears to be a binary file; contents omitted.) Index: supertux.stgt =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/tilesets/supertux.stgt,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- supertux.stgt 22 Jun 2004 12:34:55 -0000 1.42 +++ supertux.stgt 1 Aug 2004 18:37:10 -0000 1.43 @@ -12,7 +12,7 @@ (tilegroup (name "Classic-Bg") (tiles 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101)) (tilegroup (name "Points") (tiles 132 133)) (tilegroup (name "Bonus") (tiles 44 83 84 102 140 103 104 105 112 128)) - (tilegroup (name "Misc") (tiles 75 76 79 80 126 127 129 130 134 135 81 200)) + (tilegroup (name "Misc") (tiles 75 76 79 80 126 127 129 130 134 135 81 200 173 174)) (tilegroup (name "Pipe") (tiles 53 54 55 56 57 58 59 60)) (tilegroup (name "Grey") (tiles 64 65 66 67 68 69)) (tilegroup (name "Signs") (tiles 136 137 138 139 141 142 143 144)) @@ -589,6 +589,18 @@ (tile (id 172) (images (region "snow-para-2.png" 96 64 32 32))) + ;; Lava + + (tile (id 173) + (images "lava1-1.png" "lava1-2.png" "lava1-3.png" "lava1-4.png") + (water #t) + (anim-speed 120)) + (tile (id 174) + (images "lava2-1.png" "lava2-2.png" "lava2-3.png" "lava2-4.png") + (water #t) + (anim-speed 120)) + + ;; Jungle (tile (id 301) --- NEW FILE: lava1-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava1-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava1-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lava1-3.png --- (This appears to be a binary file; contents omitted.) |
From: Benjamin P. J. <lit...@us...> - 2004-08-01 16:21:55
|
Update of /cvsroot/super-tux/supertux/data/images/shared In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20632/data/images/shared Added Files: mrflame-left-3.png mrflame-right-4.png mrflame-right-2.png mrflame-right-3.png mrflame-left-4.png mrflame-right-1.png mrflame-left-1.png mrflame-left-2.png Log Message: - Added mrflame-left-{1..4}.png and mrflame-right-{1..4}.png --- NEW FILE: mrflame-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mrflame-left-4.png --- (This appears to be a binary file; contents omitted.) |
From: Marek M. <wa...@us...> - 2004-08-01 12:11:18
|
Update of /cvsroot/super-tux/supertux/data/music In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17262/data/music Modified Files: fortress2-fast.mod fortress2.mod Log Message: updated music here, too Index: fortress2-fast.mod =================================================================== RCS file: /cvsroot/super-tux/supertux/data/music/fortress2-fast.mod,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsSYkKgz and /tmp/cvsK86InA differ Index: fortress2.mod =================================================================== RCS file: /cvsroot/super-tux/supertux/data/music/fortress2.mod,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsfForPG and /tmp/cvscCPR0H differ |
From: Marek M. <wa...@us...> - 2004-08-01 12:07:15
|
Update of /cvsroot/super-tux/supertux/data/music In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16372/data/music Modified Files: Tag: supertux_0_1_1_branch fortress2-fast.mod fortress2.mod Log Message: some level tweaks, castle level added updated music Index: fortress2-fast.mod =================================================================== RCS file: /cvsroot/super-tux/supertux/data/music/fortress2-fast.mod,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 Binary files /tmp/cvszyRf6f and /tmp/cvsjL1Oyi differ Index: fortress2.mod =================================================================== RCS file: /cvsroot/super-tux/supertux/data/music/fortress2.mod,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 Binary files /tmp/cvshRBIdm and /tmp/cvsPXRwKo differ |
From: Marek M. <wa...@us...> - 2004-08-01 12:07:14
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16372 Modified Files: Tag: supertux_0_1_1_branch NEWS Log Message: some level tweaks, castle level added updated music Index: NEWS =================================================================== RCS file: /cvsroot/super-tux/supertux/NEWS,v retrieving revision 1.9.2.3 retrieving revision 1.9.2.4 diff -u -d -r1.9.2.3 -r1.9.2.4 --- NEWS 31 Jul 2004 10:49:19 -0000 1.9.2.3 +++ NEWS 1 Aug 2004 12:07:06 -0000 1.9.2.4 @@ -2,6 +2,7 @@ ===================== * one new island containing contributed and "official" new levels * a "new" enemy: The Fish + * some new music * support for auto-scrolling levels * extended world map format, support for contributed world maps * thrown ice blocks destroy wooden crates now |
From: Marek M. <wa...@us...> - 2004-07-31 22:48:41
|
Update of /cvsroot/super-tux/supertux/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5774/data Added Files: Tag: supertux_0_1_1_branch extro-bonus.txt Log Message: added an extro for bonus island please read and see if you agree ...and be sure to scroll all the way down ;-) --- NEW FILE: extro-bonus.txt --- -Congratulations! You have successfully finished Bonus Island! If you didn't clear all levels yet, find your way back to the fork in the road and try another path. There is still more challenge waiting for you! And there is a secret level to be found as well... A big "Thank you" goes out to everyone who contributed to this release. We hope you enjoyed it! Look for the secret level where penguins can be found... |
From: Marek M. <wa...@us...> - 2004-07-31 22:48:41
|
Update of /cvsroot/super-tux/supertux/data/levels/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5774/data/levels/default Modified Files: Tag: supertux_0_1_1_branch bonusisland.stwm Log Message: added an extro for bonus island please read and see if you agree ...and be sure to scroll all the way down ;-) Index: bonusisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/default/Attic/bonusisland.stwm,v retrieving revision 1.1.2.13 retrieving revision 1.1.2.14 diff -u -d -r1.1.2.13 -r1.1.2.14 --- bonusisland.stwm 31 Jul 2004 12:19:00 -0000 1.1.2.13 +++ bonusisland.stwm 31 Jul 2004 22:48:31 -0000 1.1.2.14 @@ -100,9 +100,10 @@ (y 29)) (level (name "bonus1/bonus-level2.stl") (x 18) - (y 29)) + (y 29)) (level (name "bonus1/bonus-level3.stl") - (x 35) + (extro-filename "extro-bonus.txt") + (x 35) (y 36)) (level (name "bonus1/bonus-level4.stl") (x 49) |
From: Marek M. <wa...@us...> - 2004-07-31 22:28:52
|
Update of /cvsroot/super-tux/supertux/data/music In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2966/data/music Added Files: Tag: supertux_0_1_1_branch fortress2-fast.mod fortress2.mod Log Message: more work on the levels removed Iceberg Fortress from Bonus Island, since it won't be used put it into world2 (in HEAD) instead, replaced it with a template here added fortress2 music to be used in 0.1.2 --- NEW FILE: fortress2-fast.mod --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fortress2.mod --- (This appears to be a binary file; contents omitted.) |
From: Marek M. <wa...@us...> - 2004-07-31 22:20:51
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1969 Modified Files: libtool Log Message: created world2 directory and put Iceberg Fortress in there Index: libtool =================================================================== RCS file: /cvsroot/super-tux/supertux/libtool,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- libtool 20 Jul 2004 18:02:00 -0000 1.1 +++ libtool 31 Jul 2004 22:20:42 -0000 1.2 @@ -40,11 +40,11 @@ if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi # The names of the tagged configurations supported by this script. -available_tags=" CXX F77" +available_tags=" CXX" # ### BEGIN LIBTOOL CONFIG -# Libtool was configured on host dhcppc0: +# Libtool was configured on host rincewind: # Shell to use when invoking shell scripts. SHELL="/bin/sh" @@ -88,13 +88,13 @@ EGREP="grep -E" # The linker used to build libraries. -LD="/usr//bin/ld" +LD="/usr/bin/ld" # Whether we need hard or soft links. LN_S="ln -s" # A BSD-compatible nm program. -NM="/usr//bin/nm -B" +NM="/usr/bin/nm -B" # A symbol stripping program STRIP="strip" @@ -313,13 +313,13 @@ variables_saved_for_relink="PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" # Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=unknown +link_all_deplibs=no # Compile-time system search path for libraries -sys_lib_search_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib include ld.so.conf.d/*.conf /lib /opt/lib /usr/lib /usr/lib/qt3/lib /usr/lib/wine /usr/local/lib /usr/X11R6/lib " +sys_lib_search_path_spec=" /usr/lib/gcc-lib/i486-linux/3.3.4/ /usr/lib/gcc/i486-linux/3.3.4/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../../i486-linux/lib/i486-linux/3.3.4/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../../i486-linux/lib/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../i486-linux/3.3.4/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../ /lib/i486-linux/3.3.4/ /lib/ /usr/lib/i486-linux/3.3.4/ /usr/lib/" # Run-time system search path for libraries -sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib include ld.so.conf.d/*.conf /lib /opt/lib /usr/lib /usr/lib/qt3/lib /usr/lib/wine /usr/local/lib /usr/X11R6/lib " +sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib /usr/lib/atlas " # Fix the shell variable $srcfile for the compiler. fix_srcfile_path="" @@ -5325,7 +5325,7 @@ # End: # ### BEGIN LIBTOOL TAG CONFIG: CXX -# Libtool was configured on host dhcppc0: +# Libtool was configured on host rincewind: # Shell to use when invoking shell scripts. SHELL="/bin/sh" @@ -5369,13 +5369,13 @@ EGREP="grep -E" # The linker used to build libraries. -LD="/usr//bin/ld" +LD="/usr/bin/ld" # Whether we need hard or soft links. LN_S="ln -s" # A BSD-compatible nm program. -NM="/usr//bin/nm -B" +NM="/usr/bin/nm -B" # A symbol stripping program STRIP="strip" @@ -5498,11 +5498,11 @@ # Dependencies to place before the objects being linked to create a # shared library. -predep_objects="/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/../../../crti.o /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/crtbeginS.o" +predep_objects="/usr/lib/gcc-lib/i486-linux/3.3.4/../../../crti.o /usr/lib/gcc-lib/i486-linux/3.3.4/crtbeginS.o" # Dependencies to place after the objects being linked to create a # shared library. -postdep_objects="/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/crtendS.o /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/../../../crtn.o" +postdep_objects="/usr/lib/gcc-lib/i486-linux/3.3.4/crtendS.o /usr/lib/gcc-lib/i486-linux/3.3.4/../../../crtn.o" # Dependencies to place before the objects being linked to create a # shared library. @@ -5514,7 +5514,7 @@ # The library search path used internally by the compiler when linking # a shared library. -compiler_lib_search_path="-L/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1 -L/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1 -L/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/../../.." +compiler_lib_search_path="-L/usr/lib/gcc-lib/i486-linux/3.3.4 -L/usr/lib/gcc-lib/i486-linux/3.3.4/../../.." # Method to check whether dependent libraries are shared objects. deplibs_check_method="pass_all" @@ -5591,13 +5591,13 @@ variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" # Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=unknown +link_all_deplibs=no # Compile-time system search path for libraries -sys_lib_search_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib include ld.so.conf.d/*.conf /lib /opt/lib /usr/lib /usr/lib/qt3/lib /usr/lib/wine /usr/local/lib /usr/X11R6/lib " +sys_lib_search_path_spec=" /usr/lib/gcc-lib/i486-linux/3.3.4/ /usr/lib/gcc/i486-linux/3.3.4/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../../i486-linux/lib/i486-linux/3.3.4/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../../i486-linux/lib/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../i486-linux/3.3.4/ /usr/lib/gcc-lib/i486-linux/3.3.4/../../../ /lib/i486-linux/3.3.4/ /lib/ /usr/lib/i486-linux/3.3.4/ /usr/lib/" # Run-time system search path for libraries -sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib include ld.so.conf.d/*.conf /lib /opt/lib /usr/lib /usr/lib/qt3/lib /usr/lib/wine /usr/local/lib /usr/X11R6/lib " +sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib /usr/lib/atlas " # Fix the shell variable $srcfile for the compiler. fix_srcfile_path="" @@ -5619,302 +5619,3 @@ # ### END LIBTOOL TAG CONFIG: CXX -# ### BEGIN LIBTOOL TAG CONFIG: F77 - -# Libtool was configured on host dhcppc0: - -# Shell to use when invoking shell scripts. -SHELL="/bin/sh" - -# Whether or not to build shared libraries. -build_libtool_libs=yes - -# Whether or not to build static libraries. -build_old_libs=yes - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=no - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=no - -# Whether or not to optimize for fast installation. -fast_install=yes - -# The host system. -host_alias= -host=i686-pc-linux-gnu - -# An echo program that does not interpret backslashes. -echo="echo" - -# The archiver. -AR="ar" -AR_FLAGS="cru" - -# A C compiler. -LTCC="gcc" - -# A language-specific compiler. -CC="g77" - -# Is the compiler the GNU C compiler? -with_gcc=yes - -# An ERE matcher. -EGREP="grep -E" - -# The linker used to build libraries. -LD="/usr//bin/ld" - -# Whether we need hard or soft links. -LN_S="ln -s" - -# A BSD-compatible nm program. -NM="/usr//bin/nm -B" - -# A symbol stripping program -STRIP="strip" - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=file - -# Used on cygwin: DLL creation program. -DLLTOOL="dlltool" - -# Used on cygwin: object dumper. -OBJDUMP="objdump" - -# Used on cygwin: assembler. -AS="as" - -# The name of the directory that contains temporary libtool files. -objdir=.libs - -# How to create reloadable object files. -reload_flag=" -r" -reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" - -# How to pass a linker flag through the compiler. -wl="-Wl," - -# Object file suffix (normally "o"). -objext="o" - -# Old archive suffix (normally "a"). -libext="a" - -# Shared library suffix (normally ".so"). -shrext_cmds='.so' - -# Executable file suffix (normally ""). -exeext="" - -# Additional compiler flags for building library objects. -pic_flag=" -fPIC" -pic_mode=default - -# What is the maximum length of a command? -max_cmd_len=32768 - -# Does compiler simultaneously support -c and -o options? -compiler_c_o="yes" - -# Must we lock files when doing compilation ? -need_locks="no" - -# Do we need the lib prefix for modules? -need_lib_prefix=no - -# Do we need a version for libraries? -need_version=no - -# Whether dlopen is supported. -dlopen_support=unknown - -# Whether dlopen of programs is supported. -dlopen_self=unknown - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=unknown - -# Compiler flag to prevent dynamic linking. -link_static_flag="-static" - -# Compiler flag to turn off builtin functions. -no_builtin_flag="" - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="\${wl}--export-dynamic" - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec="" - -# Library versioning type. -version_type=linux - -# Format of library name prefix. -libname_spec="lib\$name" - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}" - -# The coded name of the library, if different from the real name. -soname_spec="\${libname}\${release}\${shared_ext}\$major" - -# Commands used to build and install an old-style archive. -RANLIB="ranlib" -old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs\$old_deplibs~\$RANLIB \$oldlib" -old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib" -old_postuninstall_cmds="" - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds="" - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds="" - -# Commands used to build and install a shared archive. -archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" -archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ -cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ -\$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ - \$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib" -postinstall_cmds="" -postuninstall_cmds="" - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds="" -module_expsym_cmds="" - -# Commands to strip libraries. -old_striplib="strip --strip-debug" -striplib="strip --strip-unneeded" - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects="" - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects="" - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps="" - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps="" - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path="" - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method="pass_all" - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd="\$MAGIC_CMD" - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag="" - -# Flag that forces no undefined symbols. -no_undefined_flag="" - -# Commands used to finish a libtool library installation in a directory. -finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval="" - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'" - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'" - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'" - -# This is the shared library runtime path variable. -runpath_var=LD_RUN_PATH - -# This is the shared library path variable. -shlibpath_var=LD_LIBRARY_PATH - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=no - -# How to hardcode a shared library path into an executable. -hardcode_action=immediate - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=yes - -# Flag to hardcode $libdir into a binary during linking. -# This must work even if $libdir does not exist. -hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir" - -# If ld is used when linking, flag to hardcode $libdir into -# a binary during linking. This must work even if $libdir does -# not exist. -hardcode_libdir_flag_spec_ld="" - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator="" - -# Set to yes if using DIR/libNAME during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=no - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=no - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=unsupported - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=no - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=unknown - -# Compile-time system search path for libraries -sys_lib_search_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib include ld.so.conf.d/*.conf /lib /opt/lib /usr/lib /usr/lib/qt3/lib /usr/lib/wine /usr/local/lib /usr/X11R6/lib " - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib include ld.so.conf.d/*.conf /lib /opt/lib /usr/lib /usr/lib/qt3/lib /usr/lib/wine /usr/local/lib /usr/X11R6/lib " - -# Fix the shell variable $srcfile for the compiler. -fix_srcfile_path="" - -# Set to yes if exported symbols are required. -always_export_symbols=no - -# The commands to list exported symbols. -export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds="" - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms="_GLOBAL_OFFSET_TABLE_" - -# Symbols that must always be exported. -include_expsyms="" - -# ### END LIBTOOL TAG CONFIG: F77 - |
From: Marek M. <wa...@us...> - 2004-07-31 22:18:20
|
Update of /cvsroot/super-tux/supertux/data/levels/world2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1764/data/levels/world2 Log Message: Directory /cvsroot/super-tux/supertux/data/levels/world2 added to the repository |
From: Marek M. <wa...@us...> - 2004-07-31 12:19:14
|
Update of /cvsroot/super-tux/supertux/data/levels/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13454/data/levels/default Modified Files: Tag: supertux_0_1_1_branch bonusisland.stwm Log Message: renamed some levels removed that stupid way-home-message-gag because, on second thought, i realized it sucked ass :) Index: bonusisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/default/Attic/bonusisland.stwm,v retrieving revision 1.1.2.12 retrieving revision 1.1.2.13 diff -u -d -r1.1.2.12 -r1.1.2.13 --- bonusisland.stwm 31 Jul 2004 10:41:04 -0000 1.1.2.12 +++ bonusisland.stwm 31 Jul 2004 12:19:00 -0000 1.1.2.13 @@ -95,16 +95,16 @@ (level (name "bonus1/wansti-level3.stl") (x 57) (y 23)) - (level (name "bonus1/gate.stl") + (level (name "bonus1/bonus-level1.stl") (x 35) - (y 28)) - (level (name "bonus1/wayhome.stl") + (y 29)) + (level (name "bonus1/bonus-level2.stl") (x 18) (y 29)) - (level (name "bonus1/castle.stl") + (level (name "bonus1/bonus-level3.stl") (x 35) (y 36)) - (level (name "bonus1/secret.stl") + (level (name "bonus1/bonus-level4.stl") (x 49) (y 37)) @@ -125,21 +125,7 @@ (y 7) (apply-action-right #f)) (level (map-message "You found a secret place!") (x 49) - (y 29) (apply-action-down #f)) - - (level (map-message "Icy Road...") - (x 7) - (y 34) (apply-action-left #f)) - (level (map-message "...take me home...") - (x 1) - (y 24) (apply-action-up #f)) - (level (map-message "...to the igloo...") - (x 1) - (y 12) (apply-action-up #f)) - (level (map-message "...I belong...") - (x 12) - (y 4) (apply-action-right #f)) - + (y 29) (apply-action-down #f)) (level (map-message "I cannot enter from this side.") (x 13) |
From: Ricardo C. <rm...@us...> - 2004-07-31 10:49:27
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1163 Modified Files: Tag: supertux_0_1_1_branch NEWS Log Message: Just a suggestion of a smaller news list. Marek, please read what I say there and change it, if you agree. Index: NEWS =================================================================== RCS file: /cvsroot/super-tux/supertux/NEWS,v retrieving revision 1.9.2.2 retrieving revision 1.9.2.3 diff -u -d -r1.9.2.2 -r1.9.2.3 --- NEWS 27 Jul 2004 13:03:06 -0000 1.9.2.2 +++ NEWS 31 Jul 2004 10:49:19 -0000 1.9.2.3 @@ -6,6 +6,19 @@ * extended world map format, support for contributed world maps * thrown ice blocks destroy wooden crates now * minor bug fixes + +This is a nice list of the new additions, but I think it gives the impression +that a lot of stuff has been added and the fact is that basically, it is just +a release that has a new world. +What about making it smaller and highlighting the new world (that is the purpose +of the release), something like this: + + * a brand new island containing 20 contributed and "official" levels! Have fun! + * a "new" enemy: The Fish + * support for auto-scrolling levels + * some gameplay aditions: improved world map and support for Mr. Ice Blocks to +destroy wooden crates when flat + * minor bug fixes Super Tux 0.1.1 (11 May 04) |
From: Ricardo C. <rm...@us...> - 2004-07-31 10:41:12
|
Update of /cvsroot/super-tux/supertux/data/levels/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32536/data/levels/default Modified Files: Tag: supertux_0_1_1_branch bonusisland.stwm Log Message: Made messages regarding impossible ways to be only showed only when in that tile. Showing them time-based is confusing for players, in my opinion. Index: bonusisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/default/Attic/bonusisland.stwm,v retrieving revision 1.1.2.11 retrieving revision 1.1.2.12 diff -u -d -r1.1.2.11 -r1.1.2.12 --- bonusisland.stwm 31 Jul 2004 10:30:30 -0000 1.1.2.11 +++ bonusisland.stwm 31 Jul 2004 10:41:04 -0000 1.1.2.12 @@ -143,22 +143,22 @@ (level (map-message "I cannot enter from this side.") (x 13) - (y 27) (apply-action-up #f)) + (y 27) (apply-action-up #f) (passive-message #f)) (level (map-message "I cannot enter from this side.") (x 23) - (y 27) (apply-action-up #f)) + (y 27) (apply-action-up #f) (passive-message #f)) (level (map-message "I cannot enter from this side.") (x 39) - (y 27) (apply-action-up #f)) + (y 27) (apply-action-up #f) (passive-message #f)) (level (map-message "I cannot enter from this side.") (x 49) - (y 27) (apply-action-up #f)) + (y 27) (apply-action-up #f) (passive-message #f)) (level (map-message "I cannot enter from this side.") (x 62) - (y 27) (apply-action-up #f)) + (y 27) (apply-action-up #f) (passive-message #f)) (level (map-message "Something is blocking the way.") (x 34) - (y 4) (apply-action-left #f)) + (y 4) (apply-action-left #f) (passive-message #f)) ) |
From: Ricardo C. <rm...@us...> - 2004-07-31 10:40:12
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32356/src Modified Files: Tag: supertux_0_1_1_branch worldmap.cpp worldmap.h Log Message: Added flag to disable passive messages, so that they become map ones. (passive-messages #f) . They are enabled by default. Fixed the "Tilemap buggy message". Index: worldmap.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/worldmap.cpp,v retrieving revision 1.68.2.11 retrieving revision 1.68.2.12 diff -u -d -r1.68.2.11 -r1.68.2.12 --- worldmap.cpp 30 Jul 2004 22:34:30 -0000 1.68.2.11 +++ worldmap.cpp 31 Jul 2004 10:39:50 -0000 1.68.2.12 @@ -297,7 +297,8 @@ offset -= 32; WorldMap::Level* level = worldmap->at_level(); - if(level && level->name.empty() && !level->display_map_message.empty()) + if(level && level->name.empty() && !level->display_map_message.empty() && + level->passive_message) { // direction and the apply_action_ are opposites, since they "see" // directions in a different way if((direction == D_NORTH && level->apply_action_south) || @@ -311,11 +312,7 @@ } Tile* cur_tile = worldmap->at(tile_pos); - if (cur_tile->stop || (level && !level->name.empty()) || - (cur_tile->one_way == NORTH_SOUTH_WAY && direction != D_SOUTH) || - (cur_tile->one_way == SOUTH_NORTH_WAY && direction != D_NORTH) || - (cur_tile->one_way == EAST_WEST_WAY && direction != D_WEST) || - (cur_tile->one_way == WEST_EAST_WAY && direction != D_EAST)) + if (cur_tile->stop || (level && !level->name.empty())) { stop(); } @@ -356,7 +353,6 @@ } else { - puts("Tilemap data is buggy"); stop(); } } @@ -473,6 +469,8 @@ reader.read_string("map-message", &level.display_map_message); level.auto_path = true; reader.read_bool("auto-path", &level.auto_path); + level.passive_message = true; + reader.read_bool("passive-message", &level.passive_message); level.apply_action_north = level.apply_action_south = level.apply_action_east = level.apply_action_west = true; @@ -913,7 +911,7 @@ } /* Display a message in the map, if any as been selected */ - if((!i->display_map_message.empty() && !i->name.empty())) + if(!i->display_map_message.empty() && !i->passive_message) gold_text->draw_align(i->display_map_message.c_str(), screen->w/2, screen->h - 30,A_HMIDDLE, A_BOTTOM); break; Index: worldmap.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/worldmap.h,v retrieving revision 1.28.2.9 retrieving revision 1.28.2.10 diff -u -d -r1.28.2.9 -r1.28.2.10 --- worldmap.h 30 Jul 2004 22:34:31 -0000 1.28.2.9 +++ worldmap.h 31 Jul 2004 10:39:50 -0000 1.28.2.10 @@ -174,6 +174,7 @@ /** Message to show in the Map during a certain time */ std::string display_map_message; + bool passive_message; /** If false, disables the auto walking after finishing a level */ bool auto_path; |
From: Marek M. <wa...@us...> - 2004-07-31 10:30:44
|
Update of /cvsroot/super-tux/supertux/data/levels/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31342/data/levels/default Modified Files: Tag: supertux_0_1_1_branch bonusisland.stwm Log Message: fixed a bug which allowed tux to wander off the paths after completeing the secret level Index: bonusisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/default/Attic/bonusisland.stwm,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- bonusisland.stwm 31 Jul 2004 10:06:52 -0000 1.1.2.10 +++ bonusisland.stwm 31 Jul 2004 10:30:30 -0000 1.1.2.11 @@ -45,7 +45,7 @@ 15 37 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 42 17 9 9 9 9 9 9 9 9 9 9 9 15 19 19 49 50 51 47 19 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 14 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 13 9 9 9 9 9 9 9 9 9 9 9 15 60 19 52 53 54 47 60 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 55 56 57 42 19 17 9 9 9 9 9 9 9 11 16 64 16 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 19 19 19 19 19 17 9 9 9 9 9 9 9 14 21 19 19 23 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 19 19 19 19 19 17 9 9 9 9 9 9 9 14 21 67 19 23 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 14 18 18 18 18 18 18 18 13 9 9 9 9 9 9 9 9 14 21 19 20 13 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 14 18 13 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 )) |
From: Marek M. <wa...@us...> - 2004-07-31 10:30:41
|
Update of /cvsroot/super-tux/supertux/data/images/worldmap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31342/data/images/worldmap Modified Files: Tag: supertux_0_1_1_branch antarctica.stwt Log Message: fixed a bug which allowed tux to wander off the paths after completeing the secret level Index: antarctica.stwt =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/worldmap/antarctica.stwt,v retrieving revision 1.7.2.4 retrieving revision 1.7.2.5 diff -u -d -r1.7.2.4 -r1.7.2.5 --- antarctica.stwt 31 Jul 2004 10:06:51 -0000 1.7.2.4 +++ antarctica.stwt 31 Jul 2004 10:30:29 -0000 1.7.2.5 @@ -283,7 +283,7 @@ (west #f) (east #f)) - ;; SECRET PATHS, derived from tiles 44,18,9,16 + ;; SECRET PATHS, derived from tiles 44,18,9,16,19 (tile (id 61) (image "road_new.png") (north #t) @@ -317,23 +317,33 @@ ;;one-way vertical road (tile (id 65) - (image "road_ns.png") - (north #t) - (south #t) - (west #f) - (east #f) - (stop #f) - (one-way "north-south")) + (image "road_ns.png") + (north #t) + (south #t) + (west #f) + (east #f) + (stop #f) + (one-way "north-south")) ;;one-way horizontal road (tile (id 66) - (image "road_we.png") - (north #f) - (south #f) - (west #t) - (east #t) - (stop #f) - (one-way "west-east")) + (image "road_we.png") + (north #f) + (south #f) + (west #t) + (east #t) + (stop #f) + (one-way "west-east")) + + (tile (id 67) + (image "snow9.png") + (stop #f) + (north #t) + (south #f) + (west #f) + (east #f)) + + ) |
From: Marek M. <wa...@us...> - 2004-07-31 10:07:05
|
Update of /cvsroot/super-tux/supertux/data/levels/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28377/data/levels/default Modified Files: Tag: supertux_0_1_1_branch bonusisland.stwm Log Message: -changed bonus island worldmap, added a path leading back -added template for a new level PLEASE NOTE: -the game says tilemap data is buggy, i don't know why, maybe someone can check this out. -I put in a little gag with some map-messages being thrown on that new path leading back to the start; I'm not sure if it's funny :-) please try it and tell me if you like it. Thanks Index: bonusisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/default/Attic/bonusisland.stwm,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- bonusisland.stwm 30 Jul 2004 16:30:34 -0000 1.1.2.9 +++ bonusisland.stwm 31 Jul 2004 10:06:52 -0000 1.1.2.10 @@ -11,51 +11,50 @@ 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 11 16 16 16 16 16 16 16 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 24 25 26 58 24 26 19 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 11 16 16 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 30 29 28 59 31 27 19 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 11 22 19 19 23 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 24 26 47 30 28 19 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 15 19 20 21 20 13 9 9 9 9 9 9 11 16 16 16 16 16 16 16 16 16 16 16 16 22 19 30 28 47 19 19 19 23 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 12 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 15 19 17 14 13 9 9 9 9 9 9 9 15 48 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 45 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 39 17 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 14 18 13 9 9 9 9 9 9 9 9 9 15 47 20 18 18 21 19 19 19 19 19 19 19 19 19 19 60 47 60 19 19 19 20 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 21 47 17 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 11 16 16 16 16 16 22 47 17 9 9 15 19 48 40 40 40 40 40 40 40 40 40 45 40 40 40 39 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 15 48 40 40 40 40 40 42 17 9 9 15 19 47 20 18 21 19 20 18 21 19 19 47 20 18 21 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 11 16 16 16 16 16 16 22 47 20 18 18 18 18 18 13 9 9 15 48 42 17 9 14 18 13 9 14 21 19 47 17 9 15 47 17 9 9 11 16 16 16 16 16 16 16 16 12 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 15 48 40 40 40 40 40 40 42 17 9 9 9 9 9 9 9 9 15 47 20 13 9 9 9 9 11 16 22 19 47 17 9 15 47 17 11 16 22 48 40 40 40 40 39 19 19 17 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 15 47 20 18 18 18 18 18 18 13 9 9 9 9 11 16 12 9 15 47 17 9 9 11 12 9 14 21 19 19 47 23 16 22 47 23 22 60 19 47 19 19 19 19 47 19 19 17 9 9 9 9 11 22 47 23 12 9 9 9 9 9 9 9 9 - 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 14 18 13 9 15 47 17 9 9 15 23 12 9 14 21 19 37 40 40 39 37 40 40 40 40 42 19 48 40 40 42 19 20 13 9 9 9 9 15 60 47 60 17 9 9 9 9 9 9 9 9 - 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 15 19 17 9 9 14 18 18 18 21 47 20 18 21 60 19 19 19 47 19 19 20 18 13 9 9 9 9 9 14 21 47 20 13 9 9 9 9 9 9 9 9 - 9 9 9 9 11 22 47 23 12 11 16 16 16 16 12 9 9 9 9 9 9 9 9 15 47 17 9 9 14 18 13 9 9 9 9 9 9 15 47 17 9 14 18 21 19 19 47 19 19 23 12 9 9 9 9 9 11 16 22 47 23 16 12 9 9 9 9 9 9 9 - 9 9 9 9 15 19 47 19 23 22 48 40 40 39 17 9 9 9 9 9 11 16 16 22 47 23 16 16 16 16 12 9 9 9 9 9 9 15 47 17 9 9 9 14 21 19 47 19 19 19 23 12 9 9 9 9 15 19 19 47 19 19 17 9 9 9 9 9 9 9 - 9 9 9 9 15 19 47 19 19 19 47 19 19 47 17 9 9 9 9 9 15 19 19 19 47 19 19 48 40 39 17 9 9 9 9 9 9 15 47 17 9 9 9 9 15 19 37 40 40 39 19 17 9 9 9 9 14 21 19 37 40 39 23 16 12 9 9 9 9 9 - 9 9 9 9 14 21 47 19 19 48 42 19 19 47 23 12 9 9 9 9 14 18 21 19 47 19 19 47 19 47 17 9 9 9 9 11 16 22 47 23 16 12 9 9 15 19 19 19 19 47 19 17 9 9 9 9 9 15 19 19 19 47 19 20 13 9 9 9 9 9 - 9 9 9 9 9 15 37 40 40 42 24 25 26 47 19 17 9 11 12 9 9 9 14 21 37 40 40 42 19 47 17 9 9 9 9 15 19 19 47 19 19 23 12 9 14 18 18 18 21 47 20 13 9 11 16 16 16 22 19 19 19 47 19 23 12 9 9 9 9 9 - 9 9 9 9 9 15 19 19 19 19 31 32 27 47 19 17 9 14 13 9 9 11 16 22 19 60 19 19 19 47 17 9 9 9 9 14 21 19 37 40 40 39 17 9 9 9 9 9 15 47 17 9 9 15 48 40 40 40 40 39 19 37 40 39 23 12 9 9 9 9 - 9 9 9 9 9 15 19 60 19 19 30 29 28 47 20 13 9 9 9 9 11 22 19 19 19 19 19 19 19 47 17 9 9 9 9 9 14 21 19 19 19 47 17 9 9 9 9 11 22 47 17 9 9 15 47 19 19 19 19 47 19 19 19 47 19 17 9 9 9 9 - 9 9 9 9 9 14 21 48 40 40 40 40 40 42 17 9 9 9 9 9 15 48 40 40 40 40 40 40 40 42 17 9 9 9 9 9 9 15 19 19 19 47 17 9 9 9 9 15 19 47 17 9 9 15 47 19 19 19 19 37 40 40 40 42 19 17 9 9 9 9 - 9 9 9 9 11 16 22 47 19 19 19 19 19 19 17 9 9 9 9 9 15 47 19 19 19 19 20 21 19 20 13 9 9 9 9 9 9 15 19 48 40 42 23 12 9 9 9 15 19 47 17 9 9 15 37 40 39 19 19 19 19 19 19 19 19 17 9 9 9 9 - 9 9 9 9 15 19 19 37 40 40 40 40 40 39 17 9 9 9 9 9 15 37 40 39 19 20 13 14 18 13 9 9 9 9 9 9 9 14 21 47 19 19 19 17 9 9 11 22 19 47 17 9 9 15 19 19 37 40 40 40 40 40 39 19 20 13 9 9 9 9 - 9 9 9 9 14 21 19 19 19 19 19 19 19 47 23 12 9 9 9 9 14 18 21 47 20 13 9 9 9 9 9 9 9 9 9 9 9 9 15 47 20 18 18 13 9 9 14 21 19 47 17 9 9 14 21 19 19 19 20 18 18 21 47 20 13 9 9 9 9 9 - 9 9 9 9 9 14 18 18 18 18 18 18 21 47 20 13 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 14 21 47 17 9 9 9 14 18 18 18 13 9 9 15 47 17 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 15 65 23 16 16 16 16 16 16 16 22 65 23 16 16 16 16 16 16 16 16 16 16 16 16 16 22 65 23 16 16 16 16 16 16 16 22 65 23 16 16 16 16 16 16 16 16 16 16 22 65 17 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 15 37 40 40 40 40 40 40 40 40 40 44 40 40 40 40 40 40 40 40 40 40 40 43 40 40 40 44 40 40 40 40 40 40 40 40 40 61 40 40 40 40 40 40 40 40 40 40 40 40 42 17 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 14 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 21 47 20 18 18 18 18 18 18 18 18 18 18 18 18 62 18 18 18 18 18 18 18 18 18 18 18 18 18 13 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 11 16 16 22 47 23 16 16 12 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 19 37 40 39 19 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 49 50 51 47 19 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 60 19 52 53 54 47 60 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 11 16 16 16 16 16 16 22 19 19 23 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 22 19 19 19 47 30 28 19 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 15 48 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 66 40 46 19 19 19 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 15 47 20 18 18 18 21 19 20 18 18 18 18 18 18 18 18 18 21 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 47 19 19 19 23 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 12 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 14 18 13 9 9 9 9 9 9 9 9 9 15 48 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 45 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 39 17 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 11 16 16 16 16 16 22 47 20 18 18 21 19 48 40 40 40 40 40 40 40 40 40 45 40 40 40 39 20 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 21 47 17 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 15 48 40 40 40 40 40 42 17 9 9 15 19 47 20 18 21 19 20 18 21 19 19 47 20 18 21 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 11 16 16 22 47 20 18 18 18 18 18 13 9 9 15 48 42 17 9 14 18 13 9 14 21 19 47 17 9 15 47 17 9 9 11 16 16 16 16 16 16 16 16 12 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 15 48 40 40 42 17 9 9 9 9 9 9 9 9 15 47 20 13 9 9 9 9 11 16 22 19 47 17 9 15 47 17 11 16 22 48 40 40 40 40 39 19 19 17 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 15 47 20 18 18 13 9 9 9 9 11 16 12 9 15 47 17 9 9 11 12 9 14 21 19 19 47 23 16 22 47 23 22 60 19 47 19 19 19 19 47 19 19 17 9 9 9 9 11 22 47 23 12 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 14 18 13 9 15 47 17 9 9 15 23 12 9 14 21 19 37 40 40 39 37 40 40 40 40 42 19 48 40 40 42 19 20 13 9 9 9 9 15 60 47 60 17 9 9 9 9 9 9 9 9 + 15 47 17 9 9 11 16 12 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 15 19 17 9 9 14 18 18 18 21 47 20 18 21 60 19 19 19 47 19 19 20 18 13 9 9 9 9 9 14 21 47 20 13 9 9 9 9 9 9 9 9 + 15 47 17 9 11 22 19 23 12 15 47 23 16 16 12 9 9 9 9 9 9 9 9 15 47 17 9 9 14 18 13 9 9 9 9 9 9 15 47 17 9 14 18 21 19 19 47 19 19 23 12 9 9 9 9 9 11 16 22 47 23 16 12 9 9 9 9 9 9 9 + 15 47 17 9 15 19 19 19 23 22 47 48 40 39 17 9 9 9 9 9 11 16 16 22 47 23 16 16 16 16 12 9 9 9 9 9 9 15 47 17 9 9 9 14 21 19 47 19 19 19 23 12 9 9 9 9 15 19 19 47 19 19 17 9 9 9 9 9 9 9 + 15 47 17 9 15 19 48 40 40 40 42 47 19 47 17 9 9 9 9 9 15 19 19 19 47 19 19 48 40 39 17 9 9 9 9 9 9 15 47 17 9 9 9 9 15 19 37 40 40 39 19 17 9 9 9 9 14 21 19 37 40 39 23 16 12 9 9 9 9 9 + 15 47 17 9 14 21 47 19 19 60 19 47 19 47 23 12 9 9 9 9 14 18 21 19 47 19 19 47 19 47 17 9 9 9 9 11 16 22 47 23 16 12 9 9 15 19 19 19 19 47 19 17 9 9 9 9 9 15 19 19 19 47 19 20 13 9 9 9 9 9 + 15 47 17 9 9 15 37 40 40 40 40 42 19 47 19 17 9 11 12 9 9 9 14 21 37 40 40 42 19 47 17 9 9 9 9 15 19 19 47 19 19 23 12 9 14 18 18 18 21 47 20 13 9 11 16 16 16 22 19 19 19 47 19 23 12 9 9 9 9 9 + 15 47 17 9 9 15 19 19 19 19 24 25 26 47 19 17 9 14 13 9 9 11 16 22 19 60 19 19 19 47 17 9 9 9 9 14 21 19 37 40 40 39 17 9 9 9 9 9 15 47 17 9 9 15 48 40 40 40 40 39 19 37 40 39 23 12 9 9 9 9 + 15 47 17 9 9 15 19 19 19 19 30 29 28 47 20 13 9 9 9 9 11 22 19 19 19 19 19 19 19 47 17 9 9 9 9 9 14 21 19 19 19 47 17 9 9 9 9 11 22 47 17 9 9 15 47 19 19 19 19 47 19 19 19 47 19 17 9 9 9 9 + 15 47 17 9 9 14 21 48 40 40 40 40 40 42 17 9 9 9 9 9 15 48 40 40 40 40 40 40 40 42 17 9 9 9 9 9 9 15 19 19 19 47 17 9 9 9 9 15 19 47 17 9 9 15 47 19 19 19 19 37 40 40 40 42 19 17 9 9 9 9 + 15 47 17 9 11 16 22 47 19 19 19 19 19 19 17 9 9 9 9 9 15 47 19 19 19 19 20 21 19 20 13 9 9 9 9 9 9 15 19 48 40 42 23 12 9 9 9 15 19 47 17 9 9 15 37 40 39 19 19 19 19 19 19 19 19 17 9 9 9 9 + 15 47 17 9 15 19 19 37 40 40 40 40 40 39 17 9 9 9 9 9 15 37 40 39 19 20 13 14 18 13 9 9 9 9 9 9 9 14 21 47 19 19 19 17 9 9 11 22 19 47 17 9 9 15 19 19 37 40 40 40 40 40 39 19 20 13 9 9 9 9 + 15 47 17 9 14 21 19 19 19 19 19 19 19 47 23 12 9 9 9 9 14 18 21 47 20 13 9 9 9 9 9 9 9 9 9 9 9 9 15 47 20 18 18 13 9 9 14 21 19 47 17 9 9 14 21 19 19 19 20 18 18 21 47 20 13 9 9 9 9 9 + 15 47 17 9 9 14 18 18 18 18 18 18 21 47 20 13 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 14 21 47 17 9 9 9 14 18 18 18 13 9 9 15 47 17 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 15 65 17 9 9 9 9 9 9 9 15 65 17 9 9 9 9 9 9 9 9 9 9 9 9 9 15 65 17 9 9 9 9 9 9 9 15 65 17 9 9 9 9 9 9 9 9 9 9 15 65 17 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 15 47 23 16 16 16 16 16 16 16 22 47 23 16 16 16 16 16 16 16 16 16 16 16 16 16 22 47 23 16 16 16 16 16 16 16 22 47 23 16 16 16 16 16 16 16 16 16 16 22 47 17 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 15 37 40 40 40 40 43 40 40 40 40 44 40 40 40 40 40 40 40 40 40 40 40 43 40 40 40 44 40 40 40 40 40 40 40 40 40 61 40 40 40 40 40 40 40 40 40 40 40 40 42 17 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 14 18 18 18 18 21 47 20 18 18 18 18 18 18 18 18 18 18 18 18 18 18 21 47 20 18 18 18 18 18 18 18 18 18 18 18 18 62 18 18 18 18 18 18 18 18 18 18 18 18 18 13 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 15 47 17 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 47 17 9 9 9 9 9 9 9 9 9 9 9 11 16 16 22 47 23 16 16 12 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 15 47 23 16 16 16 16 16 16 16 16 16 16 16 16 16 16 22 47 17 9 9 9 9 9 9 9 9 9 9 9 15 19 19 19 37 40 39 19 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 15 37 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 42 17 9 9 9 9 9 9 9 9 9 9 9 15 19 19 49 50 51 47 19 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 + 14 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 13 9 9 9 9 9 9 9 9 9 9 9 15 60 19 52 53 54 47 60 17 9 9 9 9 9 9 9 9 9 63 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 55 56 57 42 19 17 9 9 9 9 9 9 9 11 16 64 16 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 15 19 19 19 19 19 19 19 17 9 9 9 9 9 9 9 14 21 19 19 23 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 14 18 18 18 18 18 18 18 13 9 9 9 9 9 9 9 9 14 21 19 20 13 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 14 18 13 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 )) - (levels (level (name "bonus1/abednego-level1.stl") (x 7) (y 18)) (level (name "bonus1/abednego-level2.stl") - (x 11) + (x 12) (y 15)) (level (name "bonus1/abednego-level3.stl") (x 9) @@ -64,7 +63,7 @@ (x 12) (y 23)) (level (name "bonus1/matr1x-level1.stl") - (x 24) + (x 24) (y 17)) (level (name "bonus1/matr1x-level2.stl") (x 29) @@ -73,13 +72,13 @@ (x 25) (y 21)) (level (name "bonus1/thompson-level1.stl") - (x 38) + (x 38) (y 18)) (level (name "bonus1/thompson-level2.stl") (x 40) (y 22)) (level (name "bonus1/torfi-level1.stl") - (x 42) + (x 42) (y 12)) (level (name "bonus1/torfi-level2.stl") (x 47) @@ -88,7 +87,7 @@ (x 46) (y 15)) (level (name "bonus1/wansti-level1.stl") - (x 59) + (x 59) (y 15)) (level (name "bonus1/wansti-level2.stl") (x 60) @@ -98,7 +97,10 @@ (y 23)) (level (name "bonus1/gate.stl") (x 35) - (y 28)) + (y 28)) + (level (name "bonus1/wayhome.stl") + (x 18) + (y 29)) (level (name "bonus1/castle.stl") (x 35) (y 36)) @@ -106,41 +108,61 @@ (x 49) (y 37)) - (level (map-message "This way to Abednego's Area") + (level (map-message "This way leads to Abednego's Area") (x 34) - (y 5) (apply-action-left #f)) + (y 6) (apply-action-left #f)) (level (map-message "To the SuperTux Team Island") (x 36) - (y 5) (apply-action-right #f)) - (level (map-message "Matr1x' Sector this way") + (y 6) (apply-action-right #f)) + (level (map-message "Matr1x' Sector lies this way") (x 34) - (y 7) (apply-action-left #f)) + (y 7) (apply-action-left #f)) (level (map-message "About to enter Thompson's Domain") (x 35) - (y 8) (apply-action-down #f)) + (y 8) (apply-action-down #f)) (level (map-message "Torfi's Territory just ahead") (x 36) (y 7) (apply-action-right #f)) (level (map-message "You found a secret place!") (x 49) - (y 29) (apply-action-down #f)) + (y 29) (apply-action-down #f)) + + (level (map-message "Icy Road...") + (x 7) + (y 34) (apply-action-left #f)) + (level (map-message "...take me home...") + (x 1) + (y 24) (apply-action-up #f)) + (level (map-message "...to the igloo...") + (x 1) + (y 12) (apply-action-up #f)) + (level (map-message "...I belong...") + (x 12) + (y 4) (apply-action-right #f)) + - (level (map-message "No entry from this side!") + (level (map-message "I cannot enter from this side.") (x 13) (y 27) (apply-action-up #f)) - (level (map-message "No entry from this side!") + (level (map-message "I cannot enter from this side.") (x 23) (y 27) (apply-action-up #f)) - (level (map-message "No entry from this side!") + (level (map-message "I cannot enter from this side.") (x 39) (y 27) (apply-action-up #f)) - (level (map-message "No entry from this side!") + (level (map-message "I cannot enter from this side.") (x 49) (y 27) (apply-action-up #f)) - (level (map-message "No entry from this side!") + (level (map-message "I cannot enter from this side.") (x 62) (y 27) (apply-action-up #f)) + (level (map-message "Something is blocking the way.") + (x 34) + (y 4) (apply-action-left #f)) + ) ) + + |