super-tux-commit Mailing List for Super Tux (Page 37)
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
|
Update of /cvsroot/super-tux/supertux/data/images/shared In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17933/data/images/shared Added Files: bigtux-star-0.png bigtux-star-1.png bigtux-star-2.png Removed Files: largetux-star-0.png largetux-star-1.png largetux-star-2.png Log Message: Renaming images. --- largetux-star-2.png DELETED --- --- NEW FILE: bigtux-star-2.png --- (This appears to be a binary file; contents omitted.) --- largetux-star-0.png DELETED --- --- largetux-star-1.png DELETED --- --- NEW FILE: bigtux-star-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bigtux-star-1.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-08-18 00:01:25
|
Update of /cvsroot/super-tux/supertux/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18835/data Removed Files: supertux.strf Log Message: Moved supertux.strf to inside images/. --- supertux.strf DELETED --- |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:23:21
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3051/src Modified Files: player.cpp player.h Log Message: Changed next action behavior. Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.153 retrieving revision 1.154 diff -u -d -r1.153 -r1.154 --- player.cpp 17 Aug 2004 23:06:27 -0000 1.153 +++ player.cpp 17 Aug 2004 23:23:11 -0000 1.154 @@ -95,12 +95,12 @@ } void -TuxBodyParts::start_animation(int loops, std::string next_action) +TuxBodyParts::one_time_animation() { -head->start_animation(loops, next_action); -body->start_animation(loops, next_action); -arms->start_animation(loops, next_action); -feet->start_animation(loops, next_action); +head->start_animation(1); +body->start_animation(1); +arms->start_animation(1); +feet->start_animation(1); } void @@ -826,12 +826,12 @@ if (dir == RIGHT) { tux_body->set_action("idle-right"); - tux_body->start_animation(1, "stand-right"); + tux_body->one_time_animation(); } else { tux_body->set_action("idle-left"); - tux_body->start_animation(1, "stand-left"); + tux_body->one_time_animation(); } idle_timer.start(IDLE_TIME); } Index: player.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.h,v retrieving revision 1.82 retrieving revision 1.83 diff -u -d -r1.82 -r1.83 --- player.h 17 Aug 2004 23:06:27 -0000 1.82 +++ player.h 17 Aug 2004 23:23:11 -0000 1.83 @@ -110,7 +110,7 @@ ~TuxBodyParts() { }; void set_action(std::string action); - void start_animation(int loops, std::string next_action = ""); + void one_time_animation(); void draw(DrawingContext& context, const Vector& pos, int layer, Uint32 drawing_effect = NONE_EFFECT); |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:23:03
|
Update of /cvsroot/super-tux/supertux/lib/special In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2964/lib/special Modified Files: sprite.cpp sprite.h Log Message: Changed next action behavior. Index: sprite.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/special/sprite.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- sprite.cpp 17 Aug 2004 23:01:58 -0000 1.13 +++ sprite.cpp 17 Aug 2004 23:22:47 -0000 1.14 @@ -98,17 +98,20 @@ void Sprite::set_action(std::string act) { +if(!next_action.empty() && animation_loops > 0) + { + next_action = act; + return; + } Actions::iterator i = actions.find(act); action = i->second; } void -Sprite::start_animation(int loops, std::string next_act) +Sprite::start_animation(int loops) { reset(); animation_loops = loops; -if(!next_act.empty()) - next_action = next_act; } void Index: sprite.h =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/special/sprite.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- sprite.h 17 Aug 2004 23:01:58 -0000 1.10 +++ sprite.h 17 Aug 2004 23:22:47 -0000 1.11 @@ -64,9 +64,8 @@ /* Start an animation -1 - for infinite 0 - stopped - 1,2,3 - one, two, three times... - If next_act specified, that action will be used when animation ends. */ - void start_animation(int loops, std::string next_act = ""); + 1,2,3 - one, two, three times... */ + void start_animation(int loops); /** Check if animation is stopped or not */ bool check_animation(); /** Reverse the animation */ @@ -117,7 +116,7 @@ Actions actions; Action* action; - std::string next_action; + std::string next_action; }; } //namespace SuperTux |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:17:31
|
Update of /cvsroot/super-tux/supertux/data/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19013/data/images Added Files: supertux.strf Log Message: Added entries for separated body parts. --- NEW FILE: supertux.strf --- ;; -*- mode: scheme; -*- (supertux-resources ; Big Tux (no power) sprite (sprite ;; Big Tux arms (name "big-tux-arms") (action (name "walk-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-walk-left-0.png" "shared/bigtux/arms-walk-left-1.png" "shared/bigtux/arms-walk-left-2.png" "shared/bigtux/arms-walk-left-3.png" "shared/bigtux/arms-walk-left-4.png" "shared/bigtux/arms-walk-left-5.png")) (action (name "walk-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-walk-right-0.png" "shared/bigtux/arms-walk-right-1.png" "shared/bigtux/arms-walk-right-2.png" "shared/bigtux/arms-walk-right-3.png" "shared/bigtux/arms-walk-right-4.png" "shared/bigtux/arms-walk-right-5.png")) (action (name "stand-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-stand-left-0.png")) (action (name "stand-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-stand-right-0.png")) (action (name "jump-left") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/arms-jump-left-0.png")) (action (name "jump-right") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/arms-jump-right-0.png")) (action (name "skid-left") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/arms-skid-left-0.png")) (action (name "skid-right") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/arms-skid-right-0.png")) (action (name "kick-left") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-stand-left-0.png")) (action (name "kick-right") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-stand-right-0.png")) ; Grabbing is arms specific! (action (name "grab-left") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-grab-left-0.png")) (action (name "grab-right") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/arms-grab-right-0.png"))) ;; Big Tux Head (sprite (name "big-tux-head") (action (name "walk-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-stand-left-0.png")) (action (name "walk-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-stand-right-0.png")) (action (name "stand-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-stand-left-0.png")) (action (name "stand-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-stand-right-0.png")) (action (name "jump-left") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/head-stand-left-0.png")) (action (name "jump-right") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/head-stand-right-0.png")) (action (name "skid-left") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/head-skid-left-0.png")) (action (name "skid-right") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/head-skid-right-0.png")) (action (name "kick-left") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-stand-left-0.png")) (action (name "kick-right") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-stand-right-0.png"))) ;; Big Tux Body (sprite (name "big-tux-body") (action (name "walk-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/body-stand-left-0.png")) (action (name "walk-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/body-stand-right-0.png")) (action (name "stand-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/body-stand-left-0.png")) (action (name "stand-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/body-stand-right-0.png")) (action (name "jump-left") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/body-stand-left-0.png")) (action (name "jump-right") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/body-stand-right-0.png")) (action (name "skid-left") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/body-skid-left-0.png")) (action (name "skid-right") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/body-skid-right-0.png")) (action (name "kick-left") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/body-stand-left-0.png")) (action (name "kick-right") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/body-stand-right-0.png"))) ;; Big Tux Feet (sprite (name "big-tux-feet") (action (name "walk-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/feet-walk-left-0.png" "shared/bigtux/feet-walk-left-1.png" "shared/bigtux/feet-walk-left-2.png" "shared/bigtux/feet-walk-left-3.png" "shared/bigtux/feet-walk-left-4.png" "shared/bigtux/feet-walk-left-5.png")) (action (name "walk-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/feet-walk-right-0.png" "shared/bigtux/feet-walk-right-1.png" "shared/bigtux/feet-walk-right-2.png" "shared/bigtux/feet-walk-right-3.png" "shared/bigtux/feet-walk-right-4.png" "shared/bigtux/feet-walk-right-5.png")) (action (name "stand-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/feet-stand-left-0.png" )) (action (name "stand-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/feet-stand-right-0.png")) (action (name "jump-left") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/feet-jump-left-0.png")) (action (name "jump-right") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/feet-jump-right-0.png")) (action (name "skid-left") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/feet-skid-left-0.png")) (action (name "skid-right") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/feet-skid-right-0.png")) (action (name "kick-left") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/feet-kick-left-0.png")) (action (name "kick-right") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/feet-kick-right-0.png"))) ; End of Big Tux (no power) sprite ; Big Fire Tux sprite ;; Big Tux Head (sprite (name "big-fire-tux-head") (action (name "walk-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-fire-stand-left-0.png")) (action (name "walk-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-fire-stand-right-0.png")) (action (name "stand-left") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-fire-stand-left-0.png")) (action (name "stand-right") (fps 15.0) (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-fire-stand-right-0.png")) (action (name "jump-left") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/head-fire-stand-left-0.png")) (action (name "jump-right") (fps 15.0) (x-hotspot 5) (y-hotspot 7) (images "shared/bigtux/head-fire-stand-right-0.png")) (action (name "skid-left") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/head-skid-left-0.png")) (action (name "skid-right") (x-hotspot 6) (y-hotspot 8) (images "shared/bigtux/head-skid-right-0.png")) (action (name "kick-left") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-fire-stand-left-0.png")) (action (name "kick-right") (x-hotspot 5) (y-hotspot 9) (images "shared/bigtux/head-fire-stand-right-0.png"))) ; End of Big Fire Tux sprite (sprite (name "smalltux-gameover") (action (fps 10.0) (x-hotspot 13) (y-hotspot 6) (images "shared/smalltux-gameover-0.png" "shared/smalltux-gameover-1.png"))) (sprite (name "smalltux-star") (action (x-hotspot 5) (y-hotspot 15) (images "shared/smalltux-star-0.png" "shared/smalltux-star-1.png" "shared/smalltux-star-2.png"))) (sprite (name "bigtux-star") (action (x-hotspot 8) (y-hotspot 8) (images "shared/bigtux-star-0.png" "shared/bigtux-star-1.png" "shared/bigtux-star-2.png"))) ; ;; Growing Tux animation ; (sprite (name "tux-grow-left") ; (action ; (fps 4.0) ; (x-hotspot 6) ; (y-hotspot 2) ; (images "shared/tux-grow-left-1.png" ; "shared/tux-grow-left-2.png" ; "shared/tux-grow-left-3.png" ; "shared/tux-grow-left-4.png" ; "shared/tux-grow-left-5.png" ; "shared/tux-grow-left-6.png" ; "shared/tux-grow-left-7.png"))) ; ; (sprite (name "tux-grow-right") ; (action ; (fps 4.0) ; (x-hotspot 6) ; (y-hotspot 2) ; (images "shared/tux-grow-right-1.png" ; "shared/tux-grow-right-2.png" ; "shared/tux-grow-right-3.png" ; "shared/tux-grow-right-4.png" ; "shared/tux-grow-right-5.png" ; "shared/tux-grow-right-6.png" ; "shared/tux-grow-right-7.png"))) ;; Laptop (sprite (name "mriceblock-left") (action (x-hotspot 2) (y-hotspot 3) (images "shared/mriceblock-left-0.png" "shared/mriceblock-left-1.png" "shared/mriceblock-left-2.png" "shared/mriceblock-left-1.png"))) (sprite (name "mriceblock-right") (action (x-hotspot 2) (y-hotspot 3) (images "shared/mriceblock-right-0.png" "shared/mriceblock-right-1.png" "shared/mriceblock-right-2.png" "shared/mriceblock-right-1.png"))) (sprite (name "mriceblock-falling-right") (action (x-hotspot 2) (y-hotspot 3) (images "shared/mriceblock-flat-right.png"))) (sprite (name "mriceblock-falling-left") (action (x-hotspot 2) (y-hotspot 3) (images "shared/mriceblock-flat-left.png"))) (sprite (name "mriceblock-flat-left") (action (x-hotspot 2) (y-hotspot 3) (images "shared/mriceblock-flat-left.png"))) (sprite (name "mriceblock-flat-right") (action (x-hotspot 2) (y-hotspot 3) (images "shared/mriceblock-flat-right.png"))) ; (sprite (name "mriceblock-falling-left") ; (images "shared/mriceblock-falling-left.png"))) ; (sprite (name "mriceblock-falling-right") ; (images "shared/mriceblock-falling-right.png"))) (sprite (name "snowball-squished-left") (action (x-hotspot 1) (y-hotspot -19) (images "shared/snowball-squished-left.png"))) (sprite (name "snowball-squished-right") (action (x-hotspot 1) (y-hotspot -19) (images "shared/snowball-squished-right.png"))) (sprite (name "jumpy-left-up") (action (x-hotspot 7) (y-hotspot 8) (images "shared/jumpy-left-up-0.png"))) (sprite (name "jumpy-left-down") (action (x-hotspot 7) (y-hotspot 8) (images "shared/jumpy-left-down-0.png"))) (sprite (name "jumpy-left-middle") (action (x-hotspot 7) (y-hotspot 8) (images "shared/jumpy-left-middle-0.png"))) (sprite (name "jumpy-left-iced") (action (x-hotspot 7) (y-hotspot 8) (images "shared/jumpy-iced-left-up-0.png"))) (sprite (name "mrbomb-left") (action (fps 10.0) (x-hotspot 3) (y-hotspot 12) (images "shared/mrbomb-left-0.png" "shared/mrbomb-left-1.png" "shared/mrbomb-left-2.png" "shared/mrbomb-left-3.png"))) (sprite (name "mrbomb-right") (action (fps 10.0) (x-hotspot 7) (y-hotspot 12) (images "shared/mrbomb-right-0.png" "shared/mrbomb-right-1.png" "shared/mrbomb-right-2.png" "shared/mrbomb-right-3.png"))) (sprite (name "mrbomb-iced-left") (action (x-hotspot 3) (y-hotspot 12) (images "shared/mrbomb-iced-left-0.png"))) (sprite (name "mrbomb-iced-right") (action (x-hotspot 7) (y-hotspot 12) (images "shared/mrbomb-iced-right-0.png"))) (sprite (name "mrbomb-ticking-left") (action (fps 15.0) (x-hotspot 3) (y-hotspot 8) (images "shared/mrbombx-left-0.png" "shared/mrbombx-left-1.png"))) (sprite (name "mrbomb-ticking-right") (action (fps 15.0) (x-hotspot 10) (y-hotspot 8) (images "shared/mrbombx-right-0.png" "shared/mrbombx-right-1.png"))) (sprite (name "mrbomb-explosion") (action (fps 15.0) (x-hotspot 32) (y-hotspot 32) (images "shared/mrbomb-explosion.png" "shared/mrbomb-explosion-1.png"))) (sprite (name "stalactite") (action (x-hotspot 0) (y-hotspot 0) (images "shared/stalactite.png"))) (sprite (name "stalactite-broken") (action (x-hotspot 0) (y-hotspot 16) (images "shared/stalactite-broken.png"))) (sprite (name "flame") (action (images "shared/flame-0.png" "shared/flame-1.png"))) (sprite (name "fish") (action (x-hotspot 2) (y-hotspot 3) (images "shared/fish-left-0.png" "shared/fish-left-1.png"))) (sprite (name "fish-down") (action (x-hotspot 2) (y-hotspot 11) (images "shared/fish-down-0.png"))) (sprite (name "fish-iced") (action (x-hotspot 2) (y-hotspot 3) (images "shared/fish-iced-left-0.png"))) (sprite (name "fish-iced-down") (action (x-hotspot 2) (y-hotspot 11) (images "shared/fish-iced-down-0.png"))) (sprite (name "bouncingsnowball-left") (action (x-hotspot 1) (y-hotspot 0) (images "shared/bouncingsnowball-left-0.png" "shared/bouncingsnowball-left-1.png" "shared/bouncingsnowball-left-2.png" "shared/bouncingsnowball-left-3.png" "shared/bouncingsnowball-left-4.png" "shared/bouncingsnowball-left-5.png"))) (sprite (name "bouncingsnowball-right") (action (x-hotspot 1) (y-hotspot 0) (images "shared/bouncingsnowball-right-0.png" "shared/bouncingsnowball-right-1.png" "shared/bouncingsnowball-right-2.png" "shared/bouncingsnowball-right-3.png" "shared/bouncingsnowball-right-4.png" "shared/bouncingsnowball-right-5.png"))) (sprite (name "bouncingsnowball-squished") (action (x-hotspot 1) (y-hotspot -19) (images "shared/snowball-squished-left.png"))) (sprite (name "flyingsnowball") (action (x-hotspot 4) (y-hotspot 3) (images "shared/flyingsnowball-left-0.png" "shared/flyingsnowball-left-1.png"))) (sprite (name "flyingsnowball-squished") (action (x-hotspot 4) (y-hotspot -12) (images "shared/flyingsnowball-squished-left.png"))) (sprite (name "spiky-left") (action (x-hotspot 6) (y-hotspot 10) (images "shared/spiky-left-0.png" "shared/spiky-left-1.png" "shared/spiky-left-2.png"))) (sprite (name "spiky-right") (action (x-hotspot 6) (y-hotspot 10) (images "shared/spiky-right-0.png" "shared/spiky-right-1.png" "shared/spiky-right-2.png"))) (sprite (name "spiky-iced-left") (action (x-hotspot 6) (y-hotspot 10) (images "shared/spiky-iced-left-0.png"))) (sprite (name "spiky-iced-right") (action (x-hotspot 6) (y-hotspot 10) (images "shared/spiky-iced-right-0.png"))) (sprite (name "snowball-left") (action (x-hotspot 2) (y-hotspot 4) (images "shared/snowball-left-0.png" "shared/snowball-left-1.png" "shared/snowball-left-2.png" "shared/snowball-left-1.png"))) (sprite (name "snowball-right") (action (x-hotspot 2) (y-hotspot 4) (images "shared/snowball-right-0.png" "shared/snowball-right-1.png" "shared/snowball-right-2.png" "shared/snowball-right-1.png"))) (sprite (name "egg") (action (images "shared/egg.png"))) (sprite (name "1up") (action (images "shared/1up.png"))) (sprite (name "star") (action (images "shared/star.png" "shared/star-1.png" "shared/star-2.png" "shared/star-3.png" "shared/star-4.png" "shared/star-3.png" "shared/star-2.png" "shared/star-1.png"))) (sprite (name "fireflower") (action (images "shared/fireflower.png" "shared/fireflower-1.png" "shared/fireflower-2.png" "shared/fireflower-3.png" "shared/fireflower-2.png" "shared/fireflower-1.png"))) (sprite (name "iceflower") (action (images "shared/iceflower-1.png" "shared/iceflower-2.png" "shared/iceflower-3.png"))) (sprite (name "firebullet") (action (x-hotspot 12) (x-hotspot 12) (fps 20) (images "shared/firebullet-1.png" "shared/firebullet-2.png" "shared/firebullet-3.png" "shared/firebullet-4.png"))) (sprite (name "icebullet") (action (x-hotspot 12) (x-hotspot 12) (fps 20) (images "shared/icebullet-1.png"))) ; Trampoline (sprite (name "trampoline") (action (x-hotspot 0) (y-hotspot 0) (images "shared/trampoline-1.png" "shared/trampoline-2.png" "shared/trampoline-3.png" "shared/trampoline-4.png"))) ; Flying platform (sprite (name "flying_platform") (action (x-hotspot 0) (y-hotspot 0) (images "shared/flying_platform-1.png" "shared/flying_platform-2.png" "shared/flying_platform-3.png" "shared/flying_platform-4.png"))) ; Wingling (sprite (name "wingling-left") (action (x-hotspot 0) (y-hotspot 0) (images "shared/wingling-1.png"))) ; Walkingtree (sprite (name "walkingtree-left") (action (x-hotspot 0) (y-hotspot 0) (images "shared/walkingtree-left-1.png"))) (sprite (name "walkingtree-left-small") (action (x-hotspot 0) (y-hotspot 0) (images "shared/walkingtree-left-small-1.png"))) ; Door (sprite (name "door") (action (x-hotspot 0) (y-hotspot 64) (images "shared/door-1.png") )) ; (sprite (name "openingdoor") ; (action ; (x-hotspot 0) ; (y-hotspot 64) ; (images "shared/door-1.png" ; "shared/door-2.png" ; "shared/door-3.png" ; "shared/door-4.png" ; "shared/door-5.png" ; "shared/door-6.png" ; "shared/door-7.png" ; "shared/door-8.png" ; "shared/door-8.png" ; "shared/door-7.png" ; "shared/door-6.png" ; "shared/door-5.png" ; "shared/door-4.png" ; "shared/door-3.png" ; "shared/door-2.png" ; "shared/door-1.png") ; )) ; Stomp (sprite (name "stomp") (action (x-hotspot 0) (y-hotspot 0) (images "shared/stomp.png") )) ) ;; EOF ;; |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:08:14
|
Update of /cvsroot/super-tux/supertux/data/images/shared/smalltux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18258/data/images/shared/smalltux Log Message: Directory /cvsroot/super-tux/supertux/data/images/shared/smalltux added to the repository |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:06:46
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32306/src Modified Files: player.cpp player.h Log Message: Added more animations. Didn't manage to put idle one working. Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.152 retrieving revision 1.153 diff -u -d -r1.152 -r1.153 --- player.cpp 17 Aug 2004 21:54:21 -0000 1.152 +++ player.cpp 17 Aug 2004 23:06:27 -0000 1.153 @@ -43,6 +43,9 @@ // others stuff: #define AUTOSCROLL_DEAD_INTERVAL 300 +// time before idle animation starts +#define IDLE_TIME 2500 + // growing animation Surface* growingtux_left[GROWING_FRAMES]; Surface* growingtux_right[GROWING_FRAMES]; @@ -92,6 +95,15 @@ } void +TuxBodyParts::start_animation(int loops, std::string next_action) +{ +head->start_animation(loops, next_action); +body->start_animation(loops, next_action); +arms->start_animation(loops, next_action); +feet->start_animation(loops, next_action); +} + +void TuxBodyParts::draw(DrawingContext& context, const Vector& pos, int layer, Uint32 drawing_effect) { @@ -148,6 +160,7 @@ kick_timer.init(true); shooting_timer.init(true); growing_timer.init(true); + idle_timer.init(true); physic.reset(); } @@ -155,6 +168,8 @@ int Player::key_event(SDLKey key, int state) { + idle_timer.start(IDLE_TIME); + if(key == keymap.right) { input.right = state; @@ -220,6 +235,7 @@ safe_timer.init(true); frame_timer.init(true); growing_timer.init(true); + idle_timer.init(true); physic.reset(); } @@ -718,7 +734,7 @@ int layer = LAYER_OBJECTS - 1; Vector pos = Vector(base.x, base.y); - if ((!safe_timer.started() || growing_timer.started()) || (global_frame_counter % 2) == 0) + if ((!safe_timer.started() || growing_timer.started()) && (global_frame_counter % 2)) { if (dying == DYING_SQUISHED) { @@ -771,6 +787,13 @@ else tux_body->set_action("kick-left"); } + else if (butt_jump) + { + if (dir == RIGHT) + tux_body->set_action("buttjump-right"); + else + tux_body->set_action("buttjump-left"); + } else if (physic.get_velocity_y() != 0) { if (dir == RIGHT) @@ -797,7 +820,22 @@ } } } - +/* + if(idle_timer.get_left() < 0) + { + if (dir == RIGHT) + { + tux_body->set_action("idle-right"); + tux_body->start_animation(1, "stand-right"); + } + else + { + tux_body->set_action("idle-left"); + tux_body->start_animation(1, "stand-left"); + } + idle_timer.start(IDLE_TIME); + } +*/ // Tux is holding something if ((holding_something && physic.get_velocity_y() == 0) || shooting_timer.check() && !duck) Index: player.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.h,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- player.h 17 Aug 2004 21:54:22 -0000 1.81 +++ player.h 17 Aug 2004 23:06:27 -0000 1.82 @@ -110,6 +110,7 @@ ~TuxBodyParts() { }; void set_action(std::string action); + void start_animation(int loops, std::string next_action = ""); void draw(DrawingContext& context, const Vector& pos, int layer, Uint32 drawing_effect = NONE_EFFECT); @@ -160,6 +161,7 @@ Timer shooting_timer; // used to show the arm when Tux is shooting Timer dying_timer; Timer growing_timer; + Timer idle_timer; Physic physic; public: |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:06:03
|
Update of /cvsroot/super-tux/supertux/data/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32117/data/images Modified Files: supertux.strf Log Message: Added a few more animations. Index: supertux.strf =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/supertux.strf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- supertux.strf 17 Aug 2004 21:52:45 -0000 1.1 +++ supertux.strf 17 Aug 2004 23:05:25 -0000 1.2 @@ -81,6 +81,30 @@ (y-hotspot 9) (images "shared/bigtux/arms-stand-right-0.png")) + (action + (name "buttjump-left") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/arms-stand-left-0.png")) + + (action + (name "buttjump-right") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/arms-stand-right-0.png")) + + (action + (name "idle-left") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/arms-stand-left-0.png")) + + (action + (name "idle-right") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/arms-stand-right-0.png")) + ; Grabbing is arms specific! (action (name "grab-left") @@ -161,7 +185,36 @@ (name "kick-right") (x-hotspot 5) (y-hotspot 9) - (images "shared/bigtux/head-stand-right-0.png"))) + (images "shared/bigtux/head-stand-right-0.png")) + + (action + (name "buttjump-left") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/head-stand-left-0.png")) + + (action + (name "buttjump-right") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/head-stand-right-0.png")) + + (action + (name "idle-left") + (fps 1.0) + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/head-idle-blink-left-0.png" + "shared/bigtux/head-idle-blink-left-1.png")) + + (action + (name "idle-right") + (fps 1.0) + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/head-idle-blink-right-0.png" + "shared/bigtux/head-idle-blink-right-1.png"))) + ;; Big Tux Body (sprite @@ -230,6 +283,30 @@ (name "kick-right") (x-hotspot 5) (y-hotspot 9) + (images "shared/bigtux/body-stand-right-0.png")) + + (action + (name "buttjump-left") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/body-stand-left-0.png")) + + (action + (name "buttjump-right") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/body-stand-right-0.png")) + + (action + (name "idle-left") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/body-stand-left-0.png")) + + (action + (name "idle-right") + (x-hotspot 6) + (y-hotspot 8) (images "shared/bigtux/body-stand-right-0.png"))) ;; Big Tux Feet @@ -264,8 +341,7 @@ (fps 15.0) (x-hotspot 5) (y-hotspot 9) - (images "shared/bigtux/feet-stand-left-0.png" - )) + (images "shared/bigtux/feet-stand-left-0.png")) (action (name "stand-right") @@ -310,7 +386,32 @@ (name "kick-right") (x-hotspot 5) (y-hotspot 9) - (images "shared/bigtux/feet-kick-right-0.png"))) + (images "shared/bigtux/feet-kick-right-0.png")) + + (action + (name "buttjump-left") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/feet-buttjump-left-0.png")) + + (action + (name "buttjump-right") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/feet-buttjump-right-0.png")) + + + (action + (name "idle-left") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/feet-stand-left-0.png")) + + (action + (name "idle-right") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/feet-stand-right-0.png"))) ; End of Big Tux (no power) sprite @@ -382,7 +483,33 @@ (name "kick-right") (x-hotspot 5) (y-hotspot 9) - (images "shared/bigtux/head-fire-stand-right-0.png"))) + (images "shared/bigtux/head-fire-stand-right-0.png")) + + (action + (name "buttjump-left") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/head-fire-stand-left-0.png")) + + (action + (name "buttjump-right") + (x-hotspot 5) + (y-hotspot 9) + (images "shared/bigtux/head-fire-stand-right-0.png")) + + (action + (name "idle-left") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/head-idle-blink-left-0.png" + "shared/bigtux/head-idle-blink-left-1.png")) + + (action + (name "idle-right") + (x-hotspot 6) + (y-hotspot 8) + (images "shared/bigtux/head-idle-blink-right-0.png" + "shared/bigtux/head-idle-blink-right-1.png"))) ; End of Big Fire Tux sprite @@ -392,24 +519,24 @@ (fps 10.0) (x-hotspot 13) (y-hotspot 6) - (images "shared/smalltux-gameover-0.png" - "shared/smalltux-gameover-1.png"))) + (images "shared/smalltux/gameover-0.png" + "shared/smalltux/gameover-1.png"))) (sprite (name "smalltux-star") (action (x-hotspot 5) (y-hotspot 15) - (images "shared/smalltux-star-0.png" - "shared/smalltux-star-1.png" - "shared/smalltux-star-2.png"))) + (images "shared/smalltux/extra-star-0.png" + "shared/smalltux/extra-star-1.png" + "shared/smalltux/extra-star-2.png"))) (sprite (name "bigtux-star") (action (x-hotspot 8) (y-hotspot 8) - (images "shared/bigtux-star-0.png" - "shared/bigtux-star-1.png" - "shared/bigtux-star-2.png"))) + (images "shared/bigtux/extra-star-0.png" + "shared/bigtux/extra-star-1.png" + "shared/bigtux/extra-star-2.png"))) ; ;; Growing Tux animation ; (sprite (name "tux-grow-left") |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:05:20
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19238/src Modified Files: player.cpp player.h resources.cpp Log Message: Separated body parts! Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.151 retrieving revision 1.152 diff -u -d -r1.151 -r1.152 --- player.cpp 13 Aug 2004 22:22:47 -0000 1.151 +++ player.cpp 17 Aug 2004 21:54:21 -0000 1.152 @@ -51,14 +51,12 @@ Sprite* smalltux_gameover; Sprite* smalltux_star; -Sprite* largetux_star; - -Sprite* small_tux; -Sprite* big_tux; -Sprite* ice_tux; -Sprite* fire_tux; +Sprite* bigtux_star; -Sprite* tux_arm; +TuxBodyParts* small_tux; +TuxBodyParts* big_tux; +TuxBodyParts* fire_tux; +TuxBodyParts* ice_tux; PlayerKeymap keymap; @@ -84,6 +82,25 @@ pplayer_input->activate = UP; } +void +TuxBodyParts::set_action(std::string action) +{ +head->set_action(action); +body->set_action(action); +arms->set_action(action); +feet->set_action(action); +} + +void +TuxBodyParts::draw(DrawingContext& context, const Vector& pos, int layer, + Uint32 drawing_effect) +{ +head->draw(context, pos, layer, drawing_effect); +body->draw(context, pos, layer, drawing_effect); +arms->draw(context, pos, layer, drawing_effect); +feet->draw(context, pos, layer, drawing_effect); +} + Player::Player() { init(); @@ -687,16 +704,16 @@ void Player::draw(DrawingContext& context) { - Sprite* sprite; + TuxBodyParts* tux_body; if (size == SMALL) - sprite = small_tux; + tux_body = small_tux; else if (got_power == FIRE_POWER) - sprite = fire_tux; + tux_body = fire_tux; else if (got_power == ICE_POWER) - sprite = ice_tux; + tux_body = ice_tux; else - sprite = big_tux; + tux_body = big_tux; int layer = LAYER_OBJECTS - 1; Vector pos = Vector(base.x, base.y); @@ -735,64 +752,65 @@ else if (duck && size != SMALL) { if (dir == RIGHT) - sprite->set_action("duck-right"); + tux_body->set_action("duck-right"); else - sprite->set_action("duck-left"); + tux_body->set_action("duck-left"); } + else if (skidding_timer.started()) { if (dir == RIGHT) - sprite->set_action("skid-right"); + tux_body->set_action("skid-right"); else - sprite->set_action("skid-left"); + tux_body->set_action("skid-left"); } else if (kick_timer.started()) { if (dir == RIGHT) - sprite->set_action("kick-right"); + tux_body->set_action("kick-right"); else - sprite->set_action("kick-left"); + tux_body->set_action("kick-left"); } else if (physic.get_velocity_y() != 0) { if (dir == RIGHT) - sprite->set_action("jump-right"); + tux_body->set_action("jump-right"); else - sprite->set_action("jump-left"); + tux_body->set_action("jump-left"); } else { if (fabsf(physic.get_velocity_x()) < 1.0f) // standing { if (dir == RIGHT) - sprite->set_action("stand-right"); + tux_body->set_action("stand-right"); else - sprite->set_action("stand-left"); + tux_body->set_action("stand-left"); } else // moving { if (dir == RIGHT) - sprite->set_action("walk-right"); + tux_body->set_action("walk-right"); else - sprite->set_action("walk-left"); + tux_body->set_action("walk-left"); } } } } - if(dying != DYING_SQUISHED && !growing_timer.check()) - sprite->draw(context, pos, layer); - - // Draw arm overlay graphics when Tux is holding something - if ((holding_something && physic.get_velocity_y() == 0) || shooting_timer.check() && !duck) - { + // Tux is holding something + if ((holding_something && physic.get_velocity_y() == 0) || + shooting_timer.check() && !duck) + { if (dir == RIGHT) - tux_arm->set_action("grab-right"); + tux_body->arms->set_action("grab-right"); else - tux_arm->set_action("grab-left"); - tux_arm->draw(context, pos, LAYER_OBJECTS + 1); - } - + tux_body->arms->set_action("grab-left"); + } + + if(dying != DYING_SQUISHED && !growing_timer.check()) + tux_body->draw(context, pos, layer); + // Draw blinking star overlay if (invincible_timer.started() && (invincible_timer.get_left() > TUX_INVINCIBLE_TIME_WARNING || global_frame_counter % 3)) @@ -800,7 +818,7 @@ if (size == SMALL || duck) smalltux_star->draw(context, pos, LAYER_OBJECTS + 2); else - largetux_star->draw(context, pos, LAYER_OBJECTS + 2); + bigtux_star->draw(context, pos, LAYER_OBJECTS + 2); } if (debug_mode) Index: player.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.h,v retrieving revision 1.80 retrieving revision 1.81 diff -u -d -r1.80 -r1.81 --- player.h 12 Aug 2004 22:05:24 -0000 1.80 +++ player.h 17 Aug 2004 21:54:22 -0000 1.81 @@ -96,37 +96,33 @@ extern Sprite* smalltux_gameover; extern Sprite* smalltux_star; -extern Sprite* largetux_star; +extern Sprite* bigtux_star; #define GROWING_TIME 1000 #define GROWING_FRAMES 7 extern Surface* growingtux_left[GROWING_FRAMES]; extern Surface* growingtux_right[GROWING_FRAMES]; -/*struct PlayerSprite +class TuxBodyParts { - Sprite* stand_left; - Sprite* stand_right; - Sprite* walk_right; - Sprite* walk_left; - Sprite* jump_right; - Sprite* jump_left; - Sprite* kick_left; - Sprite* kick_right; - Sprite* skid_right; - Sprite* skid_left; - Sprite* grab_left; - Sprite* grab_right; - Sprite* duck_right; - Sprite* duck_left; -};*/ +public: + TuxBodyParts() { }; + ~TuxBodyParts() { }; -extern Sprite* small_tux; -extern Sprite* big_tux; -extern Sprite* fire_tux; -extern Sprite* ice_tux; + void set_action(std::string action); + void draw(DrawingContext& context, const Vector& pos, int layer, + Uint32 drawing_effect = NONE_EFFECT); -extern Sprite* tux_arm; + Sprite* head; + Sprite* body; + Sprite* arms; + Sprite* feet; +}; + +extern TuxBodyParts* small_tux; +extern TuxBodyParts* big_tux; +extern TuxBodyParts* fire_tux; +extern TuxBodyParts* ice_tux; class Player : public MovingObject { Index: resources.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/resources.cpp,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- resources.cpp 13 Aug 2004 14:02:20 -0000 1.49 +++ resources.cpp 17 Aug 2004 21:54:22 -0000 1.50 @@ -114,11 +114,11 @@ int i; - sprite_manager = new SpriteManager(datadir + "/supertux.strf"); + sprite_manager = new SpriteManager(datadir + "/images/supertux.strf"); /* Tuxes: */ smalltux_star = sprite_manager->load("smalltux-star"); - largetux_star = sprite_manager->load("bigtux-star"); + bigtux_star = sprite_manager->load("bigtux-star"); smalltux_gameover = sprite_manager->load("smalltux-gameover"); char img_name[1024]; @@ -131,12 +131,29 @@ growingtux_right[i] = new Surface(img_name, true); } - small_tux = sprite_manager->load("small-tux"); - big_tux = sprite_manager->load("big-tux"); - ice_tux = sprite_manager->load("ice-tux"); - fire_tux = sprite_manager->load("fire-tux"); + small_tux = new TuxBodyParts(); + small_tux->head = sprite_manager->load("big-tux-head"); + small_tux->body = sprite_manager->load("big-tux-body"); + small_tux->arms = sprite_manager->load("big-tux-arms"); + small_tux->feet = sprite_manager->load("big-tux-feet"); - tux_arm = sprite_manager->load("tux-arm"); + big_tux = new TuxBodyParts(); + big_tux->head = sprite_manager->load("big-tux-head"); + big_tux->body = sprite_manager->load("big-tux-body"); + big_tux->arms = sprite_manager->load("big-tux-arms"); + big_tux->feet = sprite_manager->load("big-tux-feet"); + + fire_tux = new TuxBodyParts(); + fire_tux->head = sprite_manager->load("big-fire-tux-head"); + fire_tux->body = sprite_manager->load("big-tux-body"); + fire_tux->arms = sprite_manager->load("big-tux-arms"); + fire_tux->feet = sprite_manager->load("big-tux-feet"); + + ice_tux = new TuxBodyParts(); + ice_tux->head = sprite_manager->load("big-tux-head"); + ice_tux->body = sprite_manager->load("big-tux-body"); + ice_tux->arms = sprite_manager->load("big-tux-arms"); + ice_tux->feet = sprite_manager->load("big-tux-feet"); /* Water: */ img_water = new Surface(datadir + "/images/shared/water.png", false); @@ -288,6 +305,11 @@ delete tux_life; + delete small_tux; + delete big_tux; + delete fire_tux; + delete ice_tux; + for (int i = 0; i < GROWING_FRAMES; i++) { delete growingtux_left[i]; |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:05:16
|
Update of /cvsroot/super-tux/supertux/lib/special In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19121/lib/special Modified Files: sprite_manager.cpp Log Message: Changed output message. Index: sprite_manager.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/special/sprite_manager.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- sprite_manager.cpp 22 Jul 2004 19:07:50 -0000 1.3 +++ sprite_manager.cpp 17 Aug 2004 21:53:20 -0000 1.4 @@ -88,15 +88,12 @@ SpriteManager::load(const std::string& name) { Sprites::iterator i = sprites.find(name); - if (i != sprites.end()) - { - return i->second; - } - else + if (i == sprites.end()) { - std::cout << "SpriteManager: Sprite '" << name << "' not found" << std::endl; + std::cerr << "Warning: Sprite '" << name << "' not found" << std::endl; return 0; } + return i->second; } /* EOF */ |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:05:08
|
Update of /cvsroot/super-tux/supertux/data/images/shared/bigtux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31978/data/images/shared/bigtux Added Files: extra-star-0.png extra-star-1.png extra-star-2.png head-idle-blink-left-0.png head-idle-blink-left-1.png head-idle-blink-right-0.png head-idle-blink-right-1.png Removed Files: head-idle-blink-stand-left-0.png head-idle-blink-stand-left-1.png head-idle-blink-stand-right-0.png head-idle-blink-stand-right-1.png Log Message: Renaming images. --- NEW FILE: head-idle-blink-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-idle-blink-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: extra-star-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: extra-star-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: extra-star-0.png --- (This appears to be a binary file; contents omitted.) --- head-idle-blink-stand-right-1.png DELETED --- --- NEW FILE: head-idle-blink-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-idle-blink-right-1.png --- (This appears to be a binary file; contents omitted.) --- head-idle-blink-stand-left-0.png DELETED --- --- head-idle-blink-stand-right-0.png DELETED --- --- head-idle-blink-stand-left-1.png DELETED --- |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:04:14
|
Update of /cvsroot/super-tux/supertux/data/images/shared/smalltux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31726/data/images/shared/smalltux Added Files: extra-star-0.png extra-star-1.png extra-star-2.png gameover-0.png gameover-1.png Log Message: Renaming images. --- NEW FILE: extra-star-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: extra-star-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: extra-star-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gameover-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gameover-1.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:03:04
|
Update of /cvsroot/super-tux/supertux/data/images/shared In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31551/data/images/shared Removed Files: bigtux-star-0.png bigtux-star-1.png bigtux-star-2.png smalltux-gameover-0.png smalltux-gameover-1.png smalltux-star-0.png smalltux-star-1.png smalltux-star-2.png Log Message: Renaming images. --- bigtux-star-2.png DELETED --- --- smalltux-gameover-0.png DELETED --- --- smalltux-gameover-1.png DELETED --- --- bigtux-star-0.png DELETED --- --- smalltux-star-2.png DELETED --- --- smalltux-star-0.png DELETED --- --- smalltux-star-1.png DELETED --- --- bigtux-star-1.png DELETED --- |
Update of /cvsroot/super-tux/supertux/data/images/shared/tux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18112/data/images/shared/tux Removed Files: largetux-arms-default-grab-left-0.png largetux-arms-default-grab-right-0.png largetux-arms-default-jump-left-0.png largetux-arms-default-jump-right-0.png largetux-arms-default-skid-left-0.png largetux-arms-default-skid-right-0.png largetux-arms-default-stand-left-0.png largetux-arms-default-stand-right-0.png largetux-arms-default-walk-left-0.png largetux-arms-default-walk-left-1.png largetux-arms-default-walk-left-2.png largetux-arms-default-walk-left-3.png largetux-arms-default-walk-left-4.png largetux-arms-default-walk-left-5.png largetux-arms-default-walk-right-0.png largetux-arms-default-walk-right-1.png largetux-arms-default-walk-right-2.png largetux-arms-default-walk-right-3.png largetux-arms-default-walk-right-4.png largetux-arms-default-walk-right-5.png largetux-body-default-skid-left-0.png largetux-body-default-skid-right-0.png largetux-body-default-stand-left-0.png largetux-body-default-stand-right-0.png largetux-extra-default-whitestars-left-0.png largetux-extra-default-whitestars-left-1.png largetux-extra-default-whitestars-left-2.png largetux-extra-default-whitestars-right-0.png largetux-extra-default-whitestars-right-1.png largetux-extra-default-whitestars-right-2.png largetux-feet-default-buttjump-left-0.png largetux-feet-default-buttjump-right-0.png largetux-feet-default-jump-left-0.png largetux-feet-default-jump-right-0.png largetux-feet-default-kick-left-0.png largetux-feet-default-kick-right-0.png largetux-feet-default-skid-left-0.png largetux-feet-default-skid-right-0.png largetux-feet-default-stand-left-0.png largetux-feet-default-stand-right-0.png largetux-feet-default-walk-left-0.png largetux-feet-default-walk-left-1.png largetux-feet-default-walk-left-2.png largetux-feet-default-walk-left-3.png largetux-feet-default-walk-left-4.png largetux-feet-default-walk-left-5.png largetux-feet-default-walk-right-0.png largetux-feet-default-walk-right-1.png largetux-feet-default-walk-right-2.png largetux-feet-default-walk-right-3.png largetux-feet-default-walk-right-4.png largetux-feet-default-walk-right-5.png largetux-head-angry-stand-left-0.png largetux-head-angry-stand-right-0.png largetux-head-blink-stand-left-0.png largetux-head-blink-stand-left-1.png largetux-head-blink-stand-right-0.png largetux-head-blink-stand-right-1.png largetux-head-cool-stand-left-0.png largetux-head-cool-stand-right-0.png largetux-head-default-skid-left-0.png largetux-head-default-skid-right-0.png largetux-head-default-stand-left-0.png largetux-head-default-stand-right-0.png largetux-head-firefighter-stand-left-0.png largetux-head-firefighter-stand-right-0.png Log Message: Renaming images. --- largetux-feet-default-walk-left-5.png DELETED --- --- largetux-extra-default-whitestars-right-2.png DELETED --- --- largetux-feet-default-walk-right-5.png DELETED --- --- largetux-head-blink-stand-left-0.png DELETED --- --- largetux-body-default-stand-left-0.png DELETED --- --- largetux-feet-default-walk-right-1.png DELETED --- --- largetux-body-default-skid-right-0.png DELETED --- --- largetux-body-default-skid-left-0.png DELETED --- --- largetux-arms-default-grab-left-0.png DELETED --- --- largetux-extra-default-whitestars-left-2.png DELETED --- --- largetux-arms-default-walk-right-0.png DELETED --- --- largetux-feet-default-stand-left-0.png DELETED --- --- largetux-arms-default-grab-right-0.png DELETED --- --- largetux-arms-default-walk-right-4.png DELETED --- --- largetux-arms-default-walk-left-4.png DELETED --- --- largetux-feet-default-walk-left-0.png DELETED --- --- largetux-arms-default-skid-left-0.png DELETED --- --- largetux-head-default-stand-left-0.png DELETED --- --- largetux-feet-default-skid-left-0.png DELETED --- --- largetux-extra-default-whitestars-right-0.png DELETED --- --- largetux-extra-default-whitestars-right-1.png DELETED --- --- largetux-head-blink-stand-left-1.png DELETED --- --- largetux-feet-default-walk-right-3.png DELETED --- --- largetux-feet-default-walk-right-0.png DELETED --- --- largetux-arms-default-stand-right-0.png DELETED --- --- largetux-feet-default-buttjump-right-0.png DELETED --- --- largetux-arms-default-skid-right-0.png DELETED --- --- largetux-arms-default-walk-right-1.png DELETED --- --- largetux-head-cool-stand-right-0.png DELETED --- --- largetux-arms-default-walk-right-3.png DELETED --- --- largetux-extra-default-whitestars-left-1.png DELETED --- --- largetux-arms-default-walk-left-3.png DELETED --- --- largetux-feet-default-jump-right-0.png DELETED --- --- largetux-head-default-skid-right-0.png DELETED --- --- largetux-feet-default-stand-right-0.png DELETED --- --- largetux-arms-default-walk-left-0.png DELETED --- --- largetux-arms-default-walk-left-2.png DELETED --- --- largetux-feet-default-walk-left-4.png DELETED --- --- largetux-feet-default-walk-right-4.png DELETED --- --- largetux-head-blink-stand-right-1.png DELETED --- --- largetux-feet-default-jump-left-0.png DELETED --- --- largetux-head-default-stand-right-0.png DELETED --- --- largetux-feet-default-buttjump-left-0.png DELETED --- --- largetux-arms-default-jump-left-0.png DELETED --- --- largetux-arms-default-walk-left-1.png DELETED --- --- largetux-head-angry-stand-right-0.png DELETED --- --- largetux-arms-default-walk-left-5.png DELETED --- --- largetux-feet-default-walk-right-2.png DELETED --- --- largetux-head-cool-stand-left-0.png DELETED --- --- largetux-head-blink-stand-right-0.png DELETED --- --- largetux-head-default-skid-left-0.png DELETED --- --- largetux-head-firefighter-stand-right-0.png DELETED --- --- largetux-feet-default-skid-right-0.png DELETED --- --- largetux-feet-default-walk-left-1.png DELETED --- --- largetux-feet-default-walk-left-2.png DELETED --- --- largetux-feet-default-walk-left-3.png DELETED --- --- largetux-head-firefighter-stand-left-0.png DELETED --- --- largetux-arms-default-walk-right-2.png DELETED --- --- largetux-extra-default-whitestars-left-0.png DELETED --- --- largetux-head-angry-stand-left-0.png DELETED --- --- largetux-arms-default-stand-left-0.png DELETED --- --- largetux-feet-default-kick-left-0.png DELETED --- --- largetux-body-default-stand-right-0.png DELETED --- --- largetux-arms-default-walk-right-5.png DELETED --- --- largetux-arms-default-jump-right-0.png DELETED --- --- largetux-feet-default-kick-right-0.png DELETED --- |
From: Ricardo C. <rm...@us...> - 2004-08-17 23:02:27
|
Update of /cvsroot/super-tux/supertux/lib/special In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31409/lib/special Modified Files: sprite.cpp sprite.h Log Message: Added next action to sprite. Index: sprite.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/special/sprite.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- sprite.cpp 16 Aug 2004 12:13:00 -0000 1.12 +++ sprite.cpp 17 Aug 2004 23:01:58 -0000 1.13 @@ -103,10 +103,12 @@ } void -Sprite::start_animation(int loops) +Sprite::start_animation(int loops, std::string next_act) { -animation_loops = loops; reset(); +animation_loops = loops; +if(!next_act.empty()) + next_action = next_act; } void @@ -115,6 +117,7 @@ frame = 0; last_tick = SDL_GetTicks(); animation_reversed = true; +next_action.clear(); } bool @@ -156,7 +159,14 @@ { // last case can happen when not used reverse_animation() frame = get_frames() - 1; if(animation_loops > 0) + { animation_loops--; + if(animation_loops == 0) + { + set_action(next_action); + start_animation(-1); + } + } if(fabsf(excedent) < get_frames()) frame += excedent; @@ -169,7 +179,14 @@ { frame = 0; if(animation_loops > 0) + { animation_loops--; + if(animation_loops == 0) + { + set_action(next_action); + start_animation(-1); + } + } if(excedent < get_frames()) frame += excedent; Index: sprite.h =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/special/sprite.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- sprite.h 14 Aug 2004 11:50:24 -0000 1.9 +++ sprite.h 17 Aug 2004 23:01:58 -0000 1.10 @@ -64,8 +64,9 @@ /* Start an animation -1 - for infinite 0 - stopped - 1,2,3 - one, two, three times... */ - void start_animation(int loops); + 1,2,3 - one, two, three times... + If next_act specified, that action will be used when animation ends. */ + void start_animation(int loops, std::string next_act = ""); /** Check if animation is stopped or not */ bool check_animation(); /** Reverse the animation */ @@ -116,6 +117,7 @@ Actions actions; Action* action; + std::string next_action; }; } //namespace SuperTux |
From: Ricardo C. <rm...@us...> - 2004-08-17 22:05:18
|
Update of /cvsroot/super-tux/supertux/data/images/shared/bigtux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20326/data/images/shared/bigtux Added Files: head-idle-blink-stand-left-0.png head-idle-blink-stand-left-1.png head-idle-blink-stand-right-0.png head-idle-blink-stand-right-1.png Removed Files: head-blink-stand-left-0.png head-blink-stand-left-1.png head-blink-stand-right-0.png head-blink-stand-right-1.png Log Message: Renaming images. --- head-blink-stand-left-1.png DELETED --- --- head-blink-stand-left-0.png DELETED --- --- NEW FILE: head-idle-blink-stand-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-idle-blink-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- head-blink-stand-right-1.png DELETED --- --- head-blink-stand-right-0.png DELETED --- --- NEW FILE: head-idle-blink-stand-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-idle-blink-stand-left-0.png --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/super-tux/supertux/data/images/shared/bigtux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19875/data/images/shared/bigtux Added Files: arms-grab-left-0.png arms-grab-right-0.png arms-jump-left-0.png arms-jump-right-0.png arms-skid-left-0.png arms-skid-right-0.png arms-stand-left-0.png arms-stand-right-0.png arms-walk-left-0.png arms-walk-left-1.png arms-walk-left-2.png arms-walk-left-3.png arms-walk-left-4.png arms-walk-left-5.png arms-walk-right-0.png arms-walk-right-1.png arms-walk-right-2.png arms-walk-right-3.png arms-walk-right-4.png arms-walk-right-5.png body-skid-left-0.png body-skid-right-0.png body-stand-left-0.png body-stand-right-0.png feet-buttjump-left-0.png feet-buttjump-right-0.png feet-jump-left-0.png feet-jump-right-0.png feet-kick-left-0.png feet-kick-right-0.png feet-skid-left-0.png feet-skid-right-0.png feet-stand-left-0.png feet-stand-right-0.png feet-walk-left-0.png feet-walk-left-1.png feet-walk-left-2.png feet-walk-left-3.png feet-walk-left-4.png feet-walk-left-5.png feet-walk-right-0.png feet-walk-right-1.png feet-walk-right-2.png feet-walk-right-3.png feet-walk-right-4.png feet-walk-right-5.png head-angry-stand-left-0.png head-angry-stand-right-0.png head-blink-stand-left-0.png head-blink-stand-left-1.png head-blink-stand-right-0.png head-blink-stand-right-1.png head-cool-stand-left-0.png head-cool-stand-right-0.png head-fire-stand-left-0.png head-fire-stand-right-0.png head-skid-left-0.png head-skid-right-0.png head-stand-left-0.png head-stand-right-0.png Log Message: Renaming images. --- NEW FILE: feet-kick-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-cool-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-jump-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-skid-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-fire-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-cool-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-grab-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-grab-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-skid-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-left-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-jump-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-right-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-angry-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-fire-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-kick-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-skid-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-right-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-angry-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-skid-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: body-skid-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-buttjump-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: body-skid-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-skid-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-blink-stand-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-blink-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-buttjump-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-left-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: body-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-blink-stand-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-skid-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: head-blink-stand-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-jump-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arms-walk-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-stand-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-jump-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: feet-walk-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: body-stand-left-0.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-08-17 22:01:47
|
Update of /cvsroot/super-tux/supertux/data/images/shared/bigtux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19514/data/images/shared/bigtux Log Message: Directory /cvsroot/super-tux/supertux/data/images/shared/bigtux added to the repository |
From: Ricardo C. <rm...@us...> - 2004-08-17 21:54:53
|
Update of /cvsroot/super-tux/supertux/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18712/data Modified Files: Makefile.am Log Message: Moved supertux.strf to inside images/. Index: Makefile.am =================================================================== RCS file: /cvsroot/super-tux/supertux/data/Makefile.am,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Makefile.am 2 Jun 2004 20:54:46 -0000 1.15 +++ Makefile.am 17 Aug 2004 21:50:58 -0000 1.16 @@ -5,10 +5,10 @@ desktop_DATA = supertux.desktop EXTRA_DIST = \ - supertux.strf \ intro.txt \ extro.txt \ CREDITS \ + images/supertux.strf \ $(wildcard sounds/*.wav) \ $(wildcard images/*.png) \ $(wildcard images/*.xpm) \ |
From: Marek M. <wa...@us...> - 2004-08-17 09:59:24
|
Update of /cvsroot/super-tux/supertux/data/levels/world1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16329/data/levels/world1 Modified Files: level24.stl Log Message: small fix in level24 Index: level24.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level24.stl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- level24.stl 16 Aug 2004 17:02:52 -0000 1.14 +++ level24.stl 17 Aug 2004 09:49:34 -0000 1.15 @@ -53,8 +53,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 59 60 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 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 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 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 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 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 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 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 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 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 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 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 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 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 76 76 76 76 76 76 76 76 76 76 76 51 52 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 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 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 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 76 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 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 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 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 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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,7 +75,7 @@ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 201 0 0 0 0 0 0 0 0 0 0 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 |
From: Marek M. <wa...@us...> - 2004-08-17 00:00:21
|
Update of /cvsroot/super-tux/supertux/data/levels/bonus1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32383/data/levels/bonus1 Added Files: torfi-level1.stl Log Message: ...and welcome back again! :) --- NEW FILE: torfi-level1.stl --- ;SuperTux-Level (supertux-level (version 1) (name "A good start") (author "Torfi") (music "Mortimers_chipdisko.mod") (background "arctis2.jpg") (particle_system "") (bkgd_speed 50) (bkgd_red_top 0) (bkgd_green_top 0) (bkgd_blue_top 0) (bkgd_red_bottom 255) (bkgd_green_bottom 255) (bkgd_blue_bottom 255) (time 300) (width 200) (back_scrolling #f) (hor_autoscroll_speed 0.0) (gravity 10.0) (background-tm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 130 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 126 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 107 108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 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 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 24 0 0 0 109 110 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) (interactive-tm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 14 14 14 14 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 0 0 0 0 0 0 0 0 7 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 128 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 102 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 9 0 0 7 9 0 0 7 9 0 0 0 0 0 0 13 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 30 17 17 17 17 17 17 17 17 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 15 0 0 13 15 0 0 13 15 0 0 0 0 0 0 10 11 11 12 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 7 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 0 0 0 0 0 0 0 0 7 9 0 0 0 0 0 0 0 0 0 0 103 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 9 0 0 0 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 7 9 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 12 0 0 16 18 0 0 16 18 0 0 0 0 0 0 16 17 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 13 14 14 14 15 0 44 44 44 0 0 0 0 0 0 0 13 15 0 0 0 0 0 0 0 0 0 0 7 8 9 0 0 0 10 12 0 0 0 0 44 44 44 0 13 15 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 0 13 15 0 0 0 13 15 0 0 0 7 9 0 0 0 0 0 0 0 0 13 15 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 102 0 0 0 16 17 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 0 0 0 7 8 22 11 19 11 12 0 0 10 11 11 11 12 0 0 0 0 0 0 0 0 7 9 0 10 12 0 0 7 8 8 9 0 0 0 0 13 14 15 0 0 0 10 12 0 0 0 7 8 8 8 8 22 12 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 0 10 12 0 0 0 10 12 0 0 0 13 15 0 0 0 83 83 0 0 0 10 12 0 0 0 0 0 0 7 8 9 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 9 0 0 13 14 23 30 17 17 18 0 0 16 17 17 31 12 0 0 0 0 0 0 0 0 13 15 0 10 12 0 0 13 14 14 15 0 0 0 0 10 11 12 0 0 0 10 12 0 0 0 13 14 14 14 14 23 12 0 0 0 0 0 0 0 0 7 8 8 8 8 9 0 0 0 0 0 0 0 0 7 8 8 8 22 12 0 0 0 16 18 0 0 0 10 12 0 0 0 0 0 0 0 0 16 18 0 0 0 0 0 0 13 14 15 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 13 14 14 15 0 0 10 11 11 12 0 0 0 0 0 0 44 0 10 12 0 0 0 0 0 7 9 0 10 21 8 22 12 0 0 10 11 11 12 0 0 0 0 10 11 12 0 0 0 10 12 0 0 0 16 17 17 17 17 17 18 0 0 0 0 0 0 0 0 13 14 14 14 14 15 0 0 0 0 0 0 0 0 13 14 14 14 23 12 0 0 0 0 0 0 0 0 16 18 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 22 11 12 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 44 0 44 0 44 0 0 0 0 7 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 0 0 0 0 16 17 17 18 0 0 0 7 9 0 44 0 10 12 0 0 0 0 0 13 15 0 10 20 14 23 12 0 0 10 11 11 12 0 0 7 8 22 11 12 0 0 0 10 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 22 11 11 11 11 12 0 0 83 83 83 83 0 0 10 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 7 9 0 0 0 0 0 0 0 0 13 14 14 23 11 12 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 113 8 8 8 8 8 8 9 0 0 0 0 0 0 13 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 44 0 0 0 0 0 0 0 0 0 0 13 15 0 44 0 16 18 0 0 0 0 0 10 21 0 22 11 11 11 12 0 0 0 0 0 0 0 0 13 14 11 11 12 0 0 0 10 12 0 0 0 7 9 0 0 0 0 0 0 0 0 0 0 0 13 14 23 11 11 11 11 12 0 0 0 0 0 0 0 0 10 11 11 11 11 12 0 0 0 7 9 0 0 0 0 0 0 0 0 13 15 0 0 0 7 9 0 0 0 10 11 11 11 11 12 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 20 14 14 14 14 14 14 113 8 8 8 8 8 8 22 11 12 0 0 0 0 0 0 0 0 0 0 7 8 8 9 0 0 10 11 11 21 8 8 8 8 8 8 8 8 8 22 21 8 8 8 8 8 8 8 9 0 0 10 20 0 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 0 0 0 13 15 0 0 0 0 0 0 0 0 0 7 8 22 11 11 11 11 11 11 12 0 0 0 0 0 0 0 0 10 11 11 11 11 12 0 0 0 13 15 0 0 7 8 9 0 0 7 22 12 0 0 0 13 15 0 0 0 0 0 0 11 11 12 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 132 0 0 0 0 0 10 11 11 11 21 8 8 8 8 8 8 8 8 8 8 8 8 8 8 22 11 11 11 11 11 11 11 11 11 20 14 14 14 14 14 14 23 11 12 0 0 0 0 0 0 0 0 0 0 13 14 14 15 0 0 10 11 11 20 14 14 14 14 14 14 14 14 14 23 20 14 14 14 14 14 14 14 15 0 0 10 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 18 0 0 0 10 12 0 0 0 0 0 0 0 0 0 13 14 23 11 11 11 11 11 11 21 8 8 8 8 8 8 8 8 22 11 11 11 11 21 8 8 8 22 12 0 0 13 14 15 0 0 13 23 21 8 8 8 22 21 8 8 8 0 44 44 11 11 12 0 0 7 133 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 132 132 8 8 9 0 0 10 11 11 11 20 14 14 14 14 14 14 14 14 14 14 14 14 14 14 23 11 11 11 11 115 116 11 11 11 11 11 11 11 11 11 11 11 11 21 8 8 8 8 8 8 8 8 8 8 22 11 19 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 21 8 8 22 11 0 0 0 44 0 0 0 0 0 44 44 0 0 0 0 44 44 44 0 8 8 8 8 8 8 8 8 22 21 8 8 8 8 8 8 8 8 8 22 11 11 11 11 11 11 11 11 20 14 14 14 14 14 14 14 14 23 11 11 11 11 20 14 14 14 23 12 0 0 10 11 12 0 0 10 11 20 14 14 14 23 20 14 14 14 23 11 11 11 11 12 0 0 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 117 118 11 11 11 11 11 11 11 11 11 11 11 11 20 14 14 14 14 14 14 14 14 14 14 23 11 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 20 14 14 23 11 11 11 20 14 23 12 0 0 10 11 11 12 0 0 10 11 11 11 20 14 14 14 14 14 14 14 14 23 20 14 14 14 14 14 14 14 14 14 23 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 19 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 ) (foreground-tm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 130 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 127 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 8 22 11 11 11 12 0 0 10 11 11 12 0 0 13 14 23 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 14 23 11 11 11 12 0 0 10 115 116 12 0 0 10 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 11 30 17 31 12 0 0 10 117 118 12 0 0 10 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 11 11 11 0 0 0 0 0 133 129 0 0 0 0 0 0 0 0 0 0 8 8 8 8 8 8 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 11 11 11 21 8 22 12 0 0 10 11 11 12 0 0 10 11 11 11 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 11 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 11 20 14 23 0 0 0 10 11 11 12 0 0 10 11 11 11 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 ) (objects (snowball (x 447) (y 351) (stay-on-platform #t)) (flyingsnowball (x 1358) (y 278) (stay-on-platform #f)) (flyingsnowball (x 1458) (y 309) (stay-on-platform #f)) (jumpy (x 4719) (y 70) (stay-on-platform #f)) (jumpy (x 2189) (y 230) (stay-on-platform #t)) (snowball (x 1188) (y 249) (stay-on-platform #t)) (snowball (x 4353) (y 340) (stay-on-platform #f)) (snowball (x 4210) (y 340) (stay-on-platform #f)) (snowball (x 4640) (y 341) (stay-on-platform #f)) (snowball (x 5119) (y 343) (stay-on-platform #f)) (jumpy (x 8597) (y 192) (stay-on-platform #f)) (mriceblock (x 913) (y 275) (stay-on-platform #t)) (jumpy (x 2672) (y 135) (stay-on-platform #f)) (flyingsnowball (x 3265) (y 225) (stay-on-platform #f)) (spiky (x 5484) (y 155) (stay-on-platform #t)) (snowball (x 2955) (y 150) (stay-on-platform #t)) (snowball (x 511) (y 349) (stay-on-platform #t)) (snowball (x 384) (y 348) (stay-on-platform #t)) (snowball (x 3690) (y 374) (stay-on-platform #f)) (snowball (x 3752) (y 372) (stay-on-platform #f)) (snowball (x 1825) (y 182) (stay-on-platform #t)) (mriceblock (x 4866) (y 309) (stay-on-platform #t)) (snowball (x 3170) (y 118) (stay-on-platform #t)) (jumpy (x 5039) (y 110) (stay-on-platform #f)) (flyingsnowball (x 3730) (y 145) (stay-on-platform #f)) (spiky (x 3598) (y 158) (stay-on-platform #t)) ) ) |
From: Marek M. <wa...@us...> - 2004-08-16 23:58:30
|
Update of /cvsroot/super-tux/supertux/data/levels/bonus1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32185/data/levels/bonus1 Removed Files: torfi-level1.stl Log Message: something went wrong when updating one level file, so good-bye, torfi-level1... --- torfi-level1.stl DELETED --- |
From: Marek M. <wa...@us...> - 2004-08-16 17:09:38
|
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18951/data/images/tilesets Removed Files: waterfall0-0-0.png waterfall0-1-0.png waterfall0-2-0.png waterfall1-0-0.png waterfall1-5-0.png Log Message: removed old unused waterfall tiles --- waterfall0-0-0.png DELETED --- --- waterfall1-0-0.png DELETED --- --- waterfall1-5-0.png DELETED --- --- waterfall0-2-0.png DELETED --- --- waterfall0-1-0.png DELETED --- |
From: Ryan F. <sik...@us...> - 2004-08-16 17:08:19
|
Update of /cvsroot/super-tux/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18563 Modified Files: loginfo Log Message: - set Reply-To header to super-tux-devel for super-tux-commit emails Index: loginfo =================================================================== RCS file: /cvsroot/super-tux/CVSROOT/loginfo,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- loginfo 23 Mar 2004 16:58:52 -0000 1.4 +++ loginfo 16 Aug 2004 17:08:09 -0000 1.5 @@ -24,4 +24,4 @@ #DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog # or #DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog -DEFAULT /cvsroot/sitedocs/CVSROOT/cvstools/syncmail -u %{sVv} sup...@li... +DEFAULT /cvsroot/sitedocs/CVSROOT/cvstools/syncmail -u -R sup...@li... %{sVv} sup...@li... |
From: Marek M. <wa...@us...> - 2004-08-16 17:03:28
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16703 Modified Files: libtool Log Message: added new waterfall and transparent water tiles by unDEFER, used it in levels 5,24,25 Index: libtool =================================================================== RCS file: /cvsroot/super-tux/supertux/libtool,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- libtool 31 Jul 2004 22:20:42 -0000 1.2 +++ libtool 16 Aug 2004 17:02:49 -0000 1.3 @@ -1,7 +1,7 @@ #! /bin/sh # libtoolT - Provide generalized library-building support services. -# Generated automatically by (GNU supertux 0.1.1) +# Generated automatically by (GNU supertux 0.2-cvs) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 |