mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-26 09:41:34 +11:00
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
|
/* Copyright (c) 2013-2016 Jeffrey Pfau
|
||
|
*
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
#ifndef M_CORE_REWIND_H
|
||
|
#define M_CORE_REWIND_H
|
||
|
|
||
|
#include <mgba-util/common.h>
|
||
|
|
||
|
CXX_GUARD_START
|
||
|
|
||
|
#include <mgba-util/vector.h>
|
||
|
#ifndef DISABLE_THREADING
|
||
|
#include <mgba-util/threading.h>
|
||
|
#endif
|
||
|
|
||
|
DECLARE_VECTOR(mCoreRewindPatches, struct PatchFast);
|
||
|
|
||
|
struct VFile;
|
||
|
struct mCoreRewindContext {
|
||
|
struct mCoreRewindPatches patchMemory;
|
||
|
size_t current;
|
||
|
size_t size;
|
||
|
struct VFile* previousState;
|
||
|
struct VFile* currentState;
|
||
|
|
||
|
#ifndef DISABLE_THREADING
|
||
|
bool onThread;
|
||
|
Thread thread;
|
||
|
Condition cond;
|
||
|
Mutex mutex;
|
||
|
bool ready;
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
void mCoreRewindContextInit(struct mCoreRewindContext*, size_t entries, bool onThread);
|
||
|
void mCoreRewindContextDeinit(struct mCoreRewindContext*);
|
||
|
|
||
|
struct mCore;
|
||
|
void mCoreRewindAppend(struct mCoreRewindContext*, struct mCore*);
|
||
|
bool mCoreRewindRestore(struct mCoreRewindContext*, struct mCore*);
|
||
|
|
||
|
CXX_GUARD_END
|
||
|
|
||
|
#endif
|