stratagus-cvs
[Top][All Lists]
Advanced

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

[Stratagus-CVS] stratagus/doc/ccl ccl-index.html config.html so...


From: Jimmy Salmon
Subject: [Stratagus-CVS] stratagus/doc/ccl ccl-index.html config.html so...
Date: Fri, 31 Oct 2003 17:31:22 -0500

CVSROOT:        /cvsroot/stratagus
Module name:    stratagus
Branch:         
Changes by:     Jimmy Salmon <address@hidden>   03/10/31 17:31:22

Modified files:
        doc/ccl        : ccl-index.html config.html sound.html 

Log message:
        Updated for set-title-screens

Patches:
Index: stratagus/doc/ccl/ccl-index.html
diff -u stratagus/doc/ccl/ccl-index.html:1.49 
stratagus/doc/ccl/ccl-index.html:1.50
--- stratagus/doc/ccl/ccl-index.html:1.49       Wed Oct 29 13:51:08 2003
+++ stratagus/doc/ccl/ccl-index.html    Fri Oct 31 17:31:20 2003
@@ -506,9 +506,7 @@
 <dd></dd>
 <dt><a href="game.html#set-this-player!">set-this-player!</a></dt>
 <dd></dd>
-<dt><a href="sound.html#set-title-music!">set-title-music!</a></dt>
-<dd></dd>
-<dt><a href="config.html#set-title-screen!">set-title-screen!</a></dt>
+<dt><a href="config.html#set-title-screens!">set-title-screens!</a></dt>
 <dd></dd>
 <dt><a href="config.html#set-training-queue!">set-training-queue!</a></dt>
 <dd></dd>
@@ -579,7 +577,7 @@
 <!-- SCRIPT END -->
 </dl>
 
-Last changed: $Id: ccl-index.html,v 1.49 2003/10/29 18:51:08 pludov Exp $<br>
+Last changed: $Id: ccl-index.html,v 1.50 2003/10/31 22:31:20 jsalmon3 Exp $<br>
 All trademarks and copyrights on this page are owned by their respective 
owners.
 <address>(c) 2002-2003 by <a href="http://stratagus.org";>
 The Stratagus Project</a></address></body></html>
Index: stratagus/doc/ccl/config.html
diff -u stratagus/doc/ccl/config.html:1.32 stratagus/doc/ccl/config.html:1.33
--- stratagus/doc/ccl/config.html:1.32  Sun Oct 26 14:46:04 2003
+++ stratagus/doc/ccl/config.html       Fri Oct 31 17:31:21 2003
@@ -102,7 +102,7 @@
 <a href="#set-speed-train!">set-speed-train!</a>
 <a href="#set-speed-upgrade!">set-speed-upgrade!</a>
 <a href="#set-speeds!">set-speeds!</a>
-<a href="#set-title-screen!">set-title-screen!</a>
+<a href="#set-title-screens!">set-title-screens!</a>
 <a href="#set-training-queue!">set-training-queue!</a>
 <a href="#set-xp-damage!">set-xp-damage!</a>
 <a href="#shadow-sprite">shadow-sprite</a>
@@ -1311,24 +1311,29 @@
 
 <a href="../../data/ccl/stratagus.ccl"> $LIBARYPATH/ccl/stratagus.ccl </a>
 
-<a name="set-title-screen!"></a>
-<h3>(set-title-screen! image)</h3>
+<a name="set-title-screens!"></a>
+<h3>(set-title-screens! (image music) ...)</h3>
 
-Change the default title screen.
+Change the default title screens.
 
 
 <dl>
 <dt>image</dt>
-<dd>Image to be displayed as title screen, this is the first screen 
+<dd>Image or video to be displayed as title screen, this is the first screen 
 displayed. The image should be a png file with 640x480 8-bit indexed colormap.
 </dd>
+<dt>music</dt>
+<dd>Optional music to be played with the image or video.  Use "none" to stop
+previously playing music.
+</dd>
 </dl>
 
 <h4>Example</h4>
 
 <pre>
     ;; This is the default title displayed.
-    (set-title-screen! "graphics/ui/stratagus.png")
+    (set-title-screens!
+      '("graphics/ui/stratagus.png" "music/default.mod"))
 </pre>
 
 <h4>Used</h4>
@@ -1501,7 +1506,7 @@
 <a href="../../data/ccl/stratagus.ccl"> $LIBARYPATH/ccl/stratagus.ccl </a>
 
 <hr>
-Last changed: $Id: config.html,v 1.32 2003/10/26 19:46:04 n0body Exp $<br>
+Last changed: $Id: config.html,v 1.33 2003/10/31 22:31:21 jsalmon3 Exp $<br>
 All trademarks and copyrights on this page are owned by their respective 
owners.
 <address>(c) 2002-2003 by <a href="http://stratagus.org";>
 The Stratagus Project</a></address></body></html>
Index: stratagus/doc/ccl/sound.html
diff -u stratagus/doc/ccl/sound.html:1.10 stratagus/doc/ccl/sound.html:1.11
--- stratagus/doc/ccl/sound.html:1.10   Wed Sep 10 11:33:43 2003
+++ stratagus/doc/ccl/sound.html        Fri Oct 31 17:31:21 2003
@@ -61,7 +61,6 @@
 <a href="#set-music-volume!">set-music-volume!</a>
 <a href="#set-sound-range!">set-sound-range!</a>
 <a href="#set-sound-volume!">set-sound-volume!</a>
-<a href="#set-title-music!">set-title-music!</a>
 <a href="#sound-for-name">sound-for-name</a>
 <a href="#sound-off">sound-off</a>
 <a href="#sound-on">sound-on</a>
@@ -410,29 +409,6 @@
 
 <a href="../../data/ccl/stratagus.ccl"> $LIBARYPATH/ccl/stratagus.ccl </a>
 
-<a name="set-title-music!"></a>
-<h3>(set-title-music! song)</h3>
-
-Change the default title music.
-
-
-<dl>
-<dt>song</dt>
-<dd>Song to be played at title screen, this is the first screen displayed.
-</dd>
-</dl>
-
-<h4>Example</h4>
-
-<pre>
-    ;; This is the default song played.
-    (set-title-music! "music/default.mod")
-</pre>
-
-<h4>Used</h4>
-
-<a href="../../data/ccl/stratagus.ccl"> $LIBARYPATH/ccl/stratagus.ccl </a>
-
 <a name="sound-for-name"></a>
 <h3>(sound-for-name name)</h3>
 
@@ -528,7 +504,7 @@
 <a href="../../data/ccl/sound.ccl"> $LIBARYPATH/ccl/sound.ccl </a>
 
 <hr>
-Last changed: $Id: sound.html,v 1.10 2003/09/10 15:33:43 martinxyz Exp $<br>
+Last changed: $Id: sound.html,v 1.11 2003/10/31 22:31:21 jsalmon3 Exp $<br>
 All trademarks and copyrights on this page are owned by their respective 
owners.
 <address>(c) 2002-2003 by <a href="http://stratagus.org";>
 The Stratagus Project</a></address></body></html>




reply via email to

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