[Scummvm-cvs-logs] SF.net SVN: scummvm:[49893] scummvm/branches/gsoc2010-testbed/engines/ testbed/graphics.cpp

sud03r at users.sourceforge.net sud03r at users.sourceforge.net
Tue Jun 15 22:57:21 CEST 2010


Revision: 49893
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49893&view=rev
Author:   sud03r
Date:     2010-06-15 20:57:20 +0000 (Tue, 15 Jun 2010)

Log Message:
-----------
some changes in the display texts

Modified Paths:
--------------
    scummvm/branches/gsoc2010-testbed/engines/testbed/graphics.cpp

Modified: scummvm/branches/gsoc2010-testbed/engines/testbed/graphics.cpp
===================================================================
--- scummvm/branches/gsoc2010-testbed/engines/testbed/graphics.cpp	2010-06-15 20:45:13 UTC (rev 49892)
+++ scummvm/branches/gsoc2010-testbed/engines/testbed/graphics.cpp	2010-06-15 20:57:20 UTC (rev 49893)
@@ -123,8 +123,7 @@
 				}
 
 				switch (event.type) {
-					case Common::EVENT_MOUSEMOVE:
-					printf("Mouse Move\n");
+				case Common::EVENT_MOUSEMOVE:
 					break;
 				case Common::EVENT_LBUTTONDOWN:
 				case Common::EVENT_RBUTTONDOWN:
@@ -164,7 +163,7 @@
 	
 	Testsuite::clearScreen();
 	Testsuite::writeOnScreen("Mouse Moved to (100, 100)", pt);
-	
+	g_system->delayMillis(1000);	
 }
 
 void GFXtests::unsetMouse() {
@@ -271,7 +270,7 @@
 			
 		g_system->delayMillis(1000);
 		
-		prompt = " Which mode do you see now ?  ";
+		prompt = "  Which screen mode do you see now ?   ";
 		
 		if (!Testsuite::handleInteractiveInput(prompt, "Fullscreen", "Windowed", shouldSelect)) {
 			// User selected incorrect mode
@@ -285,7 +284,7 @@
 		
 		g_system->delayMillis(1000);
 		
-		prompt = "This should be your initial state.Is it?";
+		prompt = "This should be your initial state. Is it?";
 		
 		if (!Testsuite::handleInteractiveInput(prompt, "Yes, it is", "Nopes", shouldSelect)) {
 			// User selected incorrect mode
@@ -387,7 +386,7 @@
 	Testsuite::clearScreen();
 
 	// Testing with game Palette
-	Testsuite::writeOnScreen("Using Game Palette to render the cursor", pt);
+	Testsuite::writeOnScreen("Using Game Palette to render the cursor, Click to finish", pt);
 	GFXTestSuite::setCustomColor(255, 0, 0);
 	setupMouseLoop(true);
 	// done. Pop cursor now
@@ -429,7 +428,7 @@
 	Common::Rect rect(x, y, x+40, y+20);
 	Testsuite::clearScreen(rect);
 	
-	if (Testsuite::handleInteractiveInput("Did the test worked as expected?", "Yes", "No", kOptionRight)) {
+	if (Testsuite::handleInteractiveInput("Did the test worked as you were expecting?", "Yes", "No", kOptionRight)) {
 		return false;
 	}
 
@@ -472,7 +471,7 @@
 		Testsuite::displayMessage("feature not supported");
 	}
 	
-	if (Testsuite::handleInteractiveInput("Did the test worked as expected?", "Yes", "No", kOptionRight)) {
+	if (Testsuite::handleInteractiveInput("Did the test worked as you were expecting?", "Yes", "No", kOptionRight)) {
 		return false;
 	}
 
@@ -523,9 +522,9 @@
 		g_system->setShakePos(0);
 		g_system->updateScreen();
 	}
-	g_system->delayMillis(1000);
+	g_system->delayMillis(1500);
 
-	if (Testsuite::handleInteractiveInput("Did the test worked as expected?", "Yes", "No", kOptionRight)) {
+	if (Testsuite::handleInteractiveInput("Did the test worked as you were expecting?", "Yes", "No", kOptionRight)) {
 		return false;
 	}
 	Testsuite::clearScreen();
@@ -569,8 +568,8 @@
 	
 	g_system->clearFocusRectangle();
 
-	if (Testsuite::handleInteractiveInput("Do you see a variation in focus?", "Yes", "No", kOptionRight)) {
-		printf("LOG: Focus Rectangle feature doesn't works. Check platform.");
+	if (Testsuite::handleInteractiveInput("Did you noticed a variation in focus?", "Yes", "No", kOptionRight)) {
+		printf("LOG: Focus Rectangle feature doesn't works. Check platform.\n");
 	}
 
 	return true;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list