raze/source/core/screenjob.h

115 lines
2.2 KiB
C
Raw Normal View History

#pragma once
#include <functional>
2020-06-27 11:48:55 +02:00
#include "dobject.h"
#include "v_2ddrawer.h"
2020-06-28 10:14:42 +02:00
using CompletionFunc = std::function<void(bool)>;
struct JobDesc;
class ScreenJobRunner;
2020-06-27 11:48:55 +02:00
class DScreenJob : public DObject
{
DECLARE_CLASS(DScreenJob, DObject)
int64_t now;
const int fadestyle;
const float fadetime; // in milliseconds
2020-07-03 09:59:24 +02:00
int fadestate = fadein;
friend class ScreenJobRunner;
2020-06-27 11:48:55 +02:00
public:
enum
{
2020-07-03 09:59:24 +02:00
visible = 0,
fadein = 1,
fadeout = 2,
};
DScreenJob(int fade = 0, float fadet = 250.f) : fadestyle(fade), fadetime(fadet) {}
virtual bool ProcessInput()
{
return false;
}
void SetClock(int64_t nsnow)
{
now = nsnow;
}
int64_t GetClock() const
{
return now;
}
2020-07-01 22:27:38 +02:00
virtual int Frame(uint64_t clock, bool skiprequest) { return 0; }
2020-07-03 09:59:24 +02:00
int GetFadeState() const { return fadestate; }
2020-06-27 11:48:55 +02:00
};
2020-06-28 22:17:27 +02:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
class DBlackScreen : public DScreenJob
{
int wait;
public:
DBlackScreen(int w) : wait(w) {}
int Frame(uint64_t clock, bool skiprequest) override;
};
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-06-28 22:17:27 +02:00
class DImageScreen : public DScreenJob
{
DECLARE_CLASS(DImageScreen, DScreenJob)
int tilenum = -1;
int waittime; // in ms.
2020-06-28 22:17:27 +02:00
FGameTexture* tex = nullptr;
public:
DImageScreen(FGameTexture* tile, int fade = DScreenJob::fadein | DScreenJob::fadeout, int wait = 3000) : DScreenJob(fade), waittime(wait)
2020-06-28 22:17:27 +02:00
{
tex = tile;
}
DImageScreen(int tile, int fade = DScreenJob::fadein | DScreenJob::fadeout, int wait = 3000) : DScreenJob(fade), waittime(wait)
2020-06-28 22:17:27 +02:00
{
tilenum = tile;
}
int Frame(uint64_t clock, bool skiprequest) override;
};
struct JobDesc
{
DScreenJob* job;
void (*postAction)();
bool ignoreifskipped;
};
2020-06-27 11:48:55 +02:00
void RunScreenJob(JobDesc *jobs, int count, CompletionFunc completion, bool clearbefore = true, bool blockingui = false);
void DeleteScreenJob();
void RunScreenJobFrame();
2020-06-27 11:48:55 +02:00
struct AnimSound
{
int framenum;
int soundnum;
};
DScreenJob *PlayVideo(const char *filename, const AnimSound *ans = nullptr, const int *frameticks = nullptr, bool nosoundstop = false);