[Scummvm-git-logs] scummvm master -> c1accefe5c9f2bd183f3e1136a4c5a1162ad6939

criezy criezy at scummvm.org
Tue Jan 23 23:52:02 CET 2018


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:
58e9d4a77c DEVTOOLS: Add create_supernova to devtools README
c1accefe5c BUILD: Add supernova.dat to install rules


Commit: 58e9d4a77c49edfdd81c12c8874e6c45d200245d
    https://github.com/scummvm/scummvm/commit/58e9d4a77c49edfdd81c12c8874e6c45d200245d
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2018-01-23T22:28:45Z

Commit Message:
DEVTOOLS: Add create_supernova to devtools README

Changed paths:
    devtools/README


diff --git a/devtools/README b/devtools/README
index 751a25a..5c4d494 100644
--- a/devtools/README
+++ b/devtools/README
@@ -84,6 +84,12 @@ create_project (LordHoto, Littleboy)
     any arguments for further help.
 
 
+create_supernova (criezy)
+----------------
+    Creates supernova.dat files which contains static data contained in the
+    original executable as well as translations into additional languages.
+
+
 create_toon (Strangerke)
 -----------
     This tool creates toon.dat, which contains all the game's texts 


Commit: c1accefe5c9f2bd183f3e1136a4c5a1162ad6939
    https://github.com/scummvm/scummvm/commit/c1accefe5c9f2bd183f3e1136a4c5a1162ad6939
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2018-01-23T22:50:39Z

Commit Message:
BUILD: Add supernova.dat to install rules

Changed paths:
    Makefile.common
    devtools/create_project/xcode.cpp
    dists/engine-data/README
    dists/irix/scummvm.idb
    dists/scummvm.rc
    dists/scummvm.rc.in


diff --git a/Makefile.common b/Makefile.common
index 10ba538..161f50f 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -287,6 +287,9 @@ endif
 ifdef ENABLE_SKY
 DIST_FILES_ENGINEDATA+=sky.cpt
 endif
+ifdef ENABLE_SUPERNOVA
+DIST_FILES_ENGINEDATA+=supernova.dat
+endif
 ifdef ENABLE_TEENAGENT
 DIST_FILES_ENGINEDATA+=teenagent.dat
 endif
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index d403243..fb4dc5e 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -757,6 +757,7 @@ XcodeProvider::ValueList& XcodeProvider::getResourceFiles() const {
 		files.push_back("dists/engine-data/neverhood.dat");
 		files.push_back("dists/engine-data/queen.tbl");
 		files.push_back("dists/engine-data/sky.cpt");
+		files.push_back("dists/engine-data/supernova.dat");
 		files.push_back("dists/engine-data/teenagent.dat");
 		files.push_back("dists/engine-data/titanic.dat");
 		files.push_back("dists/engine-data/tony.dat");
diff --git a/dists/engine-data/README b/dists/engine-data/README
index 954bcbd..75d767c 100644
--- a/dists/engine-data/README
+++ b/dists/engine-data/README
@@ -40,6 +40,10 @@ mp3/ogg/flac encoded need the datafile.
 sky.cpt:
 TODO
 
+supernova.dat
+File created partially by extracting the German text from the original source
+code. It also contains the custom-made English translation.
+
 teenagent.dat
 TODO
 
diff --git a/dists/irix/scummvm.idb b/dists/irix/scummvm.idb
index 6a613bb..cfd9463 100644
--- a/dists/irix/scummvm.idb
+++ b/dists/irix/scummvm.idb
@@ -12,6 +12,7 @@ f 0644 root sys usr/ScummVM/share/scummvm/pred.dic pred.dic scummvm.sw.eoe
 f 0644 root sys usr/ScummVM/share/scummvm/queen.tbl queen.tbl scummvm.sw.eoe
 f 0644 root sys usr/ScummVM/share/scummvm/scummmodern.zip scummmodern.zip scummvm.sw.eoe
 f 0644 root sys usr/ScummVM/share/scummvm/sky.cpt sky.cpt scummvm.sw.eoe
+f 0644 root sys usr/ScummVM/share/scummvm/supernova.dat scummvm.sw.eoe
 f 0644 root sys usr/ScummVM/share/scummvm/teenagent.dat teenagent.dat scummvm.sw.eoe
 l 0000 root sys usr/bin/scummvm scummvm scummvm.sw.eoe symval(/usr/ScummVM/scummvm)
 f 0644 root sys usr/lib/filetype/local/ScummVM.ftr ScummVM.ftr scummvm.sw.eoe exitop('if test -r $rbase/usr/lib/filetype/Makefile ; then chroot $rbase /sbin/sh -c "cd /usr/lib/filetype ; make -u > /dev/null" ; fi')
diff --git a/dists/scummvm.rc b/dists/scummvm.rc
index a5b6eb2..d76e168 100644
--- a/dists/scummvm.rc
+++ b/dists/scummvm.rc
@@ -53,6 +53,9 @@ queen.tbl              FILE    "dists/engine-data/queen.tbl"
 #if ENABLE_SKY        == STATIC_PLUGIN
 sky.cpt                FILE    "dists/engine-data/sky.cpt"
 #endif
+#if RNABLE_SUPERNOVA  == STATIC_PLUGIN
+supernova.dat          FILE    "dists/engine-data/supernova.dat"
+#endif
 #if ENABLE_TEENAGENT  == STATIC_PLUGIN
 teenagent.dat          FILE    "dists/engine-data/teenagent.dat"
 #endif
diff --git a/dists/scummvm.rc.in b/dists/scummvm.rc.in
index d960cc2..f84418d 100644
--- a/dists/scummvm.rc.in
+++ b/dists/scummvm.rc.in
@@ -53,6 +53,9 @@ queen.tbl              FILE    "dists/engine-data/queen.tbl"
 #if ENABLE_SKY        == STATIC_PLUGIN
 sky.cpt                FILE    "dists/engine-data/sky.cpt"
 #endif
+#if RNABLE_SUPERNOVA  == STATIC_PLUGIN
+supernova.dat          FILE    "dists/engine-data/supernova.dat"
+#endif
 #if ENABLE_TEENAGENT  == STATIC_PLUGIN
 teenagent.dat          FILE    "dists/engine-data/teenagent.dat"
 #endif





More information about the Scummvm-git-logs mailing list