mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
b21dadeef0
The game timer actually starts before the main loop is ready so we have to wait with the cutscene until the loop is in sync with the timer.
31 lines
795 B
C++
31 lines
795 B
C++
#pragma once
|
|
#include <functional>
|
|
#include "dobject.h"
|
|
#include "v_2ddrawer.h"
|
|
#include "d_eventbase.h"
|
|
#include "s_soundinternal.h"
|
|
#include "gamestate.h"
|
|
|
|
using CompletionFunc = std::function<void(bool)>;
|
|
|
|
void Job_Init();
|
|
|
|
enum
|
|
{
|
|
SJ_BLOCKUI = 1,
|
|
SJ_DELAY = 2,
|
|
};
|
|
|
|
void EndScreenJob();
|
|
void DeleteScreenJob();
|
|
bool ScreenJobResponder(event_t* ev);
|
|
bool ScreenJobTick();
|
|
void ScreenJobDraw();
|
|
|
|
struct CutsceneDef;
|
|
struct MapRecord;
|
|
struct SummaryInfo;
|
|
bool StartCutscene(const char* s, int flags, const CompletionFunc& completion);
|
|
void PlayLogos(gameaction_t complete_ga, gameaction_t def_ga, bool stopmusic);
|
|
void ShowScoreboard(int numplayers, const CompletionFunc& completion_);
|
|
void ShowIntermission(MapRecord* fromMap, MapRecord* toMap, SummaryInfo* info, CompletionFunc completion_);
|