mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
d98a567597
These are both lengthy operations that can take several 100s of milliseconds, so when starting a streaming video they can throw off the timing quite significantly. With this the intermissiondelay counter could be removed as it was only there to flush the accumulated time before starting video playback.
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#pragma once
|
|
#include <functional>
|
|
#include "dobject.h"
|
|
#include "v_2ddrawer.h"
|
|
#include "d_eventbase.h"
|
|
#include "s_soundinternal.h"
|
|
#include "gamestate.h"
|
|
#include "zstring.h"
|
|
#include "c_cvars.h"
|
|
|
|
EXTERN_CVAR(Bool, inter_subtitles)
|
|
|
|
using CompletionFunc = std::function<void(bool)>;
|
|
|
|
void Job_Init();
|
|
|
|
enum
|
|
{
|
|
SJ_BLOCKUI = 1,
|
|
};
|
|
|
|
struct CutsceneDef
|
|
{
|
|
FString video;
|
|
FString function;
|
|
FString soundName;
|
|
int soundID = -1; // ResID not SoundID!
|
|
int framespersec = 0; // only relevant for ANM.
|
|
bool transitiononly = false; // only play when transitioning between maps, but not when starting on a map or ending a game.
|
|
|
|
void Create(DObject* runner);
|
|
bool isdefined() { return video.IsNotEmpty() || function.IsNotEmpty(); }
|
|
int GetSound();
|
|
};
|
|
|
|
void EndScreenJob();
|
|
void DeleteScreenJob();
|
|
bool ScreenJobResponder(event_t* ev);
|
|
bool ScreenJobTick();
|
|
void ScreenJobDraw();
|
|
bool ScreenJobValidate();
|
|
|
|
struct CutsceneDef;
|
|
bool StartCutscene(const char* s, int flags, const CompletionFunc& completion);
|
|
bool StartCutscene(CutsceneDef& cs, int flags, const CompletionFunc& completion_);
|
|
|
|
VMFunction* LookupFunction(const char* qname, bool validate = true);
|
|
void CallCreateFunction(const char* qname, DObject* runner);
|
|
DObject* CreateRunner(bool clearbefore = true);
|
|
void AddGenericVideo(DObject* runner, const FString& fn, int soundid, int fps);
|
|
|
|
|
|
extern DObject* runner;
|
|
extern PClass* runnerclass;
|
|
extern PType* runnerclasstype;
|
|
extern CompletionFunc completion;
|