pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] r3240 - in trunk/pingus: . data/po src src/worldmap


From: grumbel at BerliOS
Subject: [Pingus-CVS] r3240 - in trunk/pingus: . data/po src src/worldmap
Date: Sun, 23 Sep 2007 15:03:57 +0200

Author: grumbel
Date: 2007-09-23 15:03:56 +0200 (Sun, 23 Sep 2007)
New Revision: 3240

Modified:
   trunk/pingus/TODO
   trunk/pingus/data/po/de.po
   trunk/pingus/src/pingus_menu_manager.cpp
   trunk/pingus/src/result_screen.cpp
   trunk/pingus/src/start_screen.cpp
   trunk/pingus/src/worldmap/manager.cpp
Log:
- inserted some SDL_Delay() to stop menu screen from using to much CPU
- spelling fix in de.po

Modified: trunk/pingus/TODO
===================================================================
--- trunk/pingus/TODO   2007-09-23 12:20:36 UTC (rev 3239)
+++ trunk/pingus/TODO   2007-09-23 13:03:56 UTC (rev 3240)
@@ -91,6 +91,18 @@
 Important:
 ==========
 
+- FPS: issues: 
+
+  - Editor:     27fps - 20%
+  - Main Menu:  30fps - 50%
+  - Worldmap:   50fps - 22%
+  - Starscreen: 19fps - 14%
+  - Game:       32fps - 14%
+  - EndScreen:  50fps - 19%
+
+- Loading data/levels/playable/chouser02.pingus in Editor and saving
+  it again causes the background to be at the wrong position
+
 - frameskip seems broken
 
 - remove verbose

Modified: trunk/pingus/data/po/de.po
===================================================================
--- trunk/pingus/data/po/de.po  2007-09-23 12:20:36 UTC (rev 3239)
+++ trunk/pingus/data/po/de.po  2007-09-23 13:03:56 UTC (rev 3240)
@@ -8,7 +8,7 @@
 "Project-Id-Version: Pingus 0.6.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-09-23 02:23+0200\n"
-"PO-Revision-Date: 2007-09-23 02:29+0200\n"
+"PO-Revision-Date: 2007-09-23 14:21+0200\n"
 "Last-Translator: David Philippi <address@hidden>\n"
 "Language-Team: David Philippi <address@hidden>, Ingo Ruhnke <address@hidden"
 "de>, Giray Devlet <address@hidden>\n"
@@ -1147,10 +1147,7 @@
 "Once again it's time to combine the stuff you have learned in your previous "
 "levels. Blast your way free and make sure you also keep the rest of the "
 "Pingus under control. The Blocker action will be helpful. "
-msgstr ""
-"Wieder ist es an der Zeit die Dinge die Du bereits gelernt hast zu "
-"verbinden. Sprenge Dir den Weg frei und achte darauf, dass du auch die "
-"restlichen Pingu unter Kontrolle h�llst. Der Blocker wird Dir helfen. "
+msgstr "Wieder ist es an der Zeit die Dinge die Du bereits gelernt hast zu 
verbinden. Sprenge Dir den Weg frei und achte darauf, dass du auch die 
restlichen Pingu unter Kontrolle h�lst. Der Blocker wird Dir helfen. "
 
 #: data/levels/tutorial/snow15-grumbel.pingus:5
 msgid "Climb, Climber,... Boom!"

Modified: trunk/pingus/src/pingus_menu_manager.cpp
===================================================================
--- trunk/pingus/src/pingus_menu_manager.cpp    2007-09-23 12:20:36 UTC (rev 
3239)
+++ trunk/pingus/src/pingus_menu_manager.cpp    2007-09-23 13:03:56 UTC (rev 
3240)
@@ -77,6 +77,8 @@
   for (MenuStackIter i = menu_stack.begin (); i != menu_stack.end (); ++i)
     (*i)->draw(gc);
 
+  SDL_Delay(10);
+
   return true;
 }
 

Modified: trunk/pingus/src/result_screen.cpp
===================================================================
--- trunk/pingus/src/result_screen.cpp  2007-09-23 12:20:36 UTC (rev 3239)
+++ trunk/pingus/src/result_screen.cpp  2007-09-23 13:03:56 UTC (rev 3240)
@@ -246,6 +246,8 @@
 
   gc.print_left(Fonts::chalk_normal,  left_x, (y+=30), _("Time left: "));
   gc.print_right(Fonts::chalk_normal, right_x, y, time_str);
+
+  SDL_Delay(10);
 }
 
 ResultScreen::ResultScreen(Result arg_result)

Modified: trunk/pingus/src/start_screen.cpp
===================================================================
--- trunk/pingus/src/start_screen.cpp   2007-09-23 12:20:36 UTC (rev 3239)
+++ trunk/pingus/src/start_screen.cpp   2007-09-23 13:03:56 UTC (rev 3240)
@@ -178,7 +178,7 @@
   if (maintainer_mode)
     gc.print_left(Fonts::chalk_small, 110, 430, _("Filename: ") + 
plf.get_resname());
 
-  SDL_Delay(30);
+  SDL_Delay(10);
 }
 
 const std::string&

Modified: trunk/pingus/src/worldmap/manager.cpp
===================================================================
--- trunk/pingus/src/worldmap/manager.cpp       2007-09-23 12:20:36 UTC (rev 
3239)
+++ trunk/pingus/src/worldmap/manager.cpp       2007-09-23 13:03:56 UTC (rev 
3240)
@@ -346,6 +346,7 @@
     gc.draw_fillrect(cliprect.right, cliprect.top, Display::get_width(), 
cliprect.bottom,
                  border_color);
   }
+  SDL_Delay(10);
 }
 
 void





reply via email to

[Prev in Thread] Current Thread [Next in Thread]