super-tux-commit Mailing List for Super Tux (Page 26)
Brought to you by:
wkendrick
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(94) |
Apr
(500) |
May
(531) |
Jun
(196) |
Jul
(224) |
Aug
(193) |
Sep
(117) |
Oct
(115) |
Nov
(319) |
Dec
(97) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(19) |
Feb
|
Mar
(105) |
Apr
(41) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2007 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
|
Sep
(7) |
Oct
(12) |
Nov
(26) |
Dec
(39) |
2009 |
Jan
(6) |
Feb
(15) |
Mar
(10) |
Apr
(25) |
May
(29) |
Jun
(21) |
Jul
(26) |
Aug
(8) |
Sep
(3) |
Oct
|
Nov
|
Dec
(10) |
2010 |
Jan
(5) |
Feb
(5) |
Mar
(2) |
Apr
|
May
(5) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
From: Ryan F. <sik...@us...> - 2004-10-26 21:00:40
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31729 Modified Files: level.cpp level.h leveleditor.cpp sector.cpp sector.h tilemap.cpp Log Message: level editor patch from Richard Index: sector.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/sector.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- sector.h 21 Oct 2004 18:03:22 -0000 1.17 +++ sector.h 26 Oct 2004 20:59:47 -0000 1.18 @@ -70,6 +70,8 @@ Sector(); ~Sector(); + /// create new sector + static Sector *create(const std::string& name, size_t width, size_t height); /// read sector from lisp file void parse(LispReader& reader); void parse_old_format(LispReader& reader); Index: sector.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/sector.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- sector.cpp 21 Oct 2004 18:03:22 -0000 1.33 +++ sector.cpp 26 Oct 2004 20:59:47 -0000 1.34 @@ -68,6 +68,23 @@ _current = 0; } +Sector *Sector::create(const std::string& name, size_t width, size_t height) +{ + Sector *sector = new Sector; + sector->name = name; + TileMap *background = new TileMap(LAYER_BACKGROUNDTILES, false, width, height); + TileMap *interactive = new TileMap(LAYER_TILES, true, width, height); + TileMap *foreground = new TileMap(LAYER_FOREGROUNDTILES, false, width, height); + sector->add_object(background); + sector->add_object(interactive); + sector->add_object(foreground); + sector->solids = interactive; + sector->camera = new Camera(sector); + sector->add_object(sector->camera); + sector->update_game_objects(); + return sector; +} + void Sector::parse(LispReader& lispreader) { Index: level.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level.h,v retrieving revision 1.65 retrieving revision 1.66 diff -u -d -r1.65 -r1.66 --- level.h 24 Sep 2004 21:19:25 -0000 1.65 +++ level.h 26 Oct 2004 20:59:45 -0000 1.66 @@ -47,6 +47,7 @@ void load(const std::string& filename); void save(const std::string& filename); + static void create(const std::string& filename); const std::string& get_name() const { return name; } Index: level.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level.cpp,v retrieving revision 1.105 retrieving revision 1.106 diff -u -d -r1.105 -r1.106 --- level.cpp 25 Oct 2004 03:32:50 -0000 1.105 +++ level.cpp 26 Oct 2004 20:59:42 -0000 1.106 @@ -50,6 +50,16 @@ } void +Level::create(const std::string& filename) +{ + Level level; + const size_t width = 25; + const size_t height = 19; + level.add_sector(Sector::create("main", width, height)); + level.save(filename); +} + +void Level::load(const std::string& filename) { std::string filepath; Index: leveleditor.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/leveleditor.cpp,v retrieving revision 1.164 retrieving revision 1.165 diff -u -d -r1.164 -r1.165 --- leveleditor.cpp 25 Oct 2004 18:46:13 -0000 1.164 +++ leveleditor.cpp 26 Oct 2004 20:59:45 -0000 1.165 @@ -276,16 +276,21 @@ if(create_subset_menu->check() == MN_ID_CREATE_SUBSET) { // applying settings: - LevelSubset::create(create_subset_menu->get_item_by_id(MN_ID_FILENAME_SUBSET).input); + std::string subset_name = create_subset_menu->get_item_by_id(MN_ID_FILENAME_SUBSET).input; + LevelSubset::create(subset_name); delete level_subset; level_subset = new LevelSubset(); level_subset->load(create_subset_menu->get_item_by_id(MN_ID_FILENAME_SUBSET).input); - level_subset->title = create_subset_menu->item[MN_ID_TITLE_SUBSET].input; - level_subset->description = create_subset_menu->item[MN_ID_DESCRIPTION_SUBSET].input; - - load_level(1); + level_subset->title = create_subset_menu->get_item_by_id(MN_ID_TITLE_SUBSET).input; + level_subset->description = create_subset_menu->get_item_by_id(MN_ID_DESCRIPTION_SUBSET).input; + //FIXME: generate better level filenames + level_subset->add_level(subset_name+'/'+"new_level.stl"); + Level::create(level_subset->get_level_filename(0)); + level_subset->save(); + + load_level(0); create_subset_menu->get_item_by_id(MN_ID_FILENAME_SUBSET).change_input(""); create_subset_menu->get_item_by_id(MN_ID_TITLE_SUBSET).change_input(""); @@ -353,23 +358,23 @@ Menu::set_current(settings_menu); break; case BT_NEXT_LEVEL: - if(level_nb+1 < level_subset->get_num_levels()) + if(level_nb + 1 < level_subset->get_num_levels()) load_level(level_nb + 1); else { char str[1024]; - sprintf(str,_("Level %d doesn't exist. Create it?"), level_nb + 1); + sprintf(str,_("Level %d doesn't exist. Create it?"), level_nb + 2); if(confirm_dialog(NULL, str)) { - Level new_lev; level_subset->add_level("new_level.stl"); - new_lev.save(level_subset->get_level_filename(level_nb + 1)); - load_level(level_nb); + Level::create(level_subset->get_level_filename(level_nb + 1)); + level_subset->save(); + load_level(level_nb + 1); } } break; case BT_PREVIOUS_LEVEL: - if(level_nb-1 > 0) + if(level_nb - 1 >= 0) load_level(level_nb - 1); break; case BT_NEXT_SECTOR: @@ -712,7 +717,7 @@ delete level_subset; level_subset = new LevelSubset(); level_subset->load(filename.c_str()); -load_level(1); +load_level(0); } void LevelEditor::load_level(std::string filename) @@ -768,15 +773,12 @@ void LevelEditor::load_sector(Sector* sector_) { -if(sector == NULL) +if(sector_ == NULL) { - if(confirm_dialog(NULL, _("No more sectors exist. Create another?"))) - { - Sector* nsector = new Sector(); - level->add_sector(nsector); - sector = nsector; - } - return; + if(!confirm_dialog(NULL, _("No more sectors exist. Create another?"))) + return; + sector_ = Sector::create("new_sector",25,19); + level->add_sector(sector_); } sector = sector_; @@ -850,8 +852,8 @@ void LevelEditor::change(int x, int y, int newtile, int layer) { // find the tilemap of the current layer, and then change the tile -if(x < 0 || (unsigned int)x > sector->solids->get_width()*32 || - y < 0 || (unsigned int)y > sector->solids->get_height()*32) +if(x < 0 || (unsigned int)x >= sector->solids->get_width()*32 || + y < 0 || (unsigned int)y >= sector->solids->get_height()*32) return; level_changed = true; @@ -923,8 +925,8 @@ char str[1024]; char *text1[] = { - _("This is the built-in level editor. It's aim is to be intuitive\n" - "and simple to use, so it should be pretty straight forward.\n" + _("This is the built-in level editor. Its aim is to be intuitive\n" + "and simple to use, so it should be pretty straightforward.\n" "\n" "To open a level, first you'll have to select a level subset from\n" "the menu (or create your own).\n" @@ -933,24 +935,24 @@ "\n" "To access the menu from the level editor, just press Esc.\n" "\n" - "You are currently looking to the level, to scroll it, just\n" + "You are currently looking at the level. To scroll it, just\n" "press the right mouse button and drag the mouse. It will move like\n" "a strategy game.\n" "You can also use the arrow keys and Page Up/Down.\n" "\n" - "'+' and '-' keys can be used to zoom in/out the level.\n" + "'+' and '-' keys can be used to zoom the level in/out.\n" "\n" - "You probably already noticed those floating group of buttons.\n" + "You probably already noticed those floating groups of buttons.\n" "Each one serves a different purpose. To select a certain button\n" "just press the Left mouse button on it. A few buttons have key\n" - "shortcuts, you can know it by pressing the Right mouse button on\n" - "it. That will also show what that button does.\n" - "Group of buttons can also be move around by just dragging them,\n" + "shortcuts. You can find them by pressing the Right mouse button on\n" + "a button. That will also show what that button does.\n" + "Groups of buttons can also be moved around by just dragging them,\n" "while pressing the Left mouse button.\n" "\n" - "Let's learn a bit of what each group of buttons do, shall we?\n" + "Let's learn a bit of what each group of buttons does, shall we?\n" "\n" - "To starting putting tiles and objects around use the bigger gropup\n" + "To starting putting tiles and objects around use the bigger group\n" "of buttons. Each button is a different tile. To put it on the level,\n" "just press it and then left click in the level.\n" "You can also copy tiles from the level by using the middle mouse button.\n" @@ -960,15 +962,15 @@ char *text2[] = { _("The Foreground/Interactive/Background buttons may be used to\n" - "see and edit the respective layer. Level's have three tiles layers:\n" - "Foreground - tiles are drawn in top of everything and have no contact\n" + "see and edit the respective layer. Levels have three tiles layers:\n" + "Foreground - tiles are drawn on top of everything and have no contact\n" "with the player.\n" "Interactive - these are the tiles that have contact with the player.\n" - "Background - tiles are drawn in bottom of everything and have no contact\n" + "Background - tiles are drawn underneath everything and have no contact\n" "with the player.\n" "The unselected layers will be drawn semi-transparently.\n" "\n" - "At last, but not least, the group of buttons that's left serves\n" + "Last, but not least, the group of buttons that's left serves\n" "to do related actions with the level.\n" "From left to right:\n" "Mini arrows - can be used to choose other sectors.\n" @@ -976,7 +978,7 @@ "Big arrows - choose other level in the same level subset.\n" "Diskette - save the level\n" "Tux - test the level\n" - "Tools - set a few settings for the level, incluiding resizing it.\n" + "Tools - set a few settings for the level, including resizing it.\n" "\n" "We have reached the end of this Howto.\n" "\n" @@ -985,8 +987,8 @@ "Enjoy,\n" " SuperTux development team\n" "\n" - "ps: If you are looking for something more powerfull, you can give it a\n" - "try to FlexLay. FlexLay is a level editor that supports several games,\n" + "PS: If you are looking for something more powerful, you might like to\n" + "try FlexLay. FlexLay is a level editor that supports several games,\n" "including SuperTux. It is an independent project.\n" "Webpage: http://pingus.seul.org/~grumbel/flexlay/") }; Index: tilemap.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/tilemap.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- tilemap.cpp 7 Oct 2004 17:10:28 -0000 1.19 +++ tilemap.cpp 26 Oct 2004 20:59:47 -0000 1.20 @@ -84,8 +84,11 @@ } TileMap::TileMap(int layer_, bool solid_, size_t width_, size_t height_) - : solid(solid_), speed(1), width(width_), height(height_), layer(layer_), vertical_flip(false) + : solid(solid_), speed(1), width(0), height(0), layer(layer_), vertical_flip(false) { + tilemanager = TileManager::instance(); + + resize(width_, height_); } TileMap::~TileMap() |
From: Ryan F. <sik...@us...> - 2004-10-26 05:44:46
|
Update of /cvsroot/super-tux/htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10959 Modified Files: news.xml download.xml Log Message: - mandrake rpm, os x binary, beos package Index: news.xml =================================================================== RCS file: /cvsroot/super-tux/htdocs/news.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- news.xml 26 Aug 2004 18:59:11 -0000 1.11 +++ news.xml 26 Oct 2004 05:44:31 -0000 1.12 @@ -2,6 +2,10 @@ <page title="SuperTux"> <section title="News"> <news> + <item date="25. October 2004"> + Better late than never. We now have a Mandrake RPM, Mac OS X binary and + a BeOS package in our <a href="download.html">download section</a>. + </item> <item date="26. August 2004"> A SuperTux 0.1.2 RPM for RedHat, Fedora and ASP Linux is now available, as well as a Windows binary. You can get them from the Index: download.xml =================================================================== RCS file: /cvsroot/super-tux/htdocs/download.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- download.xml 26 Aug 2004 18:59:11 -0000 1.19 +++ download.xml 26 Oct 2004 05:44:31 -0000 1.20 @@ -5,9 +5,11 @@ <ul> <li>Source: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2.tar.bz2?download">supertux-0.1.2.tar.bz2</a></li> <li>ASP Linux/RedHat/Fedora RPM: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2-rh-fd-asp.i386.rpm?download">supertux-0.1.2.-rh-fd-asp.i386.rpm</a></li> + <li>BeOS: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2-beos.zip?download">supertux-0.1.2-beos.zip</a></li> <li>Fedora Core 2 RPM: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2-FC2.i386.rpm?download">supertux-0.1.2-FC2.i386.rpm</a></li> + <li>Mac OS X: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2-macosx.dmg?download">supertux-0.1.2-macosx.dmg</a></li> + <li>Mandrake RPM: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2-1mdk.i586.rpm?download">supertux-0.1.2-1mdk.i586.rpm</a></li> <li>Windows Binary: <a href="http://prdownloads.sourceforge.net/super-tux/supertux-0.1.2-setup.exe?download">supertux-0.1.2-setup.exe</a></li> - <li>More packages coming soon.</li> </ul> </subsection> <subsection title="SuperTux (Milestone1) 0.1.1 - May 11, 2004"> |
From: Ricardo C. <rm...@us...> - 2004-10-25 20:40:32
|
Update of /cvsroot/super-tux/supertux/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22429/data Modified Files: CREDITS Log Message: I had added Jonas, instead of Richard. Obvously, a mistake - Jonas had only asked for a request. =) Index: CREDITS =================================================================== RCS file: /cvsroot/super-tux/supertux/data/CREDITS,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- CREDITS 25 Oct 2004 18:33:13 -0000 1.27 +++ CREDITS 25 Oct 2004 20:40:23 -0000 1.28 @@ -32,7 +32,7 @@ Duong-Khang (neoneurone) NGUYEN - Jonas Koelker + Richard Smith -Graphics |
From: Ricardo C. <rm...@us...> - 2004-10-25 20:40:32
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22429 Modified Files: AUTHORS Log Message: I had added Jonas, instead of Richard. Obvously, a mistake - Jonas had only asked for a request. =) Index: AUTHORS =================================================================== RCS file: /cvsroot/super-tux/supertux/AUTHORS,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- AUTHORS 25 Oct 2004 18:33:14 -0000 1.7 +++ AUTHORS 25 Oct 2004 20:40:23 -0000 1.8 @@ -33,9 +33,6 @@ gr...@gm... http://pingus.seul.org/~grumbel/ - Duong-Khang NGUYEN - neo...@us... - Matthias Braun ma...@br... @@ -46,8 +43,11 @@ Code contributors ----------------- - Jonas Koelker - jon...@ya... + Duong-Khang NGUYEN + neo...@us... + + Richard Smith + sup...@me... Graphics -------- |
From: Benjamin P. J. <lit...@us...> - 2004-10-25 19:45:46
|
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10568/data/images/tilesets Modified Files: supertux.stgt Log Message: Added entries for some new tiles. Index: supertux.stgt =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/tilesets/supertux.stgt,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- supertux.stgt 23 Oct 2004 21:15:05 -0000 1.50 +++ supertux.stgt 25 Oct 2004 19:45:14 -0000 1.51 @@ -969,6 +969,28 @@ (tile (id 336) (images "tree_branch2.png")) + (tile (id 337) + (solid #t) + (images "rock_plate1.png")) + (tile (id 338) + (solid #t) + (images "rock_plate2.png")) + (tile (id 339) + (solid #t) + (images "rock_plate3.png")) + (tile (id 340) + (solid #t) + (images "rock_plate_cracked1.png")) + (tile (id 341) + (solid #t) + (images "rock_plate_cracked2.png")) + (tile (id 342) + (solid #t) + (images "rock_plate_cracked3.png")) + + (tile (id 360) + (images "mushrooms.png")) + ; Slopes |
From: Ryan F. <sik...@us...> - 2004-10-25 18:58:32
|
Update of /cvsroot/super-tux/supertux/data/levels/bonus1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1225/data/levels/bonus1 Modified Files: abednego-level4.stl Log Message: typo pointed out by Richard Smith Index: abednego-level4.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/abednego-level4.stl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- abednego-level4.stl 16 Aug 2004 23:52:17 -0000 1.2 +++ abednego-level4.stl 25 Oct 2004 18:58:23 -0000 1.3 @@ -7,7 +7,7 @@ (height 15) (start_pos_x 100) (start_pos_y 170) - (background "ocean.png") + (background "ocean.jpg") (music "Mortimers_chipdisko.mod") (bkgd_red_top 0) (bkgd_green_top 0) |
From: Benjamin P. J. <lit...@us...> - 2004-10-25 18:56:10
|
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv747/data/images/tilesets Added Files: mushrooms.png Log Message: Added a modified version of the mushrooms found in http://www.linuks.mine.nu/people/supertux/terramenu.gif. --- NEW FILE: mushrooms.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-10-25 18:46:21
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31019/src Modified Files: level_subset.cpp leveleditor.cpp Log Message: Bugfix: it was impossible to create a level subset in leveleditor cause Create button was always disabled. Bugfix: LevelSubset was saving subsets hide-from-contribs field wrongly, and couldn't load them. Index: level_subset.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level_subset.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- level_subset.cpp 25 Oct 2004 03:32:50 -0000 1.15 +++ level_subset.cpp 25 Oct 2004 18:46:13 -0000 1.16 @@ -150,7 +150,7 @@ fprintf(fi," (description \"%s\")\n", description.c_str()); /* Save the hide from Contrbis menu boolean: */ - fprintf(fi," (hide-from-contribs \"%s\")\n", hide_from_contribs ? "#t" : "#f"); + fprintf(fi," (hide-from-contribs %s)\n", hide_from_contribs ? "#t" : "#f"); fprintf( fi,")"); fclose(fi); Index: leveleditor.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/leveleditor.cpp,v retrieving revision 1.163 retrieving revision 1.164 diff -u -d -r1.163 -r1.164 --- leveleditor.cpp 25 Oct 2004 03:32:50 -0000 1.163 +++ leveleditor.cpp 25 Oct 2004 18:46:13 -0000 1.164 @@ -268,9 +268,13 @@ } else if(menu == create_subset_menu) { + // activate or deactivate Create button if any filename as been specified if(create_subset_menu->get_item_by_id(MN_ID_FILENAME_SUBSET).input[0] == '\0') create_subset_menu->get_item_by_id(MN_ID_CREATE_SUBSET).kind = MN_DEACTIVE; - else if(create_subset_menu->check() == MN_ID_CREATE_SUBSET) + else + create_subset_menu->get_item_by_id(MN_ID_CREATE_SUBSET).kind = MN_ACTION; + + if(create_subset_menu->check() == MN_ID_CREATE_SUBSET) { // applying settings: LevelSubset::create(create_subset_menu->get_item_by_id(MN_ID_FILENAME_SUBSET).input); |
From: Ricardo C. <rm...@us...> - 2004-10-25 18:33:30
|
Update of /cvsroot/super-tux/supertux/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27606/data Modified Files: CREDITS Log Message: Added Jonas Koelker to credits. Higher Ryan's entry. Index: CREDITS =================================================================== RCS file: /cvsroot/super-tux/supertux/data/CREDITS,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- CREDITS 10 Jul 2004 14:07:33 -0000 1.26 +++ CREDITS 25 Oct 2004 18:33:13 -0000 1.27 @@ -26,13 +26,14 @@ Matthias (MatzeB) Braun + Ryan (sik0fewl) Flegel -Contrib Programming - Ryan (sik0fewl) Flegel - Duong-Khang (neoneurone) NGUYEN + Jonas Koelker + -Graphics |
From: Benjamin P. J. <lit...@us...> - 2004-10-25 18:33:30
|
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27615/data/images/tilesets Added Files: rock_plate2.png rock_plate_cracked2.png rock_plate3.png rock_plate_cracked3.png rock_plate_cracked1.png rock_plate1.png Log Message: Added 2 versions of new 'rock plate' tiles. They should go well with the jungle tiles already provided... --- NEW FILE: rock_plate2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rock_plate3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rock_plate1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rock_plate_cracked2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rock_plate_cracked3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rock_plate_cracked1.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-10-25 18:33:30
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27606 Modified Files: AUTHORS Log Message: Added Jonas Koelker to credits. Higher Ryan's entry. Index: AUTHORS =================================================================== RCS file: /cvsroot/super-tux/supertux/AUTHORS,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- AUTHORS 10 May 2004 22:21:10 -0000 1.6 +++ AUTHORS 25 Oct 2004 18:33:14 -0000 1.7 @@ -4,7 +4,7 @@ http://super-tux.sf.net/ -Last update: April 26, 2004 +Last update: October 25, 2004 Project Leader -------------- @@ -39,13 +39,16 @@ Matthias Braun ma...@br... -Code contributors ------------------ - Ryan Flegel xxd...@ho... http://digitalhell.cjb.net/~ryan/ +Code contributors +----------------- + + Jonas Koelker + jon...@ya... + Graphics -------- |
From: Ricardo C. <rm...@us...> - 2004-10-25 10:49:17
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7254/src Modified Files: worldmap.cpp Log Message: Let navigate through the worldmap using Tux keys as well. Requested by Jonas Koelker <jon...@ya...>. Index: worldmap.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/worldmap.cpp,v retrieving revision 1.127 retrieving revision 1.128 diff -u -d -r1.127 -r1.128 --- worldmap.cpp 25 Oct 2004 03:32:50 -0000 1.127 +++ worldmap.cpp 25 Oct 2004 10:49:07 -0000 1.128 @@ -681,7 +681,8 @@ WorldMap::get_input() { enter_level = false; - + SDLKey key; + SDL_Event event; while (SDL_PollEvent(&event)) { @@ -698,32 +699,22 @@ break; case SDL_KEYDOWN: - switch(event.key.keysym.sym) - { - case SDLK_ESCAPE: - on_escape_press(); - break; - case SDLK_LCTRL: - case SDLK_RETURN: - enter_level = true; - break; - - case SDLK_LEFT: - tux->set_direction(D_WEST); - break; - case SDLK_RIGHT: - tux->set_direction(D_EAST); - break; - case SDLK_UP: - tux->set_direction(D_NORTH); - break; - case SDLK_DOWN: - tux->set_direction(D_SOUTH); - break; + key = event.key.keysym.sym; - default: - break; - } + if(key == SDLK_ESCAPE) + on_escape_press(); + else if(key == SDLK_RETURN || key == keymap.power) + enter_level = true; + else if(key == SDLK_LEFT || key == keymap.power) + tux->set_direction(D_WEST); + else if(key == SDLK_RIGHT || key == keymap.right) + tux->set_direction(D_EAST); + else if(key == SDLK_UP || key == keymap.up || + key == keymap.jump) + // there might be ppl that use jump as up key + tux->set_direction(D_NORTH); + else if(key == SDLK_DOWN || key == keymap.down) + tux->set_direction(D_SOUTH); break; case SDL_JOYHATMOTION: |
From: Ryan F. <sik...@us...> - 2004-10-25 03:33:01
|
Update of /cvsroot/super-tux/supertux/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20402/po Modified Files: LINGUAS de.po es.po fr.po nl.po nn.po pt.po supertux.pot Log Message: - committed patch from Richard Smith - fixed some warnings Index: es.po =================================================================== RCS file: /cvsroot/super-tux/supertux/po/es.po,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- es.po 12 Oct 2004 18:32:55 -0000 1.13 +++ es.po 25 Oct 2004 03:32:50 -0000 1.14 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: SuperTux-CVS\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: 2004-10-12 19:31+0200\n" "Last-Translator: Javier Beaumont <dem...@us...>\n" "Language-Team: Spanish Team <sup...@li...>\n" @@ -35,7 +35,6 @@ msgstr "PAUSA - Pulsa 'P' para continuar" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "Jugando: " @@ -92,7 +91,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "Volver" @@ -170,87 +169,87 @@ msgid "Eraser" msgstr "" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 #, fuzzy msgid "Save level" msgstr "Salvar el juego" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 #, fuzzy msgid "Setup level" msgstr "Configurar las teclas" -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "Editor de niveles" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -287,7 +286,7 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -321,12 +320,12 @@ "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 #, fuzzy msgid "- Level Editor's Help -" msgstr "Editor de niveles" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "" @@ -485,22 +484,21 @@ msgstr "Las mejores estadísticas del nivel" #: src/statistics.cpp:117 -#, fuzzy, c-format +#, fuzzy msgid "Max score:" msgstr "Máxima puntuación: %d" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "" #: src/statistics.cpp:139 -#, fuzzy, c-format +#, fuzzy msgid "Max fragging:" msgstr "Máxima matanza: %d" #: src/statistics.cpp:141 -#, fuzzy, c-format +#, fuzzy msgid "Min time needed:" msgstr "Mínimo tiempo necesario: %d" @@ -524,7 +522,7 @@ msgid "Min time needed: %d / %d" msgstr "Mínimo tiempo necesario: %d" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -539,7 +537,7 @@ "COPYING\n" "para detalles.\n" -#: src/title.cpp:419 +#: src/title.cpp:426 msgid "Are you sure you want to delete slot" msgstr "¿Estás seguro de que quieres borrar la ranura?" Index: nn.po =================================================================== RCS file: /cvsroot/super-tux/supertux/po/nn.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- nn.po 12 Oct 2004 18:32:55 -0000 1.4 +++ nn.po 25 Oct 2004 03:32:50 -0000 1.5 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: 2004-07-19 12:55+0200\n" "Last-Translator: Karl Ove Hufthammer <ka...@hu...>\n" "Language-Team: Norwegian Nynorsk <i1...@li...>\n" @@ -34,7 +34,6 @@ msgstr "PAUSE â Trykk «P» for Ã¥ halda fram" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "Brett: " @@ -91,7 +90,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "Tilbake" @@ -167,87 +166,87 @@ msgid "Eraser" msgstr "" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 #, fuzzy msgid "Save level" msgstr "Lagra spel" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 #, fuzzy msgid "Setup level" msgstr "Speltastar" -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "Lag brett" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -284,7 +283,7 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -318,12 +317,12 @@ "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 #, fuzzy msgid "- Level Editor's Help -" msgstr "Lag brett" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "" @@ -481,22 +480,18 @@ msgstr "" #: src/statistics.cpp:117 -#, c-format msgid "Max score:" msgstr "" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "" #: src/statistics.cpp:139 -#, c-format msgid "Max fragging:" msgstr "" #: src/statistics.cpp:141 -#, c-format msgid "Min time needed:" msgstr "" @@ -520,7 +515,7 @@ msgid "Min time needed: %d / %d" msgstr "" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -533,7 +528,7 @@ "og du kan kopiera det til andre under visse vilkÃ¥r. SjÃ¥ fila «COPYING»\n" "for meir informasjon.\n" -#: src/title.cpp:419 +#: src/title.cpp:426 #, fuzzy msgid "Are you sure you want to delete slot" msgstr "Er du sikker pÃ¥ at du vil sletta plass %d?" Index: LINGUAS =================================================================== RCS file: /cvsroot/super-tux/supertux/po/LINGUAS,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- LINGUAS 20 Oct 2004 17:50:48 -0000 1.8 +++ LINGUAS 25 Oct 2004 03:32:50 -0000 1.9 @@ -1,8 +1,8 @@ # Set of available languages. de es -it pt fr nl nn +it Index: fr.po =================================================================== RCS file: /cvsroot/super-tux/supertux/po/fr.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- fr.po 12 Oct 2004 18:32:55 -0000 1.4 +++ fr.po 25 Oct 2004 03:32:50 -0000 1.5 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: 2004-06-17 22:11+0200\n" "Last-Translator: Frederic Rodrigo <f.r...@fr...>\n" "Language-Team: Français\n" @@ -32,7 +32,6 @@ msgstr "PAUSE - Pressez P pour Jouer" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "Jouer : " @@ -89,7 +88,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "Retour" @@ -165,87 +164,87 @@ msgid "Eraser" msgstr "" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 #, fuzzy msgid "Save level" msgstr "Sauver le Jeu" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 #, fuzzy msgid "Setup level" msgstr "Touches " -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "Ãditeur de niveaux" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -282,7 +281,7 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -316,12 +315,12 @@ "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 #, fuzzy msgid "- Level Editor's Help -" msgstr "Ãditeur de niveaux" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "" @@ -479,22 +478,18 @@ msgstr "" #: src/statistics.cpp:117 -#, c-format msgid "Max score:" msgstr "" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "" #: src/statistics.cpp:139 -#, c-format msgid "Max fragging:" msgstr "" #: src/statistics.cpp:141 -#, c-format msgid "Min time needed:" msgstr "" @@ -518,7 +513,7 @@ msgid "Min time needed: %d / %d" msgstr "" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -527,7 +522,7 @@ "for details.\n" msgstr "" -#: src/title.cpp:419 +#: src/title.cpp:426 #, fuzzy msgid "Are you sure you want to delete slot" msgstr "Ãtes vous sûr de vouloir supprimer le slot %d ?" Index: nl.po =================================================================== RCS file: /cvsroot/super-tux/supertux/po/nl.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- nl.po 12 Oct 2004 18:32:55 -0000 1.4 +++ nl.po 25 Oct 2004 03:32:50 -0000 1.5 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACGE VERSION\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: 2004-06-07 HO:MI+ZONE\n" "Last-Translator: Frank van der Loo <fr...@li...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -32,7 +32,6 @@ msgstr "PAUSE - Druk op 'P' Om Verder Te Gaan" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "Level: " @@ -89,7 +88,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "Terug" @@ -165,87 +164,87 @@ msgid "Eraser" msgstr "" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 #, fuzzy msgid "Save level" msgstr "Bewaar Spel" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 #, fuzzy msgid "Setup level" msgstr "Toetsen Instellen" -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "Level Bewerker" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -282,7 +281,7 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -316,12 +315,12 @@ "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 #, fuzzy msgid "- Level Editor's Help -" msgstr "Level Bewerker" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "" @@ -479,22 +478,18 @@ msgstr "" #: src/statistics.cpp:117 -#, c-format msgid "Max score:" msgstr "" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "" #: src/statistics.cpp:139 -#, c-format msgid "Max fragging:" msgstr "" #: src/statistics.cpp:141 -#, c-format msgid "Min time needed:" msgstr "" @@ -518,7 +513,7 @@ msgid "Min time needed: %d / %d" msgstr "" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -531,7 +526,7 @@ "mag het verspreiden onder bepaalde voorwaarden; bekijk het bestand COPYING\n" "voor details.\n" -#: src/title.cpp:419 +#: src/title.cpp:426 #, fuzzy msgid "Are you sure you want to delete slot" msgstr "Weet u zeker dat u slot %d wilt verwijderen?" Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/po/de.po,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- de.po 12 Oct 2004 18:32:55 -0000 1.11 +++ de.po 25 Oct 2004 03:32:50 -0000 1.12 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: SuperTux 0.1.1\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: 2004-06-03 00:29+0200\n" "Last-Translator: <ma...@br...>\n" "Language-Team: German <de...@li...>\n" @@ -34,7 +34,6 @@ msgstr "" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "" @@ -91,7 +90,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "" @@ -167,86 +166,86 @@ msgid "Eraser" msgstr "" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 #, fuzzy msgid "Save level" msgstr "Spiel Beginnen" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 msgid "Setup level" msgstr "" -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "Level Editor" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -283,7 +282,7 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -317,12 +316,12 @@ "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 #, fuzzy msgid "- Level Editor's Help -" msgstr "Level Editor" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "" @@ -481,22 +480,18 @@ msgstr "" #: src/statistics.cpp:117 -#, c-format msgid "Max score:" msgstr "" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "" #: src/statistics.cpp:139 -#, c-format msgid "Max fragging:" msgstr "" #: src/statistics.cpp:141 -#, c-format msgid "Min time needed:" msgstr "" @@ -520,7 +515,7 @@ msgid "Min time needed: %d / %d" msgstr "" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -529,7 +524,7 @@ "for details.\n" msgstr "" -#: src/title.cpp:419 +#: src/title.cpp:426 msgid "Are you sure you want to delete slot" msgstr "" Index: pt.po =================================================================== RCS file: /cvsroot/super-tux/supertux/po/pt.po,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- pt.po 12 Oct 2004 18:32:55 -0000 1.14 +++ pt.po 25 Oct 2004 03:32:50 -0000 1.15 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: pt\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: 2004-10-12 19:44+0100\n" "Last-Translator: Ricardo Cruz <ri...@ae...>\n" "Language-Team: European Portuguese\n" @@ -38,7 +38,6 @@ msgstr "PAUSA - Carrega no 'P' para continuar" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "Jogando: " @@ -95,7 +94,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "Recuar" @@ -167,85 +166,85 @@ msgid "Eraser" msgstr "Borracha" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "Trampolim" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "Plataforma Voadora" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "Porta" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "Editar camada da frente" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "Editar camada interactiva" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "Editar camada de fundo" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "Próximo sector" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "Sector anterior" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "Próximo nÃvel" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "NÃvel anterior" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 msgid "Save level" msgstr "Gravar o nÃvel" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "Testar o nÃvel" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 msgid "Setup level" msgstr "Configurar o nÃvel" -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "NÃvel não gravado. Gravá-lo?" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "NÃvel %d não existe. Criá-lo?" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "Editor de NÃveis" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "F1 para ajuda" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "Escolhe um conjunto de nÃveis" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "Não existem mais sectores. Criar outro?" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -301,7 +300,8 @@ "Já deverás ter reparado no grupo de botões flutuante.\n" "Cada um serve um propósito diferente. Para escolheres um certo botão\n" "usa o botão esquerdo do rato no mesmo. Alguns botões tem uma tecla\n" -"de atalho, que pode ser visualizada carregando com o botão do rato direito no\n" +"de atalho, que pode ser visualizada carregando com o botão do rato direito " +"no\n" "mesmo. Isso irá mostrar o que o botão faz, também.\n" "Os grupos de botões podem também ser movidos arrastando-os,\n" "enquanto o botão esquerdo do rato é pressionado.\n" @@ -311,11 +311,12 @@ "Para começares a introduzir 'tiles' e objectos usa o grupo de botões\n" "maior. Cada botão é um 'tile' diferente. Para o pôres no nÃvel,\n" "carrega no mesmo e depois usa o botão esquerdo do rato no nÃvel.\n" -"Podes também copiar 'tiles' do nÃvel usando o botão do meio do rato (a roda serve).\n" +"Podes também copiar 'tiles' do nÃvel usando o botão do meio do rato (a roda " +"serve).\n" "Usa a roda do rato para deslizares pelo grupo de botões. Irás encontrar\n" "inimigos e elementos do jogo no fundo.\n" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -350,11 +351,13 @@ msgstr "" "Da esquerda para a direita:\n" "Mini setas - podem ser usadas para escolher outros sectores..\n" -"Sectores são mini-nÃveis, por assim dizer, que podem ser acessÃveis por portas.\n" +"Sectores são mini-nÃveis, por assim dizer, que podem ser acessÃveis por " +"portas.\n" "Setas grantes - permitem escolher outro nÃvel no mesmo conjunto de nÃveis.\n" "Disquete - gravar o nÃvel.\n" "Tux - testar o nÃvel.\n" -"Ferramentas - configura algumas definições do nÃvel, incluÃndo mudanças do tamanho do mesmo.\n" +"Ferramentas - configura algumas definições do nÃvel, incluÃndo mudanças do " +"tamanho do mesmo.\n" "\n" "Chegámos ao fim deste Howto.\n" "\n" @@ -368,11 +371,11 @@ "incluÃndo o SuperTux. à um projecto independente.\n" "Webpage: http://pingus.seul.org/~grumbel/flexlay/" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 msgid "- Level Editor's Help -" msgstr "- Ajuda do Editor de NÃveis -" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "Carregar numa tecla para continuar - Página %d/%d" @@ -528,22 +531,18 @@ msgstr "- Melhores EstatÃsticas do NÃvel -" #: src/statistics.cpp:117 -#, c-format msgid "Max score:" msgstr "Máx pontos:" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "Máx moedas apanhadas:" #: src/statistics.cpp:139 -#, c-format msgid "Max fragging:" msgstr "Max matança:" #: src/statistics.cpp:141 -#, c-format msgid "Min time needed:" msgstr "Min tempo necessário:" @@ -567,7 +566,7 @@ msgid "Min time needed: %d / %d" msgstr "Min tempo necessário: %d / %d" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -581,7 +580,7 @@ "COPYING\n" "para mais informações.\n" -#: src/title.cpp:419 +#: src/title.cpp:426 msgid "Are you sure you want to delete slot" msgstr "Tens a certeza que queres remover o slot" @@ -732,4 +731,3 @@ #: lib/gui/menu.cpp:269 msgid "Left Alt" msgstr "Alt esquerdo" - Index: supertux.pot =================================================================== RCS file: /cvsroot/super-tux/supertux/po/supertux.pot,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- supertux.pot 12 Oct 2004 18:32:55 -0000 1.9 +++ supertux.pot 25 Oct 2004 03:32:50 -0000 1.10 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-12 19:19+0100\n" +"POT-Creation-Date: 2004-10-20 14:06-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -33,7 +33,6 @@ msgstr "" #: src/gameloop.cpp:675 -#, c-format msgid "Playing: " msgstr "" @@ -90,7 +89,7 @@ #: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 #: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:213 +#: src/title.cpp:220 msgid "Back" msgstr "" @@ -162,85 +161,85 @@ msgid "Eraser" msgstr "" -#: src/leveleditor.cpp:137 +#: src/leveleditor.cpp:141 msgid "Trampoline" msgstr "" -#: src/leveleditor.cpp:138 +#: src/leveleditor.cpp:142 msgid "Flying Platform" msgstr "" -#: src/leveleditor.cpp:139 +#: src/leveleditor.cpp:143 msgid "Door" msgstr "" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:146 msgid "Edtit foreground tiles" msgstr "" -#: src/leveleditor.cpp:144 +#: src/leveleditor.cpp:148 msgid "Edit interactive tiles" msgstr "" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:150 msgid "Edit background tiles" msgstr "" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:154 msgid "Next sector" msgstr "" -#: src/leveleditor.cpp:151 +#: src/leveleditor.cpp:155 msgid "Prevous sector" msgstr "" -#: src/leveleditor.cpp:152 +#: src/leveleditor.cpp:156 msgid "Next level" msgstr "" -#: src/leveleditor.cpp:153 +#: src/leveleditor.cpp:157 msgid "Prevous level" msgstr "" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:158 msgid "Save level" msgstr "" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:159 msgid "Test level" msgstr "" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:160 msgid "Setup level" msgstr "" -#: src/leveleditor.cpp:238 src/leveleditor.cpp:714 src/leveleditor.cpp:739 -#: src/leveleditor.cpp:830 +#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 +#: src/leveleditor.cpp:834 msgid "Level not saved. Wanna to?" msgstr "" -#: src/leveleditor.cpp:353 +#: src/leveleditor.cpp:357 #, c-format msgid "Level %d doesn't exist. Create it?" msgstr "" -#: src/leveleditor.cpp:556 src/misc.cpp:96 +#: src/leveleditor.cpp:560 src/misc.cpp:96 msgid "Level Editor" msgstr "" -#: src/leveleditor.cpp:579 +#: src/leveleditor.cpp:583 msgid "F1 for help" msgstr "" -#: src/leveleditor.cpp:581 +#: src/leveleditor.cpp:585 msgid "Choose a level subset" msgstr "" -#: src/leveleditor.cpp:765 +#: src/leveleditor.cpp:769 msgid "No more sectors exist. Create another?" msgstr "" -#: src/leveleditor.cpp:917 +#: src/leveleditor.cpp:921 msgid "" "This is the built-in level editor. It's aim is to be intuitive\n" "and simple to use, so it should be pretty straight forward.\n" @@ -277,7 +276,7 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:953 +#: src/leveleditor.cpp:957 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" "see and edit the respective layer. Level's have three tiles layers:\n" @@ -311,11 +310,11 @@ "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:993 +#: src/leveleditor.cpp:997 msgid "- Level Editor's Help -" msgstr "" -#: src/leveleditor.cpp:997 +#: src/leveleditor.cpp:1001 #, c-format msgid "Press any key to continue - Page %d/%d" msgstr "" @@ -471,22 +470,18 @@ msgstr "" #: src/statistics.cpp:117 -#, c-format msgid "Max score:" msgstr "" #: src/statistics.cpp:137 -#, c-format msgid "Max coins collected:" msgstr "" #: src/statistics.cpp:139 -#, c-format msgid "Max fragging:" msgstr "" #: src/statistics.cpp:141 -#, c-format msgid "Min time needed:" msgstr "" @@ -510,7 +505,7 @@ msgid "Min time needed: %d / %d" msgstr "" -#: src/title.cpp:367 +#: src/title.cpp:374 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -519,7 +514,7 @@ "for details.\n" msgstr "" -#: src/title.cpp:419 +#: src/title.cpp:426 msgid "Are you sure you want to delete slot" msgstr "" |
From: Ryan F. <sik...@us...> - 2004-10-25 03:33:00
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20402/src Modified Files: level.cpp level_subset.cpp level_subset.h leveleditor.cpp title.cpp worldmap.cpp Log Message: - committed patch from Richard Smith - fixed some warnings Index: level_subset.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level_subset.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- level_subset.cpp 23 Oct 2004 21:16:21 -0000 1.14 +++ level_subset.cpp 25 Oct 2004 03:32:50 -0000 1.15 @@ -88,42 +88,32 @@ // Check in which directory our subset is located (ie. ~/.supertux/ // or SUPERTUX_DATADIR) std::string filename; - filename = st_dir + "/levels/" + subset + "/"; - if (access(filename.c_str(), R_OK) == 0) - { - directory = filename; - } - else + filename = st_dir + "/levels/" + subset + "/info"; + if (access(filename.c_str(), R_OK) != 0) { - filename = datadir + "/levels/" + subset + "/"; - if (access(filename.c_str(), R_OK) == 0) - directory = filename; - else + filename = datadir + "/levels/" + subset + "/info"; + if (access(filename.c_str(), R_OK) != 0) std::cout << "Error: LevelSubset: couldn't find subset: " << subset << std::endl; } - read_info_file(directory + "info"); + read_info_file(filename); if (levels.empty()) { // Level info file doesn't define any levels, so read the // directory to see what we can find std::set<std::string> files; + filename = datadir + "/levels/" + subset + "/"; + files = FileSystem::read_directory(filename); + filename = st_dir + "/levels/" + subset + "/"; - if(access(filename.c_str(), R_OK) == 0) - { - files = FileSystem::read_directory(filename); - } - else - { - filename = datadir + "/levels/" + subset + "/"; - files = FileSystem::read_directory(filename); - } + std::set<std::string> user_files = FileSystem::read_directory(filename); + files.insert(user_files.begin(), user_files.end()); for(std::set<std::string>::iterator i = files.begin(); i != files.end(); ++i) { if (has_suffix(*i, ".stl")) - levels.push_back(*i); + levels.push_back(subset+ "/" + *i); } } } @@ -177,7 +167,7 @@ LevelSubset::get_level_filename(unsigned int num) { assert(num < levels.size()); - return directory + levels[num]; + return levels[num]; } int Index: level_subset.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level_subset.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- level_subset.h 9 Oct 2004 21:27:30 -0000 1.7 +++ level_subset.h 25 Oct 2004 03:32:50 -0000 1.8 @@ -32,9 +32,6 @@ class LevelSubset { private: - /** Directory in which the level subset is stored */ - std::string directory; - /** Level filenames without the leading path ("level1.stl", "level3.stl", ...) */ std::vector<std::string> levels; Index: level.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level.cpp,v retrieving revision 1.104 retrieving revision 1.105 diff -u -d -r1.104 -r1.105 --- level.cpp 24 Sep 2004 21:19:25 -0000 1.104 +++ level.cpp 25 Oct 2004 03:32:50 -0000 1.105 @@ -52,7 +52,19 @@ void Level::load(const std::string& filename) { - LispReader* level = LispReader::load(filename, "supertux-level"); + std::string filepath; + filepath = st_dir + "/levels/" + filename; + if (access(filepath.c_str(), R_OK) != 0) + { + filepath = datadir + "/levels/" + filename; + if (access(filepath.c_str(), R_OK) != 0) + { + std::cerr << "Error: Level: couldn't find level: " << filename << std::endl; + return; + } + } + + LispReader* level = LispReader::load(filepath, "supertux-level"); int version = 1; level->read_int("version", version); @@ -102,7 +114,11 @@ void Level::save(const std::string& filename) { - ofstream file(filename.c_str(), ios::out); + std::string filepath = "levels/" + filename; + int last_slash = filepath.find_last_of('/'); + FileSystem::fcreatedir(filepath.substr(0,last_slash).c_str()); + filepath = st_dir + "/" + filepath; + ofstream file(filepath.c_str(), ios::out); LispWriter* writer = new LispWriter(file); writer->write_comment("Level made using SuperTux's built-in Level Editor"); Index: worldmap.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/worldmap.cpp,v retrieving revision 1.126 retrieving revision 1.127 diff -u -d -r1.126 -r1.127 --- worldmap.cpp 24 Oct 2004 23:29:06 -0000 1.126 +++ worldmap.cpp 25 Oct 2004 03:32:50 -0000 1.127 @@ -169,7 +169,7 @@ std::cerr << "Warning: no image specified for tile " << id << ".\nIgnoring...\n" << std::endl; - for(int i = 0; i < filenames.size(); i++) + for(int i = 0; static_cast<unsigned int>(i) < filenames.size(); i++) { Surface* image = new Surface( datadir + "/images/worldmap/" + filenames[i], true); @@ -879,7 +879,7 @@ // do a shriking fade to the level shrink_fade(Vector((level->pos.x*32 + 16 + offset.x),(level->pos.y*32 + 16 + offset.y)), 500); - GameSession session(datadir + "/levels/" + level->name, + GameSession session(level->name, ST_GL_LOAD_LEVEL_FILE, level->vertical_flip, &level->statistics); Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.128 retrieving revision 1.129 diff -u -d -r1.128 -r1.129 --- title.cpp 24 Oct 2004 23:29:06 -0000 1.128 +++ title.cpp 25 Oct 2004 03:32:50 -0000 1.129 @@ -218,7 +218,20 @@ /** get level's title */ std::string level_title = "<no title>"; - LispReader* reader = LispReader::load(subset.get_level_filename(i), "supertux-level"); + std::string filename = subset.get_level_filename(i); + std::string filepath; + filepath = st_dir + "/levels/" + filename; + if (access(filepath.c_str(), R_OK) != 0) + { + filepath = datadir + "/levels/" + filename; + if (access(filepath.c_str(), R_OK) != 0) + { + std::cerr << "Error: Level: couldn't find level: " << filename << std::endl; + continue; + } + } + + LispReader* reader = LispReader::load(filepath, "supertux-level"); if(!reader) { std::cerr << "Error: Could not open level file. Ignoring...\n"; @@ -314,7 +327,7 @@ random_timer.init(true); Ticks::pause_init(); - titlesession = new GameSession(datadir + "/levels/misc/menu.stl", ST_GL_DEMO_GAME); + titlesession = new GameSession("misc/menu.stl", ST_GL_DEMO_GAME); /* Load images: */ bkg_title = new Surface(datadir + "/images/background/arctis.jpg", false); Index: leveleditor.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/leveleditor.cpp,v retrieving revision 1.162 retrieving revision 1.163 diff -u -d -r1.162 -r1.163 --- leveleditor.cpp 21 Oct 2004 22:04:48 -0000 1.162 +++ leveleditor.cpp 25 Oct 2004 03:32:50 -0000 1.163 @@ -840,7 +840,8 @@ GameSession session(level_filename, ST_GL_TEST); session.run(); // player_status.reset(); -sound_manager->halt_music(); +if(sound_manager) + sound_manager->halt_music(); } void LevelEditor::change(int x, int y, int newtile, int layer) |
From: Ryan F. <sik...@us...> - 2004-10-25 03:32:58
|
Update of /cvsroot/super-tux/supertux/lib/special In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20402/lib/special Modified Files: sprite.cpp Log Message: - committed patch from Richard Smith - fixed some warnings Index: sprite.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/special/sprite.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- sprite.cpp 19 Oct 2004 17:48:23 -0000 1.28 +++ sprite.cpp 25 Oct 2004 03:32:49 -0000 1.29 @@ -99,7 +99,7 @@ "Mirror actions must be defined after the real one!\n"; else { - for(int i = 0; i < act_tmp->surfaces.size(); i++) + for(int i = 0; static_cast<unsigned int>(i) < act_tmp->surfaces.size(); i++) { Surface* surface = new Surface(sdl_surface_from_sdl_surface( act_tmp->surfaces[i]->impl->get_sdl_surface(), true), true); |
From: Ryan F. <sik...@us...> - 2004-10-24 23:29:16
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26582 Modified Files: title.cpp worldmap.cpp Log Message: committed patches from Richard Smith Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.127 retrieving revision 1.128 diff -u -d -r1.127 -r1.128 --- title.cpp 21 Oct 2004 22:05:08 -0000 1.127 +++ title.cpp 24 Oct 2004 23:29:06 -0000 1.128 @@ -80,6 +80,20 @@ static FrameRate frame_rate(100); +/* If the demo was stopped - because game started, level + editor was excuted, etc - call this when you get back + to the title code. + */ +void resume_demo() +{ + // FIXME: shouldn't be needed if GameSession + // didn't relay on global variables + titlesession->get_current_sector()->activate(); + titlesession->set_current(); + + frame_rate.update(); +} + void update_load_save_game_menu(Menu* pmenu) { for(int i = 2; i < 7; ++i) @@ -181,6 +195,7 @@ worldmap.display(); // run the map Menu::set_current(main_menu); + resume_demo(); } else if (index < (int)contrib_subsets.size() + first_level_index) { @@ -239,26 +254,11 @@ session.run(); player_status.reset(); Menu::set_current(main_menu); - titlesession->get_current_sector()->activate(); - titlesession->set_current(); + resume_demo(); } } } -/* If the demo was stopped - because game started, level - editor was excuted, etc - call this when you get back - to the title code. - */ -void resume_demo() -{ - // FIXME: shouldn't be needed if GameSession - // didn't relay on global variables - titlesession->get_current_sector()->activate(); - titlesession->set_current(); - - frame_rate.update(); -} - void draw_demo(double frame_ratio) { Sector* world = titlesession->get_current_sector(); Index: worldmap.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/worldmap.cpp,v retrieving revision 1.125 retrieving revision 1.126 diff -u -d -r1.125 -r1.126 --- worldmap.cpp 21 Oct 2004 17:08:17 -0000 1.125 +++ worldmap.cpp 24 Oct 2004 23:29:06 -0000 1.126 @@ -631,6 +631,9 @@ } lisp_free(root_obj); + + delete tux; + tux = new Tux(this); } void WorldMap::get_level_title(Level& level) |
Update of /cvsroot/super-tux/supertux/data/images/shared In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2612/data/images/shared Removed Files: firetux-duck-left.png firetux-duck-right.png firetux-grab-left-0.png firetux-grab-right-0.png firetux-jump-left-0.png firetux-jump-right-0.png firetux-kick-left-0.png firetux-kick-right-0.png firetux-skid-left.png firetux-skid-right.png firetux-stand-left.png firetux-stand-right.png firetux-walk-left-0.png firetux-walk-left-1.png firetux-walk-left-2.png firetux-walk-left-3.png firetux-walk-left-4.png firetux-walk-left-5.png firetux-walk-right-0.png firetux-walk-right-1.png firetux-walk-right-2.png firetux-walk-right-3.png firetux-walk-right-4.png firetux-walk-right-5.png largetux-kick-left-0.png largetux-kick-right-0.png largetux-skid-left.png largetux-skid-right.png largetux-stand-left.png largetux-stand-right.png largetux-walk-left-0.png largetux-walk-left-1.png largetux-walk-left-2.png largetux-walk-left-3.png largetux-walk-left-4.png largetux-walk-left-5.png largetux-walk-right-0.png largetux-walk-right-1.png largetux-walk-right-2.png largetux-walk-right-3.png largetux-walk-right-4.png largetux-walk-right-5.png smalltux-grab-left-0.png smalltux-grab-right-0.png smalltux-kick-left-0.png smalltux-kick-right-0.png smalltux-skid-left.png smalltux-skid-right.png tux-duck-left.png tux-duck.png tux-duck-right.png icetux-duck-left.png icetux-duck-right.png icetux-grab-left-0.png icetux-grab-right-0.png icetux-jump-left-0.png icetux-jump-right-0.png icetux-kick-left-0.png icetux-kick-right-0.png icetux-skid-left.png icetux-skid-right.png icetux-stand-left.png icetux-stand-right.png icetux-walk-left-0.png icetux-walk-left-1.png icetux-walk-left-2.png icetux-walk-left-3.png icetux-walk-left-4.png icetux-walk-left-5.png icetux-walk-right-0.png icetux-walk-right-1.png icetux-walk-right-2.png icetux-walk-right-3.png icetux-walk-right-4.png icetux-walk-right-5.png largetux-grab-left-0.png largetux-grab-right-0.png largetux-jump-left-0.png largetux-jump-right-0.png smalltux-left-1.png smalltux-left-2.png smalltux-left-3.png smalltux-left-4.png smalltux-left-5.png smalltux-left-6.png smalltux-left-7.png smalltux-left-8.png smalltux-right-1.png smalltux-right-2.png smalltux-right-3.png smalltux-right-4.png smalltux-right-5.png smalltux-right-6.png smalltux-right-7.png smalltux-right-8.png smalltux-jump-left.png smalltux-jump-right.png Log Message: Moved old entire body Tux to the old folder. It might be a good idea to keep old/sketches/extras graphics in their own module or something. Please, do this. --- icetux-kick-right-0.png DELETED --- --- smalltux-right-7.png DELETED --- --- smalltux-left-2.png DELETED --- --- icetux-walk-left-4.png DELETED --- --- icetux-walk-right-0.png DELETED --- --- firetux-grab-left-0.png DELETED --- --- firetux-walk-left-1.png DELETED --- --- firetux-kick-left-0.png DELETED --- --- firetux-stand-right.png DELETED --- --- largetux-walk-left-5.png DELETED --- --- smalltux-left-6.png DELETED --- --- icetux-walk-left-0.png DELETED --- --- icetux-walk-left-1.png DELETED --- --- largetux-walk-left-0.png DELETED --- --- icetux-jump-right-0.png DELETED --- --- firetux-duck-left.png DELETED --- --- smalltux-jump-left.png DELETED --- --- icetux-duck-right.png DELETED --- --- smalltux-kick-left-0.png DELETED --- --- icetux-skid-left.png DELETED --- --- firetux-skid-left.png DELETED --- --- icetux-walk-left-3.png DELETED --- --- largetux-jump-left-0.png DELETED --- --- firetux-duck-right.png DELETED --- --- firetux-stand-left.png DELETED --- --- firetux-kick-right-0.png DELETED --- --- smalltux-right-3.png DELETED --- --- icetux-walk-right-1.png DELETED --- --- smalltux-left-8.png DELETED --- --- icetux-jump-left-0.png DELETED --- --- largetux-skid-right.png DELETED --- --- largetux-kick-right-0.png DELETED --- --- largetux-walk-right-0.png DELETED --- --- icetux-skid-right.png DELETED --- --- firetux-walk-right-2.png DELETED --- --- largetux-jump-right-0.png DELETED --- --- largetux-walk-right-4.png DELETED --- --- icetux-duck-left.png DELETED --- --- smalltux-right-5.png DELETED --- --- smalltux-right-4.png DELETED --- --- largetux-walk-left-3.png DELETED --- --- largetux-stand-right.png DELETED --- --- smalltux-grab-right-0.png DELETED --- --- smalltux-skid-right.png DELETED --- --- icetux-stand-right.png DELETED --- --- smalltux-left-1.png DELETED --- --- firetux-walk-left-3.png DELETED --- --- smalltux-grab-left-0.png DELETED --- --- largetux-walk-right-2.png DELETED --- --- firetux-jump-right-0.png DELETED --- --- firetux-walk-right-4.png DELETED --- --- tux-duck-right.png DELETED --- --- smalltux-jump-right.png DELETED --- --- smalltux-left-4.png DELETED --- --- smalltux-left-7.png DELETED --- --- smalltux-kick-right-0.png DELETED --- --- icetux-walk-left-2.png DELETED --- --- icetux-stand-left.png DELETED --- --- firetux-walk-right-5.png DELETED --- --- largetux-walk-left-1.png DELETED --- --- largetux-walk-left-2.png DELETED --- --- smalltux-right-2.png DELETED --- --- icetux-walk-right-4.png DELETED --- --- icetux-grab-right-0.png DELETED --- --- tux-duck.png DELETED --- --- smalltux-right-8.png DELETED --- --- firetux-grab-right-0.png DELETED --- --- firetux-walk-left-0.png DELETED --- --- firetux-walk-left-4.png DELETED --- --- firetux-walk-left-5.png DELETED --- --- firetux-skid-right.png DELETED --- --- smalltux-left-3.png DELETED --- --- largetux-stand-left.png DELETED --- --- smalltux-left-5.png DELETED --- --- firetux-walk-right-3.png DELETED --- --- largetux-grab-right-0.png DELETED --- --- largetux-walk-left-4.png DELETED --- --- icetux-kick-left-0.png DELETED --- --- icetux-walk-right-5.png DELETED --- --- largetux-kick-left-0.png DELETED --- --- firetux-jump-left-0.png DELETED --- --- smalltux-skid-left.png DELETED --- --- firetux-walk-left-2.png DELETED --- --- smalltux-right-6.png DELETED --- --- firetux-walk-right-1.png DELETED --- --- largetux-walk-right-5.png DELETED --- --- largetux-walk-right-1.png DELETED --- --- smalltux-right-1.png DELETED --- --- icetux-grab-left-0.png DELETED --- --- icetux-walk-left-5.png DELETED --- --- icetux-walk-right-2.png DELETED --- --- icetux-walk-right-3.png DELETED --- --- tux-duck-left.png DELETED --- --- largetux-skid-left.png DELETED --- --- largetux-walk-right-3.png DELETED --- --- largetux-grab-left-0.png DELETED --- --- firetux-walk-right-0.png DELETED --- |
Update of /cvsroot/super-tux/supertux/data/images/shared/old In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2612/data/images/shared/old Added Files: firetux-duck-left.png firetux-duck-right.png firetux-grab-left-0.png firetux-grab-right-0.png firetux-jump-left-0.png firetux-jump-right-0.png firetux-kick-left-0.png firetux-kick-right-0.png firetux-skid-left.png firetux-skid-right.png firetux-stand-left.png firetux-stand-right.png firetux-walk-left-0.png firetux-walk-left-1.png firetux-walk-left-2.png firetux-walk-left-3.png firetux-walk-left-4.png firetux-walk-left-5.png firetux-walk-right-0.png firetux-walk-right-1.png firetux-walk-right-2.png firetux-walk-right-3.png firetux-walk-right-4.png firetux-walk-right-5.png icetux-duck-left.png icetux-duck-right.png icetux-grab-left-0.png icetux-grab-right-0.png icetux-jump-left-0.png icetux-jump-right-0.png icetux-kick-left-0.png icetux-kick-right-0.png icetux-skid-left.png icetux-skid-right.png icetux-stand-left.png icetux-stand-right.png icetux-walk-left-0.png icetux-walk-left-1.png icetux-walk-left-2.png icetux-walk-left-3.png icetux-walk-left-4.png icetux-walk-left-5.png icetux-walk-right-0.png icetux-walk-right-1.png icetux-walk-right-2.png icetux-walk-right-3.png icetux-walk-right-4.png icetux-walk-right-5.png largetux-grab-left-0.png largetux-grab-right-0.png largetux-jump-left-0.png largetux-jump-right-0.png largetux-kick-left-0.png largetux-kick-right-0.png largetux-skid-left.png largetux-skid-right.png largetux-stand-left.png largetux-stand-right.png largetux-walk-left-0.png largetux-walk-left-1.png largetux-walk-left-2.png largetux-walk-left-3.png largetux-walk-left-4.png largetux-walk-left-5.png largetux-walk-right-0.png largetux-walk-right-1.png largetux-walk-right-2.png largetux-walk-right-3.png largetux-walk-right-4.png largetux-walk-right-5.png smalltux-grab-left-0.png smalltux-grab-right-0.png smalltux-jump-left.png smalltux-jump-right.png smalltux-kick-left-0.png smalltux-kick-right-0.png smalltux-left-1.png smalltux-left-2.png smalltux-left-3.png smalltux-left-4.png smalltux-left-5.png smalltux-left-6.png smalltux-left-7.png smalltux-left-8.png smalltux-right-1.png smalltux-right-2.png smalltux-right-3.png smalltux-right-4.png smalltux-right-5.png smalltux-right-6.png smalltux-right-7.png smalltux-right-8.png smalltux-skid-left.png smalltux-skid-right.png tux-duck-left.png tux-duck.png tux-duck-right.png Log Message: Moved old entire body Tux to the old folder. It might be a good idea to keep old/sketches/extras graphics in their own module or something. Please, do this. --- NEW FILE: icetux-kick-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-7.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-grab-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-grab-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-kick-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-stand-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-6.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-jump-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-right-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-duck-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-jump-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-duck-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-kick-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-skid-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-skid-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tux-duck-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-duck-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-kick-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-8.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-jump-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-skid-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-kick-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-grab-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-jump-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-duck-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-stand-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-grab-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-skid-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-stand-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-grab-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-jump-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tux-duck-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-jump-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-7.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-kick-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-stand-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-6.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-left-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-right-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-grab-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tux-duck.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-8.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-grab-right-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-left-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-skid-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-stand-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-skid-right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-left-4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-left-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-right-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-skid-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-jump-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-skid-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-stand-left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-right-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-left-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smalltux-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-grab-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-left-5.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-right-2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-walk-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-jump-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-kick-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-right-3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icetux-kick-left-0.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: largetux-walk-right-1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: firetux-walk-right-0.png --- (This appears to be a binary file; contents omitted.) |
From: Ricardo C. <rm...@us...> - 2004-10-23 21:16:30
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18385/src Modified Files: level_subset.cpp Log Message: Avoid crashing when trying to access info file. Patch by Richard Smith <sup...@me...>. Index: level_subset.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level_subset.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- level_subset.cpp 9 Oct 2004 21:25:09 -0000 1.13 +++ level_subset.cpp 23 Oct 2004 21:16:21 -0000 1.14 @@ -59,6 +59,8 @@ void LevelSubset::read_info_file(const std::string& info_file) { lisp_object_t* root_obj = lisp_read_from_file(info_file); + if (root_obj == NULL) + return; lisp_object_t* cur = lisp_car(root_obj); if (lisp_symbol_p(cur) && strcmp(lisp_symbol(cur), "supertux-level-subset") == 0) |
From: Ricardo C. <rm...@us...> - 2004-10-23 21:15:15
|
Update of /cvsroot/super-tux/supertux/data/images/tilesets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18082/data/images/tilesets Modified Files: supertux.stgt Log Message: Commented out old coin tiles. Index: supertux.stgt =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/tilesets/supertux.stgt,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- supertux.stgt 5 Oct 2004 14:38:52 -0000 1.49 +++ supertux.stgt 23 Oct 2004 21:15:05 -0000 1.50 @@ -151,14 +151,14 @@ (images "coin-1.png" "coin-2.png" "coin-3.png" "coin-4.png" "coin-5.png" "coin-6.png" "coin-7.png" "coin-8.png") (distro #t) (anim-speed 50)) - (tile (id 45) - (images "coin1.png" "coin2.png" "coin3.png" "coin2.png") - (distro #t) - (anim-speed 45)) - (tile (id 46) - (images "coin1.png" "coin2.png" "coin3.png" "coin2.png") - (distro #t) - (anim-speed 45)) +; (tile (id 45) +; (images "coin1.png" "coin2.png" "coin3.png" "coin2.png") +; (distro #t) +; (anim-speed 45)) +; (tile (id 46) +; (images "coin1.png" "coin2.png" "coin3.png" "coin2.png") +; (distro #t) +; (anim-speed 45)) (tile (id 47) (images "block4.png") |
From: Ricardo C. <rm...@us...> - 2004-10-23 21:14:50
|
Update of /cvsroot/super-tux/supertux/data/levels/world1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17919/data/levels/world1 Modified Files: level7.stl Log Message: Replaced 45 and 46 tiles (old coins) by 44 tiles (new coins). Patch by Richard Smith <sup...@me...>. Index: level7.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level7.stl,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- level7.stl 16 Sep 2004 18:59:06 -0000 1.22 +++ level7.stl 23 Oct 2004 21:14:39 -0000 1.23 @@ -26,18 +26,18 @@ (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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 12 0 0 10 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 16 17 18 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 16 31 11 11 11 30 18 0 0 0 0 0 0 0 0 0 0 10 11 11 11 12 0 0 16 31 11 11 11 30 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 8 8 8 8 8 8 8 8 8 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 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 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 26 26 102 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 12 0 0 10 12 0 0 10 11 12 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 16 17 17 17 18 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 12 0 0 0 16 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 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 14 14 14 14 15 0 0 0 0 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 0 0 61 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 132 132 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 26 26 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 45 46 46 45 44 7 8 8 8 8 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 8 8 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 0 0 0 0 0 0 0 0 0 0 10 11 12 0 0 10 12 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 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 7 8 8 8 9 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 7 8 8 8 8 8 8 8 9 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 7 8 8 9 0 0 0 0 10 30 17 17 17 17 17 17 17 17 17 17 17 17 31 12 0 0 0 0 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 61 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 0 0 0 0 61 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 132 132 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 26 26 0 0 0 0 0 0 44 44 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 44 44 44 44 7 8 8 8 8 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 8 8 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 0 0 0 0 0 0 0 0 0 0 10 11 12 0 0 10 12 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 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 7 8 8 8 9 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 7 8 8 8 8 8 8 8 9 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 7 8 8 9 0 0 0 0 10 30 17 17 17 17 17 17 17 17 17 17 17 17 31 12 0 0 0 0 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 61 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 0 0 0 0 61 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 8 8 8 8 8 8 8 8 8 8 9 13 14 14 14 14 14 14 15 7 8 9 0 0 0 0 0 0 0 0 0 0 0 44 0 44 0 44 0 44 0 44 0 44 0 44 0 44 0 44 0 0 0 0 0 0 0 0 0 7 8 8 114 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 10 11 12 0 0 10 12 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 17 18 0 0 10 11 12 0 0 10 11 12 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 22 11 11 11 21 9 0 0 0 0 0 0 0 0 0 7 114 14 14 14 15 0 0 0 16 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 13 14 14 14 15 0 0 0 0 0 13 14 14 14 15 0 0 0 0 7 114 14 14 14 14 14 14 14 113 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 15 0 13 14 14 15 0 0 0 0 10 12 0 0 0 0 0 0 0 0 0 0 0 0 10 12 0 0 0 0 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 61 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 0 0 0 0 61 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 14 14 15 16 17 17 17 17 17 17 18 13 14 15 7 8 9 0 0 0 0 0 0 0 27 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 29 0 0 0 0 0 7 8 9 13 14 14 23 30 17 17 17 17 17 17 18 0 0 0 0 0 7 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 0 0 10 11 12 0 0 10 12 0 0 0 0 0 0 0 7 8 9 0 0 7 8 9 0 0 7 8 9 0 0 0 0 0 0 0 10 11 12 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 7 8 9 0 0 7 8 9 0 0 13 23 11 11 11 20 15 0 0 0 0 0 0 0 0 0 13 23 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 7 22 11 11 19 21 9 0 0 0 7 22 11 11 11 21 9 0 0 0 13 23 11 30 17 17 17 31 11 20 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 30 31 12 0 10 30 31 12 0 0 0 0 10 12 0 0 45 45 45 45 45 45 45 45 0 0 10 12 0 0 61 61 61 61 0 0 61 61 61 61 61 61 0 0 61 61 61 61 61 61 61 61 0 0 61 61 61 61 0 0 61 61 61 61 61 61 61 61 61 61 0 0 61 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 132 132 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 28 28 28 28 28 28 28 28 29 45 45 45 45 45 27 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 9 0 0 0 0 16 17 31 11 11 11 11 11 30 17 17 17 17 18 0 0 0 0 0 0 0 0 16 17 18 13 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 13 14 15 16 17 17 31 12 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 10 11 12 0 0 16 18 0 0 0 0 0 0 0 13 14 15 0 0 13 14 15 0 0 13 14 15 0 0 0 0 0 0 0 10 11 12 0 0 16 17 18 0 0 0 0 0 0 0 7 8 9 0 0 13 14 15 0 0 13 14 15 0 0 16 31 11 11 11 30 18 0 0 7 8 8 8 9 0 0 16 31 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 23 11 11 11 20 15 0 0 0 13 23 11 11 11 20 15 0 0 0 16 17 17 18 0 0 0 16 17 17 18 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 10 21 22 12 0 10 21 22 12 0 0 0 0 10 12 0 0 27 28 28 28 28 28 28 29 0 0 10 12 0 0 61 44 44 0 0 0 0 0 61 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 61 0 0 0 0 0 0 0 61 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 14 14 15 16 17 17 17 17 17 17 18 13 14 15 7 8 9 0 0 0 0 0 0 0 27 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 29 0 0 0 0 0 7 8 9 13 14 14 23 30 17 17 17 17 17 17 18 0 0 0 0 0 7 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 0 0 10 11 12 0 0 10 12 0 0 0 0 0 0 0 7 8 9 0 0 7 8 9 0 0 7 8 9 0 0 0 0 0 0 0 10 11 12 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 7 8 9 0 0 7 8 9 0 0 13 23 11 11 11 20 15 0 0 0 0 0 0 0 0 0 13 23 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 7 22 11 11 19 21 9 0 0 0 7 22 11 11 11 21 9 0 0 0 13 23 11 30 17 17 17 31 11 20 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 30 31 12 0 10 30 31 12 0 0 0 0 10 12 0 0 44 44 44 44 44 44 44 44 0 0 10 12 0 0 61 61 61 61 0 0 61 61 61 61 61 61 0 0 61 61 61 61 61 61 61 61 0 0 61 61 61 61 0 0 61 61 61 61 61 61 61 61 61 61 0 0 61 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 132 132 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 28 28 28 28 28 28 28 28 29 44 44 44 44 44 27 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 9 0 0 0 0 16 17 31 11 11 11 11 11 30 17 17 17 17 18 0 0 0 0 0 0 0 0 16 17 18 13 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 13 14 15 16 17 17 31 12 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 10 11 12 0 0 16 18 0 0 0 0 0 0 0 13 14 15 0 0 13 14 15 0 0 13 14 15 0 0 0 0 0 0 0 10 11 12 0 0 16 17 18 0 0 0 0 0 0 0 7 8 9 0 0 13 14 15 0 0 13 14 15 0 0 16 31 11 11 11 30 18 0 0 7 8 8 8 9 0 0 16 31 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 23 11 11 11 20 15 0 0 0 13 23 11 11 11 20 15 0 0 0 16 17 17 18 0 0 0 16 17 17 18 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 10 21 22 12 0 10 21 22 12 0 0 0 0 10 12 0 0 27 28 28 28 28 28 28 29 0 0 10 12 0 0 61 44 44 0 0 0 0 0 61 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 61 0 0 0 0 0 0 0 61 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 132 132 0 0 0 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 0 27 28 28 28 28 28 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 8 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 15 0 0 0 0 0 0 10 11 11 11 30 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 17 18 7 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 0 7 8 9 16 17 18 0 0 0 10 12 0 0 26 0 0 0 0 0 0 0 0 0 10 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 10 11 12 0 0 0 0 0 0 7 8 9 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 0 0 0 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 13 14 15 0 0 10 11 12 0 0 10 11 12 0 0 0 16 17 17 17 18 0 0 7 114 14 14 14 113 9 0 0 16 17 17 17 18 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 22 11 11 11 11 30 18 0 0 0 16 31 11 11 11 30 18 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 15 0 0 0 0 0 10 20 23 12 0 10 20 23 12 0 0 0 0 10 12 0 0 0 0 0 0 0 0 0 0 0 0 10 12 0 0 61 44 44 0 0 0 0 0 61 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 61 0 0 0 0 0 0 0 61 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 132 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 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 26 26 26 0 0 0 0 13 14 14 14 14 14 15 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 0 0 0 0 0 0 0 0 0 0 0 0 0 16 17 18 0 0 0 0 0 0 16 31 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 13 14 15 0 0 0 0 0 0 10 12 0 0 0 0 0 0 0 0 0 0 0 7 22 11 21 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 0 16 17 18 0 0 0 0 0 0 13 14 15 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 0 0 0 0 0 16 17 18 0 0 0 0 0 0 0 7 8 9 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 13 23 11 11 11 20 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 22 11 11 11 21 9 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 8 114 23 11 11 11 30 18 0 0 0 0 0 16 31 11 30 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 22 11 11 11 12 0 0 0 0 0 16 17 17 18 0 16 17 17 18 0 0 0 0 10 12 103 0 0 0 0 0 0 0 0 0 0 0 16 18 0 0 61 61 44 0 0 0 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 0 0 61 0 0 61 0 0 0 0 0 0 0 61 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 126 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 16 18 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 17 17 17 17 17 18 0 0 0 0 0 0 0 0 0 7 114 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 7 9 0 0 0 0 0 0 0 0 0 0 0 0 26 26 26 128 0 0 0 0 0 0 0 0 0 0 0 0 16 17 18 7 8 9 0 0 0 0 0 0 0 0 26 102 26 0 0 0 0 0 0 0 0 0 0 0 16 17 18 0 0 0 0 0 0 10 12 0 0 0 0 0 0 0 0 0 0 0 13 23 11 20 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 10 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 13 14 15 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 16 31 11 11 11 30 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 23 11 11 11 20 15 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 14 23 11 11 30 17 18 0 0 0 0 0 0 0 16 17 18 0 0 0 0 0 0 0 0 0 7 8 9 0 0 0 0 0 0 0 0 0 0 0 13 14 23 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 61 61 0 0 0 0 0 0 61 0 0 0 0 0 0 61 0 0 0 0 0 0 0 0 0 61 0 0 61 0 0 61 61 61 0 0 61 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 132 132 0 0 0 0 0 0 0 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 26 102 0 0 0 0 0 13 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 7 114 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 13 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 13 14 15 0 0 0 0 0 0 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 10 21 8 8 9 0 0 0 0 0 0 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 7 9 0 0 10 11 12 0 0 0 0 0 0 0 0 102 0 0 0 0 0 0 0 0 7 8 9 0 0 0 0 0 0 0 7 8 9 0 0 10 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 16 17 17 17 18 0 0 0 0 0 0 0 0 0 0 0 7 8 8 8 8 8 8 22 11 11 11 11 30 18 0 0 0 0 0 0 0 0 0 0 7 22 11 11 11 11 11 30 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 8 114 14 113 8 8 9 0 0 0 0 0 0 7 8 22 11 11 11 11 11 12 0 0 0 0 0 0 0 0 0 102 0 0 0 0 0 0 0 0 0 0 0 0 0 27 28 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 0 0 0 0 61 0 0 0 0 0 0 0 0 0 61 0 0 61 0 0 0 0 61 0 0 61 61 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 132 132 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 21 9 0 0 0 0 0 0 0 0 0 0 0 0 0 57 58 0 0 0 57 58 0 0 0 0 0 0 0 0 0 7 8 8 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 114 23 11 11 12 0 0 0 0 0 44 44 0 0 0 0 0 44 44 0 0 0 0 0 44 44 0 0 0 0 0 44 44 0 0 0 0 0 0 16 18 0 0 7 22 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 16 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 15 0 0 0 0 0 0 0 0 0 10 20 14 14 15 0 0 0 0 0 0 0 7 22 11 11 11 21 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 0 0 0 0 0 13 15 0 0 10 11 12 0 0 7 8 9 0 0 0 0 0 0 0 7 8 9 0 0 13 14 15 0 0 0 0 0 0 0 13 14 15 0 0 10 11 12 0 0 7 8 9 0 0 7 8 9 0 0 7 8 9 0 0 7 114 14 14 14 113 9 0 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 7 114 14 14 14 14 14 14 23 11 11 11 30 18 0 0 0 0 0 0 0 0 0 0 0 13 23 11 19 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 14 23 19 20 14 14 15 0 0 0 0 0 0 13 14 23 11 11 11 11 11 12 0 0 0 0 7 8 9 0 0 0 0 0 7 8 9 0 0 0 0 0 0 0 27 28 28 28 29 7 8 8 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 0 0 0 0 61 0 0 0 0 0 0 0 0 0 61 0 0 61 0 0 0 0 61 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 132 132 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 22 11 11 11 20 15 0 0 0 0 0 0 0 0 57 58 0 0 0 59 60 0 0 0 59 60 0 0 0 0 0 0 0 0 0 13 14 14 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 114 23 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 44 0 0 13 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 16 17 18 0 0 0 0 0 0 0 0 0 10 11 11 11 21 8 9 0 0 0 0 0 13 23 11 11 11 20 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 7 8 9 0 0 10 12 0 0 10 11 12 0 0 13 14 15 0 0 0 0 0 0 0 13 14 15 0 0 10 11 12 0 0 7 8 9 0 0 10 11 12 0 0 10 11 12 0 0 13 14 15 0 0 13 14 15 0 0 13 14 15 0 0 13 23 11 11 11 20 15 0 0 0 0 0 0 0 0 0 7 114 14 14 14 113 9 0 13 23 11 11 11 11 11 11 11 11 11 30 18 0 0 0 0 0 7 8 8 8 9 0 0 16 31 11 11 11 30 17 18 0 0 0 0 0 0 0 0 0 7 8 8 8 9 0 0 0 0 0 7 22 11 11 11 11 11 11 11 21 9 0 0 0 7 8 22 11 11 11 11 11 11 11 12 0 0 0 0 13 14 15 0 0 0 0 0 13 14 15 0 0 0 7 8 8 8 114 14 14 14 14 14 14 14 14 14 14 15 0 0 61 61 61 61 61 61 0 0 61 61 61 61 61 61 61 61 61 61 61 61 0 0 61 61 61 61 61 61 0 0 61 61 0 0 61 61 61 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 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 13 14 23 11 11 11 11 12 0 0 0 57 58 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 57 58 0 0 0 7 22 11 11 11 11 11 21 8 9 0 0 0 0 0 0 0 0 0 0 0 0 7 114 23 11 19 11 11 21 8 8 8 9 0 0 0 0 7 8 9 0 0 0 0 7 8 9 0 0 0 0 7 8 9 0 0 0 0 7 8 9 0 0 7 8 8 8 22 11 11 12 0 0 0 27 28 28 28 28 28 28 28 28 29 0 0 0 0 0 0 0 7 8 8 8 8 9 0 0 7 8 8 8 9 0 0 27 28 28 28 29 0 0 7 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 20 14 15 0 0 0 0 0 10 11 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 9 0 0 0 13 14 15 0 0 10 12 0 0 10 11 12 0 0 10 11 12 0 0 7 8 9 0 0 10 11 12 0 0 10 11 12 0 0 13 14 15 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 12 0 0 7 8 8 8 9 0 0 13 23 11 11 11 20 15 0 10 11 11 11 11 11 11 11 11 30 17 18 0 0 0 0 0 0 13 14 14 14 15 0 0 0 16 31 11 30 18 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 7 114 23 11 30 17 17 17 31 11 20 113 9 0 0 13 14 23 11 11 11 11 11 11 11 12 0 0 0 0 10 11 21 8 8 8 8 8 22 11 12 0 0 0 13 14 14 14 23 11 11 11 11 11 11 11 11 11 11 12 0 0 0 61 61 44 44 44 44 44 44 44 44 61 0 0 0 0 61 44 44 44 44 44 45 61 44 44 44 44 0 0 0 0 0 0 0 0 61 61 61 61 0 7 8 8 8 8 8 8 8 8 133 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 0 0 0 0 0 0 0 132 132 8 8 8 8 8 - 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 0 0 0 7 8 8 8 9 57 58 0 0 7 22 19 11 11 11 11 11 12 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 13 23 11 11 11 11 11 20 14 113 8 8 8 8 8 8 9 0 0 0 0 7 114 23 11 11 11 11 11 20 14 14 14 15 0 0 0 0 13 14 15 0 0 0 0 13 14 15 0 0 0 0 13 14 15 0 0 0 0 13 14 15 0 0 13 14 14 14 23 11 11 12 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 15 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 21 9 0 0 0 7 22 19 11 11 11 11 21 8 8 9 0 0 0 7 8 9 0 0 0 7 8 9 0 0 0 13 14 15 0 0 0 10 11 12 0 0 10 12 0 0 10 11 12 0 0 10 11 12 0 0 13 14 15 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 12 0 7 114 14 14 14 113 9 0 16 31 11 11 11 30 18 0 10 11 11 11 11 11 11 11 11 12 0 0 0 0 0 0 0 7 22 11 11 11 21 9 0 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 0 7 22 11 11 11 21 9 0 0 0 13 23 30 17 18 0 0 0 16 17 31 20 15 0 0 10 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 11 20 14 14 14 14 14 23 11 12 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 61 44 44 44 44 44 44 44 44 61 0 0 0 0 61 44 44 44 44 44 45 61 44 44 44 44 0 0 0 0 0 0 0 0 61 0 0 0 0 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 + 0 0 0 0 0 0 0 0 0 0 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 23 11 11 11 11 12 0 0 0 57 58 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 57 58 0 0 0 7 22 11 11 11 11 11 21 8 9 0 0 0 0 0 0 0 0 0 0 0 0 7 114 23 11 19 11 11 21 8 8 8 9 0 0 0 0 7 8 9 0 0 0 0 7 8 9 0 0 0 0 7 8 9 0 0 0 0 7 8 9 0 0 7 8 8 8 22 11 11 12 0 0 0 27 28 28 28 28 28 28 28 28 29 0 0 0 0 0 0 0 7 8 8 8 8 9 0 0 7 8 8 8 9 0 0 27 28 28 28 29 0 0 7 8 8 8 9 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 20 14 15 0 0 0 0 0 10 11 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 9 0 0 0 13 14 15 0 0 10 12 0 0 10 11 12 0 0 10 11 12 0 0 7 8 9 0 0 10 11 12 0 0 10 11 12 0 0 13 14 15 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 12 0 0 7 8 8 8 9 0 0 13 23 11 11 11 20 15 0 10 11 11 11 11 11 11 11 11 30 17 18 0 0 0 0 0 0 13 14 14 14 15 0 0 0 16 31 11 30 18 0 0 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 7 114 23 11 30 17 17 17 31 11 20 113 9 0 0 13 14 23 11 11 11 11 11 11 11 12 0 0 0 0 10 11 21 8 8 8 8 8 22 11 12 0 0 0 13 14 14 14 23 11 11 11 11 11 11 11 11 11 11 12 0 0 0 61 61 44 44 44 44 44 44 44 44 61 0 0 0 0 61 44 44 44 44 44 44 61 44 44 44 44 0 0 0 0 0 0 0 0 61 61 61 61 0 7 8 8 8 8 8 8 8 8 133 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 0 0 0 0 0 0 0 132 132 8 8 8 8 8 + 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 0 0 0 7 8 8 8 9 57 58 0 0 7 22 19 11 11 11 11 11 12 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 13 23 11 11 11 11 11 20 14 113 8 8 8 8 8 8 9 0 0 0 0 7 114 23 11 11 11 11 11 20 14 14 14 15 0 0 0 0 13 14 15 0 0 0 0 13 14 15 0 0 0 0 13 14 15 0 0 0 0 13 14 15 0 0 13 14 14 14 23 11 11 12 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 15 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 13 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 21 9 0 0 0 7 22 19 11 11 11 11 21 8 8 9 0 0 0 7 8 9 0 0 0 7 8 9 0 0 0 13 14 15 0 0 0 10 11 12 0 0 10 12 0 0 10 11 12 0 0 10 11 12 0 0 13 14 15 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 12 0 7 114 14 14 14 113 9 0 16 31 11 11 11 30 18 0 10 11 11 11 11 11 11 11 11 12 0 0 0 0 0 0 0 7 22 11 11 11 21 9 0 0 0 16 17 18 0 0 0 0 0 0 0 0 0 0 0 7 22 11 11 11 21 9 0 0 0 13 23 30 17 18 0 0 0 16 17 31 20 15 0 0 10 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 11 20 14 14 14 14 14 23 11 12 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 61 44 44 44 44 44 44 44 44 61 0 0 0 0 61 44 44 44 44 44 44 61 44 44 44 44 0 0 0 0 0 0 0 0 61 0 0 0 0 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 0 0 0 13 14 14 14 15 59 60 0 0 13 23 11 11 11 11 11 11 12 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 10 11 11 11 11 11 11 11 11 20 14 14 14 14 14 14 15 0 0 0 0 13 23 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 19 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 0 0 10 19 12 0 0 10 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 10 11 11 11 11 12 0 0 16 17 17 17 18 0 0 0 0 0 0 0 0 0 16 17 17 17 18 0 0 0 0 0 0 0 0 0 0 0 0 10 11 11 11 11 11 20 15 0 0 0 13 23 11 11 11 11 11 20 14 14 15 0 0 0 13 14 15 0 0 0 13 14 15 0 0 0 10 19 12 0 0 0 10 11 12 0 0 10 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 12 0 0 10 11 11 11 11 11 12 0 13 23 11 11 11 20 15 0 0 16 31 11 30 18 0 0 10 11 11 11 11 11 30 17 17 18 0 0 0 0 0 0 0 13 23 11 11 11 20 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 23 11 11 11 20 15 0 0 0 10 11 12 0 0 0 0 0 0 0 10 11 12 0 0 10 11 11 11 11 11 11 11 11 11 12 0 0 0 0 16 17 17 17 17 17 17 17 17 17 18 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 0 0 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 11 11 11 11 11 11 11 12 0 0 0 10 11 11 11 12 59 60 0 0 10 11 11 11 11 11 11 11 12 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 10 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 10 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 0 0 0 0 10 11 11 11 11 11 11 21 8 8 8 22 11 11 11 11 11 11 11 11 11 12 0 0 0 10 11 12 0 0 0 16 17 18 0 0 0 16 17 18 0 0 0 16 17 18 0 0 16 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 16 17 18 0 0 10 11 11 11 11 11 12 0 10 11 11 11 11 11 12 0 0 0 10 11 12 0 0 0 10 11 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 16 31 11 11 11 30 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 31 11 11 11 30 18 0 0 0 16 31 12 0 0 0 0 0 0 0 10 30 18 0 0 10 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 16 17 17 17 17 17 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 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 11 11 11 11 11 11 11 12 0 0 0 10 11 11 11 12 59 60 0 0 10 11 11 11 11 11 11 11 12 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 59 60 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 11 11 11 11 11 11 11 11 11 11 11 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 0 0 10 11 12 0 0 10 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 10 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 0 0 0 0 10 11 11 11 11 11 11 20 14 14 14 23 11 11 11 11 11 11 11 11 11 12 0 0 0 10 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 10 11 11 11 11 11 12 0 10 11 11 11 11 11 12 0 0 0 10 11 12 0 0 0 10 11 11 11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 16 17 17 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 17 17 17 18 0 0 0 0 0 10 12 0 0 0 0 0 0 0 10 12 0 0 0 10 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 |
From: Ricardo C. <rm...@us...> - 2004-10-23 13:18:35
|
Update of /cvsroot/super-tux/supertux/data/levels/worldmap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25761/data/levels/worldmap Modified Files: icyisland.stwm Log Message: Bugfix: Level 6 spot would stay always red. Fixed by Richard Smith <up...@me...>. Index: icyisland.stwm =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/worldmap/icyisland.stwm,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- icyisland.stwm 6 Oct 2004 21:38:54 -0000 1.10 +++ icyisland.stwm 23 Oct 2004 13:18:26 -0000 1.11 @@ -71,7 +71,7 @@ (y 9) (name "world1/level6.stl")) (level - (x 11) + (x 14) (y 9) (name "world1/level7.stl")) (level |
From: Ricardo C. <rm...@us...> - 2004-10-23 11:30:21
|
Update of /cvsroot/super-tux/supertux/lib/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29854/lib/video Modified Files: surface.cpp Log Message: Bugfix: Fixed the visible black pixel, for instance, when jumping facing left. Index: surface.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/video/surface.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- surface.cpp 20 Oct 2004 21:08:51 -0000 1.12 +++ surface.cpp 23 Oct 2004 11:30:12 -0000 1.13 @@ -276,7 +276,7 @@ src.h = dst.h = sur_copy->h; for(int x = 0; x < sur_copy->w; x++) { - src.x = x; dst.x = sur_copy->w - x; + src.x = x; dst.x = sur_copy->w-1 - x; SDL_BlitSurface(sur_copy, &src, surface, &dst); } @@ -784,9 +784,6 @@ int SurfaceOpenGL::draw_stretched(float x, float y, int sw, int sh, Uint8 alpha, Uint32 effect) { - if(effect & SEMI_TRANSPARENT) - alpha = 128; - float pw = power_of_two(sw); float ph = power_of_two(sh); |
From: Ricardo C. <rm...@us...> - 2004-10-22 22:50:19
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8003/src Modified Files: badguy.cpp Log Message: Bugfix: dying variable was not being initialized, thus resulting in those zombie badguys. Index: badguy.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/badguy.cpp,v retrieving revision 1.133 retrieving revision 1.134 diff -u -d -r1.133 -r1.134 --- badguy.cpp 21 Oct 2004 21:40:33 -0000 1.133 +++ badguy.cpp 22 Oct 2004 22:50:10 -0000 1.134 @@ -210,6 +210,7 @@ frozen_timer.init(true); timer.init(true); + dying = DYING_NOT; seen = true; dir = activation_dir; @@ -904,7 +905,7 @@ if(!seen) return; - + switch (kind) { case BAD_MRICEBLOCK: @@ -1226,9 +1227,6 @@ void BadGuy::collision(void *p_c_object, int c_object, CollisionType type) { - if(!seen) - return; - BadGuy* pbad_c = NULL; Bullet* pbullet_c = NULL; |
From: Ricardo C. <rm...@us...> - 2004-10-21 22:05:18
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14030/src Modified Files: title.cpp Log Message: Fade on credits. Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.126 retrieving revision 1.127 diff -u -d -r1.126 -r1.127 --- title.cpp 19 Oct 2004 16:25:50 -0000 1.126 +++ title.cpp 21 Oct 2004 22:05:08 -0000 1.127 @@ -404,7 +404,9 @@ resume_demo(); break; case MNID_CREDITS: + fadeout(500); display_text_file("CREDITS", SCROLL_SPEED_CREDITS, white_big_text , white_text, white_small_text, blue_text ); + fadeout(500); Menu::set_current(main_menu); break; case MNID_QUITMAINMENU: |