summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-02-20 22:04:52 +0000
committerhrydgard <hrydgard@gmail.com>2009-02-20 22:04:52 +0000
commit6cd34b318fc46620ea85991dd1e03ea390960da3 (patch)
tree0a20c064660b03e8d440a517daa76c8707b7f514 /Source/Core/VideoCommon
parentf992dae50ddbd7c20d63e6d48d5051fc1d6b392b (diff)
The Mega Change Of Doom - or, fixing Stop. Almost. At least it's better than before. However, the OpenGL plugin seems to lose textures a lot between game restarts :P I think the GL plugin needs to do a lot more cleanup.
This change also includes tons of minor code formatting cleanup. Yeah, should've separated it ... sorry :( Kills the old CPUCompare support. I'll resurrect it if I need it again, right now it mostly clutters the code. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2321 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/Src/Fifo.cpp70
-rw-r--r--Source/Core/VideoCommon/Src/Fifo.h8
2 files changed, 42 insertions, 36 deletions
diff --git a/Source/Core/VideoCommon/Src/Fifo.cpp b/Source/Core/VideoCommon/Src/Fifo.cpp
index 2c8b415a88..064cab8dfb 100644
--- a/Source/Core/VideoCommon/Src/Fifo.cpp
+++ b/Source/Core/VideoCommon/Src/Fifo.cpp
@@ -23,24 +23,26 @@
#include "Fifo.h"
-extern u8* g_pVideoData;
// TODO (mb2): move/rm this global
volatile u32 g_XFBUpdateRequested = FALSE;
+extern u8* g_pVideoData;
-#ifndef _WIN32
-static bool fifoStateRun = true;
-#endif
+namespace {
-// STATE_TO_SAVE
+static bool fifoStateRun = false;
static u8 *videoBuffer;
+static Common::Event fifo_exit_event;
+// STATE_TO_SAVE
static int size = 0;
+} // namespace
+
void Fifo_DoState(PointerWrap &p)
{
p.DoArray(videoBuffer, FIFO_SIZE);
p.Do(size);
- int pos = (int)(g_pVideoData-videoBuffer); // get offset
+ int pos = (int)(g_pVideoData - videoBuffer); // get offset
p.Do(pos); // read or write offset (depends on the mode afaik)
g_pVideoData = &videoBuffer[pos]; // overwrite g_pVideoData -> expected no change when load ss and change when save ss
}
@@ -48,25 +50,16 @@ void Fifo_DoState(PointerWrap &p)
void Fifo_Init()
{
videoBuffer = (u8*)AllocateMemoryPages(FIFO_SIZE);
-#ifndef _WIN32
+ fifo_exit_event.Init();
fifoStateRun = true;
-#endif
g_XFBUpdateRequested = FALSE;
}
void Fifo_Shutdown()
{
+ if (fifoStateRun)
+ PanicAlert("Fifo shutting down while active");
FreeMemoryPages(videoBuffer, FIFO_SIZE);
-#ifndef _WIN32
- fifoStateRun = false;
-#endif
-}
-
-void Fifo_Stop()
-{
-#ifndef _WIN32
- fifoStateRun = false;
-#endif
}
u8* FAKE_GetFifoStartPtr()
@@ -79,16 +72,18 @@ u8* FAKE_GetFifoEndPtr()
return &videoBuffer[size];
}
+// The loop in EnterLoop sends data through this function.
+// TODO: Possibly inline it? This one is exported so it will likely not be inlined at all.
void Video_SendFifoData(u8* _uData, u32 len)
{
if (size + len >= FIFO_SIZE)
{
- int pos = (int)(g_pVideoData-videoBuffer);
- if (size-pos > pos)
+ int pos = (int)(g_pVideoData - videoBuffer);
+ if (size - pos > pos)
{
PanicAlert("FIFO out of bounds (sz = %i, at %08x)", size, pos);
}
- memmove(&videoBuffer[0], &videoBuffer[pos], size - pos );
+ memmove(&videoBuffer[0], &videoBuffer[pos], size - pos);
size -= pos;
g_pVideoData = FAKE_GetFifoStartPtr();
}
@@ -97,18 +92,23 @@ void Video_SendFifoData(u8* _uData, u32 len)
OpcodeDecoder_Run();
}
+void Fifo_ExitLoop()
+{
+ fifoStateRun = false;
+ fifo_exit_event.Wait();
+ fifo_exit_event.Shutdown();
+}
+
void Fifo_EnterLoop(const SVideoInitialize &video_initialize)
{
SCPFifoStruct &_fifo = *video_initialize.pCPFifo;
s32 distToSend;
-#ifdef _WIN32
- // TODO(ector): Don't peek so often!
- while (video_initialize.pPeekMessages())
-#else
while (fifoStateRun)
-#endif
{
+#ifdef _WIN32
+ video_initialize.pPeekMessages();
+#endif
if (_fifo.CPReadWriteDistance == 0)
Common::SleepCurrentThread(1);
@@ -156,16 +156,18 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize)
else
{
#if 0 // ugly random GP slowdown for testing DC robustness... TODO: remove when completly sure DC is ok
- int r=rand();if ((r&0xF)==r) Common::SleepCurrentThread(r);
- distToSend = 32;
- readPtr += 32;
- if ( readPtr >= _fifo.CPEnd)
- readPtr = _fifo.CPBase;
+ int r = rand();
+ if ((r & 0xF) == r)
+ Common::SleepCurrentThread(r);
+ distToSend = 32;
+ readPtr += 32;
+ if (readPtr >= _fifo.CPEnd)
+ readPtr = _fifo.CPBase;
#else
distToSend = _fifo.CPReadWriteDistance;
- // send 1024B chunk max lenght to have better control over PeekMessages' period
+ // send 1024B chunk max length to have better control over PeekMessages' period
distToSend = distToSend > 1024 ? 1024 : distToSend;
- if ( (distToSend+readPtr) >= _fifo.CPEnd) // TODO: better?
+ if ((distToSend + readPtr) >= _fifo.CPEnd) // TODO: better?
{
distToSend =_fifo.CPEnd - readPtr;
readPtr = _fifo.CPBase;
@@ -182,5 +184,5 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize)
Common::SyncInterlockedExchange((LONG*)&_fifo.CPReadIdle, 1);
}
}
+ fifo_exit_event.Set();
}
-
diff --git a/Source/Core/VideoCommon/Src/Fifo.h b/Source/Core/VideoCommon/Src/Fifo.h
index 77b35be83a..c0148ef99c 100644
--- a/Source/Core/VideoCommon/Src/Fifo.h
+++ b/Source/Core/VideoCommon/Src/Fifo.h
@@ -27,9 +27,13 @@
void Fifo_Init();
void Fifo_Shutdown();
+
+/* void Video_SendFifoData(); */ // defined in plugin spec - implemented in Fifo.cpp
+
+// These two are for dual core mode only.
void Fifo_EnterLoop(const SVideoInitialize &video_initialize);
+void Fifo_ExitLoop();
+
void Fifo_DoState(PointerWrap &f);
-void Fifo_Stop();
#endif
-