mirror of
https://github.com/edmccard/twoapple-reboot.git
synced 2024-09-19 14:56:02 +00:00
164 lines
3.7 KiB
D
164 lines
3.7 KiB
D
/+
|
|
+ host.d
|
|
+
|
|
+ Copyright: 2007 Gerald Stocker
|
|
+
|
|
+ This file is part of twoapple-reboot.
|
|
+
|
|
+ twoapple-reboot is free software; you can redistribute it and/or modify
|
|
+ it under the terms of the GNU General Public License as published by
|
|
+ the Free Software Foundation; either version 2 of the License, or
|
|
+ (at your option) any later version.
|
|
+
|
|
+ twoapple-reboot is distributed in the hope that it will be useful,
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ GNU General Public License for more details.
|
|
+
|
|
+ You should have received a copy of the GNU General Public License
|
|
+ along with twoapple-reboot; if not, write to the Free Software
|
|
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
+/
|
|
|
|
module host;
|
|
|
|
import std.c.time;
|
|
import std.c.linux.linux;
|
|
import std.stdio;
|
|
import std.conv;
|
|
|
|
import derelict.sdl.sdl;
|
|
import derelict.util.exception;
|
|
|
|
static this()
|
|
{
|
|
delay = new Delay();
|
|
|
|
try
|
|
{
|
|
DerelictSDL.load();
|
|
}
|
|
catch (DerelictException e)
|
|
{
|
|
writefln("%s", e.msg);
|
|
return;
|
|
}
|
|
if (SDL_Init(0) == -1)
|
|
{
|
|
writefln("%s", to!string(SDL_GetError()));
|
|
return;
|
|
}
|
|
SDL = true;
|
|
}
|
|
|
|
static ~this()
|
|
{
|
|
if (SDL) SDL_Quit();
|
|
}
|
|
|
|
bool SDL;
|
|
|
|
class Delay
|
|
{
|
|
timeval timeNow, timeShould, timeDiff, timeCheck;
|
|
uint checkCycles;
|
|
static float speedCorrection = 1000000.0 / 1020478.0;
|
|
bool delegate() soundCardActive;
|
|
bool delegate() soundCardHasEnoughData;
|
|
|
|
void sleep()
|
|
{
|
|
if (soundCardActive())
|
|
sleepAudio();
|
|
else
|
|
sleepNoAudio();
|
|
}
|
|
|
|
void sleepAudio()
|
|
{
|
|
while (soundCardHasEnoughData())
|
|
{
|
|
usleep(1000);
|
|
}
|
|
}
|
|
|
|
void nap()
|
|
{
|
|
usleep(1000);
|
|
}
|
|
|
|
void sleepNoAudio()
|
|
{
|
|
if (timeShould.tv_usec >= 990_000)
|
|
{
|
|
++timeShould.tv_sec;
|
|
timeShould.tv_usec -= 1_000_000;
|
|
}
|
|
timeShould.tv_usec += 10_000;
|
|
|
|
gettimeofday(&timeNow, null);
|
|
|
|
// Assume that tv_sec = 0;
|
|
if (timeCompare(&timeShould, &timeNow, &timeDiff))
|
|
{
|
|
usleep(cast(uint)timeDiff.tv_usec);
|
|
}
|
|
}
|
|
|
|
void reset()
|
|
{
|
|
gettimeofday(&timeShould, null);
|
|
resetSpeedCheck();
|
|
}
|
|
|
|
void resetSpeedCheck()
|
|
{
|
|
gettimeofday(&timeCheck, null);
|
|
checkCycles = 0;
|
|
}
|
|
|
|
float checkSpeedPercent(uint cycles)
|
|
{
|
|
checkCycles += cycles;
|
|
if (checkCycles > 1020478) // do calculation at least once per "second"
|
|
{
|
|
gettimeofday(&timeNow, null);
|
|
timeCompare(&timeNow, &timeCheck, &timeDiff);
|
|
uint elapsed =
|
|
cast(uint)((timeDiff.tv_sec * 1000000) + timeDiff.tv_usec);
|
|
if (elapsed >= 1000000)
|
|
{
|
|
float percent = cast(float)checkCycles / cast(float)elapsed;
|
|
resetSpeedCheck();
|
|
return percent * speedCorrection;
|
|
}
|
|
}
|
|
return -1.0;
|
|
}
|
|
}
|
|
|
|
bool timeCompare(timeval* later, timeval* earlier, timeval* diff)
|
|
{
|
|
if (later.tv_usec < earlier.tv_usec) {
|
|
int nsec = cast(int)((earlier.tv_usec - later.tv_usec) / 1000000 + 1);
|
|
earlier.tv_usec -= 1000000 * nsec;
|
|
earlier.tv_sec += nsec;
|
|
}
|
|
if (later.tv_usec - earlier.tv_usec > 1000000) {
|
|
int nsec = cast(int)((later.tv_usec - earlier.tv_usec) / 1000000);
|
|
earlier.tv_usec += 1000000 * nsec;
|
|
earlier.tv_sec -= nsec;
|
|
}
|
|
|
|
if (later.tv_sec >= earlier.tv_sec)
|
|
{
|
|
diff.tv_sec = later.tv_sec - earlier.tv_sec;
|
|
diff.tv_usec = later.tv_usec - earlier.tv_usec;
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
Delay delay;
|