[Scummvm-cvs-logs] scummvm master -> a8da884be5bdf25b396aa189960217e12f56ef4e

Strangerke Strangerke at scummvm.org
Mon Nov 28 00:14:43 CET 2011


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
c13668ca7e TSAGE: R2R - Scene 2350: Add Speakers
a8da884be5 CGE: Set supported


Commit: c13668ca7eb5214b6ef2ae58a99cb7c3a59a4615
    https://github.com/scummvm/scummvm/commit/c13668ca7eb5214b6ef2ae58a99cb7c3a59a4615
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-11-27T15:13:35-08:00

Commit Message:
TSAGE: R2R - Scene 2350: Add Speakers

Changed paths:
    engines/tsage/ringworld2/ringworld2_speakers.cpp
    engines/tsage/ringworld2/ringworld2_speakers.h



diff --git a/engines/tsage/ringworld2/ringworld2_speakers.cpp b/engines/tsage/ringworld2/ringworld2_speakers.cpp
index 3c9a84c..2875652 100644
--- a/engines/tsage/ringworld2/ringworld2_speakers.cpp
+++ b/engines/tsage/ringworld2/ringworld2_speakers.cpp
@@ -455,6 +455,33 @@ void SpeakerSoldier300::proc15() {
 		_object1.animate(ANIM_MODE_5, this);
 	}
 }
+
+/*--------------------------------------------------------------------------*/
+
+SpeakerQuinn2350::SpeakerQuinn2350(): VisualSpeaker() {
+	_speakerName = "QUINN";
+	_color1 = 60;
+	_color2 = 0;
+	_fieldF6 = 0;
+	_textWidth = 300;
+	_hideObjects = false;
+	_object2 = NULL;
+	_displayMode = 1;
+	_numFrames = 0;
+}
+
+SpeakerPharisha2350::SpeakerPharisha2350(): VisualSpeaker() {
+	_speakerName = "PHARISHA";
+	_color1 = 151;
+	_color2 = 0;
+	_fieldF6 = 0;
+	_textWidth = 300;
+	_hideObjects = false;
+	_object2 = NULL;
+	_displayMode = 1;
+	_numFrames = 0;
+}
+
 } // End of namespace Ringworld2
 
 } // End of namespace TsAGE
diff --git a/engines/tsage/ringworld2/ringworld2_speakers.h b/engines/tsage/ringworld2/ringworld2_speakers.h
index 9797254..0d297c4 100644
--- a/engines/tsage/ringworld2/ringworld2_speakers.h
+++ b/engines/tsage/ringworld2/ringworld2_speakers.h
@@ -115,8 +115,21 @@ public:
 	virtual void proc15();
 };
 
-} // End of namespace Ringworld2
+class SpeakerQuinn2350: public VisualSpeaker {
+public:
+	SpeakerQuinn2350();
 
+	virtual Common::String getClassName() { return "SpeakerQuinn2350"; }
+};
+
+class SpeakerPharisha2350: public VisualSpeaker {
+public:
+	SpeakerPharisha2350();
+
+	virtual Common::String getClassName() { return "SpeakerPharisha2350"; }
+};
+
+} // End of namespace Ringworld2
 } // End of namespace TsAGE
 
 #endif


Commit: a8da884be5bdf25b396aa189960217e12f56ef4e
    https://github.com/scummvm/scummvm/commit/a8da884be5bdf25b396aa189960217e12f56ef4e
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-11-27T15:13:36-08:00

Commit Message:
CGE: Set supported

Changed paths:
    NEWS
    configure



diff --git a/NEWS b/NEWS
index d42f0d6..a22404d 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,9 @@ For a more comprehensive changelog of the latest experimental code, see:
         https://github.com/scummvm/scummvm/commits/
 
 1.5.0 (????-??-??)
+ New Games:
+   - Added support for Soltys.
+
  SDL ports:
    - Added support for OpenGL (GSoC Task).
 
diff --git a/configure b/configure
index edea8ee..e8f1fa8 100755
--- a/configure
+++ b/configure
@@ -83,7 +83,7 @@ add_engine he "HE71+ games" yes
 add_engine agi "AGI" yes
 add_engine agos "AGOS" yes "agos2"
 add_engine agos2 "AGOS 2 games" yes
-add_engine cge "CGE" no
+add_engine cge "CGE" yes
 add_engine cine "Cinematique evo 1" yes
 add_engine composer "Magic Composer" no
 add_engine cruise "Cinematique evo 2" yes






More information about the Scummvm-git-logs mailing list