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