[Scummvm-cvs-logs] SF.net SVN: scummvm:[39132] scummvm/trunk

jvprat at users.sourceforge.net jvprat at users.sourceforge.net
Thu Mar 5 13:04:59 CET 2009


Revision: 39132
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39132&view=rev
Author:   jvprat
Date:     2009-03-05 12:04:58 +0000 (Thu, 05 Mar 2009)

Log Message:
-----------
Renamed MetaEngine::getCopyright() to getOriginalCopyright() to better match the meaning of the returned string, as discussed some time ago in scummvm-devel

Modified Paths:
--------------
    scummvm/trunk/engines/agi/detection.cpp
    scummvm/trunk/engines/agos/detection.cpp
    scummvm/trunk/engines/cine/detection.cpp
    scummvm/trunk/engines/cruise/detection.cpp
    scummvm/trunk/engines/drascula/detection.cpp
    scummvm/trunk/engines/gob/detection.cpp
    scummvm/trunk/engines/groovie/detection.cpp
    scummvm/trunk/engines/igor/detection.cpp
    scummvm/trunk/engines/kyra/detection.cpp
    scummvm/trunk/engines/lure/detection.cpp
    scummvm/trunk/engines/m4/detection.cpp
    scummvm/trunk/engines/made/detection.cpp
    scummvm/trunk/engines/metaengine.h
    scummvm/trunk/engines/parallaction/detection.cpp
    scummvm/trunk/engines/queen/queen.cpp
    scummvm/trunk/engines/saga/detection.cpp
    scummvm/trunk/engines/sci/detection.cpp
    scummvm/trunk/engines/scumm/detection.cpp
    scummvm/trunk/engines/sky/detection.cpp
    scummvm/trunk/engines/sword1/detection.cpp
    scummvm/trunk/engines/sword2/sword2.cpp
    scummvm/trunk/engines/tinsel/detection.cpp
    scummvm/trunk/engines/touche/detection.cpp
    scummvm/trunk/engines/tucker/detection.cpp
    scummvm/trunk/gui/about.cpp

Modified: scummvm/trunk/engines/agi/detection.cpp
===================================================================
--- scummvm/trunk/engines/agi/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/agi/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -835,7 +835,7 @@
 	virtual const char *getName() const {
 		return "AGI preAGI + v2 + v3 Engine";
 	}
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Sierra AGI Engine (C) Sierra On-Line Software";
 	}
 

Modified: scummvm/trunk/engines/agos/detection.cpp
===================================================================
--- scummvm/trunk/engines/agos/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/agos/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -107,7 +107,7 @@
 		return "AGOS";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "AGOS (C) Adventure Soft";
 	}
 

Modified: scummvm/trunk/engines/cine/detection.cpp
===================================================================
--- scummvm/trunk/engines/cine/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/cine/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -530,7 +530,7 @@
 		return "Cinematique evo 1 engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Future Wars & Operation Stealth (C) Delphine Software";
 	}
 

Modified: scummvm/trunk/engines/cruise/detection.cpp
===================================================================
--- scummvm/trunk/engines/cruise/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/cruise/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -173,7 +173,7 @@
 		return "Cinematique evo 2 engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Cruise for a Corpse (C) Delphine Software";
 	}
 

Modified: scummvm/trunk/engines/drascula/detection.cpp
===================================================================
--- scummvm/trunk/engines/drascula/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/drascula/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -259,7 +259,7 @@
 		return "Drascula Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Drascula Engine (C) 2000 Alcachofa Soft, 1996 (C) Digital Dreams Multimedia, 1994 (C) Emilio de Paz";
 	}
 

Modified: scummvm/trunk/engines/gob/detection.cpp
===================================================================
--- scummvm/trunk/engines/gob/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/gob/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -2283,7 +2283,7 @@
 		return "Gob Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Goblins Games (C) Coktel Vision";
 	}
 

Modified: scummvm/trunk/engines/groovie/detection.cpp
===================================================================
--- scummvm/trunk/engines/groovie/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/groovie/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -191,7 +191,7 @@
 		return "Groovie Engine";
 	}
 
-	const char *getCopyright() const {
+	const char *getOriginalCopyright() const {
 		return "Groovie Engine (C) 1990-1996 Trilobyte";
 	}
 

Modified: scummvm/trunk/engines/igor/detection.cpp
===================================================================
--- scummvm/trunk/engines/igor/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/igor/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -112,7 +112,7 @@
 		return "Igor: Objective Uikokahonia";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Igor: Objective Uikokahonia (C) Pendulo Studios";
 	}
 

Modified: scummvm/trunk/engines/kyra/detection.cpp
===================================================================
--- scummvm/trunk/engines/kyra/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/kyra/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -1065,7 +1065,7 @@
 		return "Legend of Kyrandia Engine";
 	}
 
-	const char *getCopyright() const {
+	const char *getOriginalCopyright() const {
 		return "The Legend of Kyrandia (C) Westwood Studios";
 	}
 

Modified: scummvm/trunk/engines/lure/detection.cpp
===================================================================
--- scummvm/trunk/engines/lure/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/lure/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -182,7 +182,7 @@
 		return "Lure of the Temptress Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Lure of the Temptress (C) Revolution";
 	}
 

Modified: scummvm/trunk/engines/m4/detection.cpp
===================================================================
--- scummvm/trunk/engines/m4/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/m4/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -387,7 +387,7 @@
 		return "MADS/M4 engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Riddle of Master Lu & Orion Burger (C) Sanctuary Woods";
 	}
 

Modified: scummvm/trunk/engines/made/detection.cpp
===================================================================
--- scummvm/trunk/engines/made/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/made/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -360,7 +360,7 @@
 		return "MADE Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "MADE Engine (C) Activision";
 	}
 

Modified: scummvm/trunk/engines/metaengine.h
===================================================================
--- scummvm/trunk/engines/metaengine.h	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/metaengine.h	2009-03-05 12:04:58 UTC (rev 39132)
@@ -51,8 +51,8 @@
 public:
 	virtual ~MetaEngine() {}
 
-	/** Returns some copyright information about the engine. */
-	virtual const char *getCopyright() const = 0;
+	/** Returns some copyright information about the original engine. */
+	virtual const char *getOriginalCopyright() const = 0;
 
 	/** Returns a list of games supported by this engine. */
 	virtual GameList getSupportedGames() const = 0;

Modified: scummvm/trunk/engines/parallaction/detection.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/parallaction/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -240,7 +240,7 @@
 		return "Parallaction engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Nippon Safes Inc. (C) Dynabyte";
 	}
 

Modified: scummvm/trunk/engines/queen/queen.cpp
===================================================================
--- scummvm/trunk/engines/queen/queen.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/queen/queen.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -56,7 +56,7 @@
 class QueenMetaEngine : public MetaEngine {
 public:
 	virtual const char *getName() const;
-	virtual const char *getCopyright() const;
+	virtual const char *getOriginalCopyright() const;
 
 	virtual bool hasFeature(MetaEngineFeature f) const;
 	virtual GameList getSupportedGames() const;
@@ -72,7 +72,7 @@
 	return "Flight of the Amazon Queen";
 }
 
-const char *QueenMetaEngine::getCopyright() const {
+const char *QueenMetaEngine::getOriginalCopyright() const {
 	return "Flight of the Amazon Queen (C) John Passfield and Steve Stamatiadis";
 }
 

Modified: scummvm/trunk/engines/saga/detection.cpp
===================================================================
--- scummvm/trunk/engines/saga/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/saga/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -149,7 +149,7 @@
 ;
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Inherit the Earth (C) Wyrmkeep Entertainment";
 	}
 

Modified: scummvm/trunk/engines/sci/detection.cpp
===================================================================
--- scummvm/trunk/engines/sci/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/sci/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -2264,7 +2264,7 @@
 		return "SCI Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Sierra's Creative Interpreter (C) Sierra Online";
 	}
 

Modified: scummvm/trunk/engines/scumm/detection.cpp
===================================================================
--- scummvm/trunk/engines/scumm/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/scumm/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -681,7 +681,7 @@
 class ScummMetaEngine : public MetaEngine {
 public:
 	virtual const char *getName() const;
-	virtual const char *getCopyright() const;
+	virtual const char *getOriginalCopyright() const;
 
 	virtual bool hasFeature(MetaEngineFeature f) const;
 	virtual GameList getSupportedGames() const;
@@ -976,7 +976,7 @@
 		"]";
 }
 
-const char *ScummMetaEngine::getCopyright() const {
+const char *ScummMetaEngine::getOriginalCopyright() const {
 	return "LucasArts SCUMM Games (C) LucasArts\n"
 	       "Humongous SCUMM Games (C) Humongous";
 }

Modified: scummvm/trunk/engines/sky/detection.cpp
===================================================================
--- scummvm/trunk/engines/sky/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/sky/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -64,7 +64,7 @@
 class SkyMetaEngine : public MetaEngine {
 public:
 	virtual const char *getName() const;
-	virtual const char *getCopyright() const;
+	virtual const char *getOriginalCopyright() const;
 
 	virtual bool hasFeature(MetaEngineFeature f) const;
 	virtual GameList getSupportedGames() const;
@@ -82,7 +82,7 @@
 	return "Beneath a Steel Sky";
 }
 
-const char *SkyMetaEngine::getCopyright() const {
+const char *SkyMetaEngine::getOriginalCopyright() const {
 	return "Beneath a Steel Sky (C) Revolution";
 }
 

Modified: scummvm/trunk/engines/sword1/detection.cpp
===================================================================
--- scummvm/trunk/engines/sword1/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/sword1/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -79,7 +79,7 @@
 	virtual const char *getName() const {
 		return "Broken Sword";
 	}
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Broken Sword Games (C) Revolution";
 	}
 

Modified: scummvm/trunk/engines/sword2/sword2.cpp
===================================================================
--- scummvm/trunk/engines/sword2/sword2.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/sword2/sword2.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -76,7 +76,7 @@
 	virtual const char *getName() const {
 		return "Broken Sword 2";
 	}
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Broken Sword Games (C) Revolution";
 	}
 

Modified: scummvm/trunk/engines/tinsel/detection.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/tinsel/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -448,7 +448,7 @@
 		return "Tinsel Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Tinsel (C) Psygnosis";
 	}
 

Modified: scummvm/trunk/engines/touche/detection.cpp
===================================================================
--- scummvm/trunk/engines/touche/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/touche/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -133,7 +133,7 @@
 		return "Touche Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Touche: The Adventures of the 5th Musketeer (C) Clipper Software";
 	}
 

Modified: scummvm/trunk/engines/tucker/detection.cpp
===================================================================
--- scummvm/trunk/engines/tucker/detection.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/engines/tucker/detection.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -127,7 +127,7 @@
 		return "Tucker Engine";
 	}
 
-	virtual const char *getCopyright() const {
+	virtual const char *getOriginalCopyright() const {
 		return "Bud Tucker in Double Trouble (C) Merit Studios";
 	}
 

Modified: scummvm/trunk/gui/about.cpp
===================================================================
--- scummvm/trunk/gui/about.cpp	2009-03-04 14:59:53 UTC (rev 39131)
+++ scummvm/trunk/gui/about.cpp	2009-03-05 12:04:58 UTC (rev 39132)
@@ -138,7 +138,7 @@
 	  addLine(str.c_str());
 
 	  str = "C2";
-	  str += (**iter)->getCopyright();
+	  str += (**iter)->getOriginalCopyright();
 	  addLine(str.c_str());
 
 	  //addLine("");


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