Initial commit
This commit is contained in:
485
engines/mtropolis/elements.h
Normal file
485
engines/mtropolis/elements.h
Normal file
@@ -0,0 +1,485 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
*
|
||||
* ScummVM is the legal property of its developers, whose names
|
||||
* are too numerous to list here. Please refer to the COPYRIGHT
|
||||
* file distributed with this source distribution.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef MTROPOLIS_ELEMENTS_H
|
||||
#define MTROPOLIS_ELEMENTS_H
|
||||
|
||||
#include "graphics/fontman.h"
|
||||
#include "graphics/palette.h"
|
||||
|
||||
#include "mtropolis/data.h"
|
||||
#include "mtropolis/runtime.h"
|
||||
#include "mtropolis/render.h"
|
||||
#include "mtropolis/coroutine_protos.h"
|
||||
|
||||
namespace Video {
|
||||
|
||||
class VideoDecoder;
|
||||
|
||||
} // End of namespace Video
|
||||
|
||||
namespace MTropolis {
|
||||
|
||||
class AudioPlayer;
|
||||
class CachedAudio;
|
||||
class CachedImage;
|
||||
class CachedMToon;
|
||||
struct AudioMetadata;
|
||||
struct ElementLoaderContext;
|
||||
struct MToonMetadata;
|
||||
|
||||
enum MediaState {
|
||||
kMediaStatePlaying,
|
||||
kMediaStatePlayingLastFrame,
|
||||
kMediaStateStopped,
|
||||
kMediaStatePaused,
|
||||
};
|
||||
|
||||
class GraphicElement : public VisualElement {
|
||||
public:
|
||||
GraphicElement();
|
||||
~GraphicElement();
|
||||
|
||||
bool load(ElementLoaderContext &context, const Data::GraphicElement &data);
|
||||
|
||||
bool readAttribute(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib) override;
|
||||
MiniscriptInstructionOutcome writeRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &result, const Common::String &attrib) override;
|
||||
|
||||
void render(Window *window) override;
|
||||
|
||||
Common::SharedPtr<Structural> shallowClone() const override;
|
||||
void visitInternalReferences(IStructuralReferenceVisitor *visitor) override;
|
||||
|
||||
#ifdef MTROPOLIS_DEBUG_ENABLE
|
||||
const char *debugGetTypeName() const override { return "Graphic Element"; }
|
||||
SupportStatus debugGetSupportStatus() const override { return kSupportStatusDone; }
|
||||
#endif
|
||||
|
||||
private:
|
||||
GraphicElement(const GraphicElement &other);
|
||||
|
||||
bool _cacheBitmap;
|
||||
|
||||
Common::SharedPtr<Graphics::ManagedSurface> _mask;
|
||||
};
|
||||
|
||||
class MovieResizeFilter {
|
||||
public:
|
||||
virtual ~MovieResizeFilter();
|
||||
|
||||
virtual Common::SharedPtr<Graphics::ManagedSurface> scaleFrame(const Graphics::Surface &surface, uint32 timestamp) const = 0;
|
||||
};
|
||||
|
||||
class MovieElement : public VisualElement, public ISegmentUnloadSignalReceiver, public IPlayMediaSignalReceiver {
|
||||
public:
|
||||
MovieElement();
|
||||
~MovieElement();
|
||||
|
||||
bool load(ElementLoaderContext &context, const Data::MovieElement &data);
|
||||
|
||||
bool readAttribute(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib) override;
|
||||
MiniscriptInstructionOutcome writeRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &result, const Common::String &attrib) override;
|
||||
|
||||
VThreadState asyncConsumeCommand(Runtime *runtime, const Common::SharedPtr<MessageProperties> &msg) override;
|
||||
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
|
||||
bool canAutoPlay() const override;
|
||||
void queueAutoPlayEvents(Runtime *runtime, bool isAutoPlaying) override;
|
||||
|
||||
void render(Window *window) override;
|
||||
void playMedia(Runtime *runtime, Project *project) override;
|
||||
void tryAutoSetName(Runtime *runtime, Project *project) override;
|
||||
|
||||
void setResizeFilter(const Common::SharedPtr<MovieResizeFilter> &filter);
|
||||
|
||||
Common::SharedPtr<Structural> shallowClone() const override;
|
||||
void visitInternalReferences(IStructuralReferenceVisitor *visitor) override;
|
||||
|
||||
#ifdef MTROPOLIS_DEBUG_ENABLE
|
||||
const char *debugGetTypeName() const override { return "Movie Element"; }
|
||||
SupportStatus debugGetSupportStatus() const override { return kSupportStatusDone; }
|
||||
|
||||
void debugSkipMovies() override;
|
||||
#endif
|
||||
|
||||
protected:
|
||||
void onPauseStateChanged() override;
|
||||
void onSegmentUnloaded(int segmentIndex) override;
|
||||
|
||||
struct MovieElementConsumeCommandCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_3(MovieElement *, self, Runtime *, runtime, Common::SharedPtr<MessageProperties>, msg);
|
||||
};
|
||||
|
||||
private:
|
||||
IntRange computeRealRange() const;
|
||||
|
||||
void stopSubtitles();
|
||||
|
||||
void initFallbackPalette();
|
||||
|
||||
MiniscriptInstructionOutcome scriptSetRange(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetRangeStart(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetRangeEnd(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptRangeWriteRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &result, const Common::String &attrib);
|
||||
MiniscriptInstructionOutcome scriptSetVolume(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetTimestamp(MiniscriptThread *thread, const DynamicValue &value);
|
||||
|
||||
MiniscriptInstructionOutcome scriptSetRangeTyped(MiniscriptThread *thread, const IntRange &range);
|
||||
|
||||
struct StartPlayingCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_2(MovieElement *, self, Runtime *, runtime);
|
||||
};
|
||||
|
||||
struct SeekToTimeCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_3(MovieElement *, self, Runtime *, runtime, uint32, timestamp);
|
||||
};
|
||||
|
||||
bool _cacheBitmap;
|
||||
bool _alternate;
|
||||
bool _playEveryFrame;
|
||||
bool _reversed;
|
||||
//bool _haveFiredAtLastCel;
|
||||
//bool _haveFiredAtFirstCel;
|
||||
bool _shouldPlayIfNotPaused;
|
||||
bool _needsReset; // If true, then the video position was reset by a seek or stop and decoding must be restarted even if the target state is the same as the play state.
|
||||
MediaState _currentPlayState;
|
||||
uint32 _assetID;
|
||||
|
||||
Common::SharedPtr<Video::VideoDecoder> _videoDecoder;
|
||||
uint32 _maxTimestamp;
|
||||
uint32 _timeScale;
|
||||
uint32 _currentTimestamp;
|
||||
int32 _volume;
|
||||
IntRange _playRange;
|
||||
|
||||
const Graphics::Surface *_displayFrame;
|
||||
Common::SharedPtr<Graphics::ManagedSurface> _scaledFrame;
|
||||
Common::SharedPtr<MovieResizeFilter> _resizeFilter;
|
||||
|
||||
Common::SharedPtr<SegmentUnloadSignaller> _unloadSignaller;
|
||||
Common::SharedPtr<PlayMediaSignaller> _playMediaSignaller;
|
||||
|
||||
Common::SharedPtr<SubtitlePlayer> _subtitles;
|
||||
|
||||
Common::Array<int> _damagedFrames;
|
||||
|
||||
Common::ScopedPtr<Graphics::Palette> _fallbackPalette;
|
||||
};
|
||||
|
||||
class ImageElement : public VisualElement {
|
||||
public:
|
||||
ImageElement();
|
||||
~ImageElement();
|
||||
|
||||
bool load(ElementLoaderContext &context, const Data::ImageElement &data);
|
||||
|
||||
bool readAttribute(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib) override;
|
||||
MiniscriptInstructionOutcome writeRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &writeProxy, const Common::String &attrib) override;
|
||||
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
|
||||
void tryAutoSetName(Runtime *runtime, Project *project) override;
|
||||
|
||||
void render(Window *window) override;
|
||||
|
||||
Common::SharedPtr<Structural> shallowClone() const override;
|
||||
void visitInternalReferences(IStructuralReferenceVisitor *visitor) override;
|
||||
|
||||
#ifdef MTROPOLIS_DEBUG_ENABLE
|
||||
const char *debugGetTypeName() const override { return "Image Element"; }
|
||||
SupportStatus debugGetSupportStatus() const override { return kSupportStatusDone; }
|
||||
void debugInspect(IDebugInspectionReport *report) const override;
|
||||
#endif
|
||||
|
||||
private:
|
||||
MiniscriptInstructionOutcome scriptSetFlushPriority(MiniscriptThread *thread, const DynamicValue &value);
|
||||
|
||||
bool _cacheBitmap;
|
||||
uint32 _assetID;
|
||||
|
||||
Common::SharedPtr<CachedImage> _cachedImage;
|
||||
|
||||
Common::String _text; // ...???
|
||||
};
|
||||
|
||||
class MToonElement : public VisualElement, public IPlayMediaSignalReceiver {
|
||||
public:
|
||||
MToonElement();
|
||||
~MToonElement();
|
||||
|
||||
bool load(ElementLoaderContext &context, const Data::MToonElement &data);
|
||||
|
||||
bool readAttribute(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib) override;
|
||||
MiniscriptInstructionOutcome writeRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &result, const Common::String &attrib) override;
|
||||
|
||||
VThreadState asyncConsumeCommand(Runtime *runtime, const Common::SharedPtr<MessageProperties> &msg) override;
|
||||
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
|
||||
void tryAutoSetName(Runtime *runtime, Project *project) override;
|
||||
|
||||
bool canAutoPlay() const override;
|
||||
|
||||
void render(Window *window) override;
|
||||
|
||||
bool isMouseCollisionAtPoint(int32 relativeX, int32 relativeY) const override;
|
||||
|
||||
Common::Rect getRelativeCollisionRect() const override;
|
||||
|
||||
Common::SharedPtr<Structural> shallowClone() const override;
|
||||
void visitInternalReferences(IStructuralReferenceVisitor *visitor) override;
|
||||
|
||||
#ifdef MTROPOLIS_DEBUG_ENABLE
|
||||
const char *debugGetTypeName() const override { return "mToon Element"; }
|
||||
SupportStatus debugGetSupportStatus() const override { return kSupportStatusDone; }
|
||||
void debugInspect(IDebugInspectionReport *report) const override;
|
||||
#endif
|
||||
|
||||
private:
|
||||
MToonElement(const MToonElement &other);
|
||||
|
||||
struct MToonConsumeCommandCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_3(MToonElement *, self, Runtime *, runtime, Common::SharedPtr<MessageProperties>, msg);
|
||||
};
|
||||
|
||||
struct StartPlayingCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_2(MToonElement *, self, Runtime *, runtime);
|
||||
};
|
||||
|
||||
struct StopPlayingCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_2(MToonElement *, self, Runtime *, runtime);
|
||||
};
|
||||
|
||||
struct ChangeFrameCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_3(MToonElement *, self, Runtime *, runtime, uint32, frame);
|
||||
};
|
||||
|
||||
void playMedia(Runtime *runtime, Project *project) override;
|
||||
MiniscriptInstructionOutcome scriptSetRate(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetCel(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetRange(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetRangeStart(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetRangeEnd(MiniscriptThread *thread, const DynamicValue &value);
|
||||
|
||||
MiniscriptInstructionOutcome scriptRangeWriteRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &result, const Common::String &attrib);
|
||||
MiniscriptInstructionOutcome scriptSetRangeTyped(MiniscriptThread *thread, const IntRange &value);
|
||||
MiniscriptInstructionOutcome scriptSetRangeTyped(MiniscriptThread *thread, const Common::Point &value);
|
||||
MiniscriptInstructionOutcome scriptSetRangeTyped(MiniscriptThread *thread, const Label &value);
|
||||
|
||||
void onPauseStateChanged() override;
|
||||
|
||||
bool _cacheBitmap;
|
||||
|
||||
// If set, then carry over residual frame time and display at the desired rate. If not set, reset residual each frame for smoother animation.
|
||||
bool _maintainRate;
|
||||
|
||||
uint32 _assetID;
|
||||
int32 _rateTimes100000;
|
||||
int32 _flushPriority;
|
||||
uint32 _celStartTimeMSec;
|
||||
bool _isPlaying; // Is actually rolling media, this is only set by playMedia because it needs to start after scene transition
|
||||
|
||||
// Stop state works independently of pause/hidden even though it has similar effect:
|
||||
// If an mToon is stopped, then it it is always hidden and will not play until a Play
|
||||
// command is received.
|
||||
//
|
||||
// Also, MTI depends on not firing Stopped commands if the mToon is already stopped,
|
||||
// otherwise the cannon scene in the Hispaniola will get stuck in an infinite loop due
|
||||
// to Stopped
|
||||
bool _isStopped;
|
||||
|
||||
Common::SharedPtr<Graphics::ManagedSurface> _renderSurface;
|
||||
uint32 _renderedFrame;
|
||||
|
||||
Common::SharedPtr<MToonMetadata> _metadata;
|
||||
Common::SharedPtr<CachedMToon> _cachedMToon;
|
||||
Common::SharedPtr<PlayMediaSignaller> _playMediaSignaller;
|
||||
|
||||
// NOTE: To produce proper behavior, these are not sanitized until playMedia. render must tolerate invalid values without changing them.
|
||||
IntRange _playRange;
|
||||
int32 _cel;
|
||||
|
||||
bool _hasIssuedRenderWarning;
|
||||
};
|
||||
|
||||
class TextLabelElement : public VisualElement {
|
||||
public:
|
||||
TextLabelElement();
|
||||
~TextLabelElement();
|
||||
|
||||
bool isTextLabel() const override;
|
||||
|
||||
bool load(ElementLoaderContext &context, const Data::TextLabelElement &data);
|
||||
|
||||
bool readAttribute(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib) override;
|
||||
bool readAttributeIndexed(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib, const DynamicValue &index) override;
|
||||
MiniscriptInstructionOutcome writeRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &writeProxy, const Common::String &attrib) override;
|
||||
MiniscriptInstructionOutcome writeRefAttributeIndexed(MiniscriptThread *thread, DynamicValueWriteProxy &writeProxy, const Common::String &attrib, const DynamicValue &index) override;
|
||||
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
|
||||
void render(Window *window) override;
|
||||
|
||||
void setTextStyle(uint16 macFontID, const Common::String &fontFamilyName, uint size, TextAlignment alignment, const TextStyleFlags &styleFlags);
|
||||
|
||||
Graphics::FontManager::FontUsage getDefaultUsageForMacFont(uint16 macFontID, uint size);
|
||||
Graphics::FontManager::FontUsage getDefaultUsageForNamedFont(const Common::String &fontFamilyName, uint size);
|
||||
|
||||
Common::SharedPtr<Structural> shallowClone() const override;
|
||||
void visitInternalReferences(IStructuralReferenceVisitor *visitor) override;
|
||||
|
||||
#ifdef MTROPOLIS_DEBUG_ENABLE
|
||||
const char *debugGetTypeName() const override { return "Text Label Element"; }
|
||||
SupportStatus debugGetSupportStatus() const override { return kSupportStatusPartial; }
|
||||
#endif
|
||||
|
||||
private:
|
||||
TextLabelElement(const TextLabelElement &other);
|
||||
|
||||
struct TextLabelLineWriteInterface {
|
||||
static MiniscriptInstructionOutcome write(MiniscriptThread *thread, const DynamicValue &dest, void *objectRef, uintptr ptrOrOffset);
|
||||
static MiniscriptInstructionOutcome refAttrib(MiniscriptThread *thread, DynamicValueWriteProxy &proxy, void *objectRef, uintptr ptrOrOffset, const Common::String &attrib);
|
||||
static MiniscriptInstructionOutcome refAttribIndexed(MiniscriptThread *thread, DynamicValueWriteProxy &proxy, void *objectRef, uintptr ptrOrOffset, const Common::String &attrib, const DynamicValue &index);
|
||||
};
|
||||
|
||||
MiniscriptInstructionOutcome scriptSetText(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetLine(MiniscriptThread *thread, size_t lineIndex, const DynamicValue &value);
|
||||
|
||||
bool findLineRange(size_t lineNum, uint32 &outStartPos, uint32 &outEndPos) const;
|
||||
size_t countLines() const;
|
||||
|
||||
bool _cacheBitmap;
|
||||
bool _needsRender;
|
||||
|
||||
bool _isBitmap;
|
||||
uint32 _assetID;
|
||||
|
||||
Common::String _text;
|
||||
uint16 _macFontID;
|
||||
Common::String _fontFamilyName;
|
||||
uint _size;
|
||||
TextAlignment _alignment;
|
||||
TextStyleFlags _styleFlags;
|
||||
|
||||
Common::Array<MacFormattingSpan> _macFormattingSpans;
|
||||
|
||||
// NOTE: This may be a surface loaded from data, so it must not be altered.
|
||||
// If you need to render again, recreate the surface. If you want to change
|
||||
// this behavior, please add a flag indicating that it is from the asset.
|
||||
Common::SharedPtr<Graphics::ManagedSurface> _renderedText;
|
||||
};
|
||||
|
||||
class SoundElement : public NonVisualElement, public IPlayMediaSignalReceiver {
|
||||
public:
|
||||
SoundElement();
|
||||
~SoundElement();
|
||||
|
||||
bool load(ElementLoaderContext &context, const Data::SoundElement &data);
|
||||
|
||||
bool readAttribute(MiniscriptThread *thread, DynamicValue &result, const Common::String &attrib) override;
|
||||
MiniscriptInstructionOutcome writeRefAttribute(MiniscriptThread *thread, DynamicValueWriteProxy &writeProxy, const Common::String &attrib) override;
|
||||
|
||||
VThreadState asyncConsumeCommand(Runtime *runtime, const Common::SharedPtr<MessageProperties> &msg) override;
|
||||
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
|
||||
bool canAutoPlay() const override;
|
||||
|
||||
void playMedia(Runtime *runtime, Project *project) override;
|
||||
void tryAutoSetName(Runtime *runtime, Project *project) override;
|
||||
|
||||
bool resolveMediaMarkerLabel(const Label &label, int32 &outResolution) const override;
|
||||
|
||||
Common::SharedPtr<Structural> shallowClone() const override;
|
||||
void visitInternalReferences(IStructuralReferenceVisitor *visitor) override;
|
||||
|
||||
#ifdef MTROPOLIS_DEBUG_ENABLE
|
||||
const char *debugGetTypeName() const override { return "Sound Element"; }
|
||||
SupportStatus debugGetSupportStatus() const override { return kSupportStatusDone; }
|
||||
void debugInspect(IDebugInspectionReport *report) const override;
|
||||
#endif
|
||||
|
||||
private:
|
||||
SoundElement(const SoundElement &other);
|
||||
|
||||
void initSubtitles();
|
||||
void stopPlayer();
|
||||
|
||||
MiniscriptInstructionOutcome scriptSetLoop(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetVolume(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetBalance(MiniscriptThread *thread, const DynamicValue &value);
|
||||
MiniscriptInstructionOutcome scriptSetAsset(MiniscriptThread *thread, const DynamicValue &value);
|
||||
|
||||
struct SoundElementConsumeCommandCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_3(SoundElement *, self, Runtime *, runtime, Common::SharedPtr<MessageProperties>, msg);
|
||||
};
|
||||
|
||||
struct StartPlayingCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_2(SoundElement *, self, Runtime *, runtime);
|
||||
};
|
||||
|
||||
struct StopPlayingCoroutine {
|
||||
CORO_DEFINE_RETURN_TYPE(void);
|
||||
CORO_DEFINE_PARAMS_2(SoundElement *, self, Runtime *, runtime);
|
||||
};
|
||||
|
||||
void setLoop(bool loop);
|
||||
void setVolume(uint16 volume);
|
||||
void setBalance(int16 balance);
|
||||
|
||||
uint16 _leftVolume;
|
||||
uint16 _rightVolume;
|
||||
int16 _balance;
|
||||
uint32 _assetID;
|
||||
|
||||
Common::SharedPtr<CachedAudio> _cachedAudio;
|
||||
Common::SharedPtr<AudioMetadata> _metadata;
|
||||
Common::SharedPtr<AudioPlayer> _player;
|
||||
uint64 _startTime;
|
||||
uint64 _finishTime;
|
||||
uint64 _startTimestamp; // Time in the sound corresponding to the start time
|
||||
uint64 _cueCheckTime;
|
||||
bool _shouldPlayIfNotPaused;
|
||||
bool _needsReset;
|
||||
|
||||
Common::SharedPtr<PlayMediaSignaller> _playMediaSignaller;
|
||||
|
||||
Common::SharedPtr<SubtitlePlayer> _subtitlePlayer;
|
||||
};
|
||||
|
||||
} // End of namespace MTropolis
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user