22 #ifndef DIRECTOR_STAGE_H 23 #define DIRECTOR_STAGE_H 25 #include "director/lingo/lingo-object.h" 34 class MacWindowManager;
61 const byte *sourcePal;
62 uint16 sourcePalLength;
63 const byte *targetPal;
64 uint16 targetPalLength;
77 xStepSize = yStepSize = 0;
86 TransParams(uint16 d, uint16 a, uint16 c, TransitionType t) :
87 duration(d), area(a), chunkSize(c), type(t), tempPal() {
93 xStepSize = yStepSize = 0;
108 void decRefCount()
override;
113 void setStageColor(uint32 stageColor,
bool forceReset =
false);
114 uint32 getStageColor() {
return _stageColor; }
121 void playTransition(uint frame, RenderMode mode, uint16 transDuration, uint8 transArea, uint8 transChunkSize, TransitionType transType,
CastMemberID paletteId);
132 Movie *getCurrentMovie()
const {
return _currentMovie; }
134 DirectorSound *getSoundManager()
const {
return _soundManager; }
136 void setVisible(
bool visible,
bool silent =
false)
override;
139 void ensureMovieIsLoaded();
141 void setWindowType(
int type) { _windowType = type; updateBorderType(); }
142 int getWindowType()
const {
return _windowType; }
143 void setTitleVisible(
bool titleVisible)
override;
144 Datum getStageRect();
145 bool setStageRect(
Datum datum);
146 void setModal(
bool modal);
147 bool getModal() {
return _isModal; };
149 Common::String getFileName() {
return _fileName.toString(g_director->_dirSeparator); }
151 void updateBorderType();
154 bool loadNextMovie();
155 void loadNewSharedCast(
Cast *previousSharedCast);
159 LingoState *getLingoState() {
return _lingoState; };
160 LingoState *getLingoPlayState() {
return _lingoPlayState; };
161 uint32 frozenLingoStateCount() {
return _frozenLingoStates.size(); };
162 uint32 frozenLingoRecursionCount();
163 void freezeLingoState();
164 void thawLingoState();
165 void freezeLingoPlayState();
166 bool thawLingoPlayState();
167 LingoState *getLastFrozenLingoState() {
return _frozenLingoStates.empty() ? nullptr : _frozenLingoStates[_frozenLingoStates.size() - 1]; }
168 void moveLingoState(
Window *target);
177 void testFontScaling();
179 void enqueueAllMovies();
185 void probeResources(
Archive *archive);
186 void loadINIStream();
187 void loadXtrasFromPath();
188 void loadStartMovieXLibs();
194 bool setProp(
const Common::String &propName,
const Datum &value,
bool force =
false)
override;
195 bool hasField(
int field)
override;
196 Datum getField(
int field)
override;
197 bool setField(
int field,
const Datum &value)
override;
207 bool _newMovieStarted;
218 Movie *_currentMovie;
Definition: managed_surface.h:51
Definition: director.h:105
Definition: macwindow.h:192
Definition: macwindowmanager.h:147
Definition: lingo-object.h:71
Definition: algorithm.h:29
Definition: formatinfo.h:28
Definition: director.h:156
Definition: director.h:346