Added tag Editor to TitleScreen.

If will be set to 0 (default) this title screen will not be show when starting Editor from command line (stratagus -e)
This commit is contained in:
Pali Rohár 2010-11-05 20:00:03 +01:00
parent 03d2a5d4b2
commit 30f728f7d1
4 changed files with 12 additions and 1 deletions
doc/scripts
src

View file

@ -1102,6 +1102,9 @@ previously playing music.
</dd>
<dt>Timeout = number</dt>
<dd>The number of seconds we should show this title-screen.(20 by default)</dd>
<dt>Editor = number</dt>
<dd>0 - display this title screen in normal startup (default)</dd>
<dd>1 - display this title screen only when starting Editor from command line</dd>
<dt>Label = { {Text = "text", Pos = {x, y}, Font = "font-name"}, ... }</dt>
<dd>Optional text to be displayed. It's a list of elements with three tags:
<dl>

View file

@ -53,7 +53,7 @@ public:
class TitleScreen {
public:
TitleScreen() : StretchImage(true), Timeout(0), Iterations(0), Labels(NULL) {}
TitleScreen() : StretchImage(true), Timeout(0), Iterations(0), Editor(0), Labels(NULL) {}
~TitleScreen() {
if (this->Labels) {
for (int i = 0; this->Labels[i]; ++i) {
@ -68,6 +68,7 @@ public:
bool StretchImage;
int Timeout;
int Iterations;
int Editor;
TitleScreenLabel **Labels;
};

View file

@ -34,6 +34,7 @@
#include "movie.h"
#include "font.h"
#include "sound_server.h"
#include "editor.h"
TitleScreen **TitleScreens; /// Title screens to show at startup
@ -172,6 +173,10 @@ void ShowTitleScreens()
SetVideoSync();
for (int i = 0; TitleScreens[i]; ++i) {
if ((Editor.Running && !TitleScreens[i]->Editor) || (!Editor.Running && TitleScreens[i]->Editor)) {
continue;
}
if (!TitleScreens[i]->Music.empty()) {
if (TitleScreens[i]->Music == "none" ||
PlayMusic(TitleScreens[i]->Music) == -1) {

View file

@ -269,6 +269,8 @@ static int CclSetTitleScreens(lua_State *l)
TitleScreens[j]->Timeout = LuaToNumber(l, -1);
} else if (!strcmp(value, "Iterations")) {
TitleScreens[j]->Iterations = LuaToNumber(l, -1);
} else if (!strcmp(value, "Editor")) {
TitleScreens[j]->Editor = LuaToNumber(l, -1);
} else if (!strcmp(value, "Labels")) {
if (!lua_istable(l, -1)) {
LuaError(l, "incorrect argument");