0ad/source/lib/input.cpp
janwas c0ed950657 had to remove uint and ulong from lib/types.h due to conflict with other library.
this snowballed into a massive search+destroy of the hodgepodge of
mostly equivalent types we had in use (int, uint, unsigned, unsigned
int, i32, u32, ulong, uintN).

it is more efficient to use 64-bit types in 64-bit mode, so the
preferred default is size_t (for anything remotely resembling a size or
index). tile coordinates are ssize_t to allow more efficient conversion
to/from floating point. flags are int because we almost never need more
than 15 distinct bits, bit test/set is not slower and int is fastest to
type. finally, some data that is pretty much directly passed to OpenGL
is now typed accordingly.

after several hours, the code now requires fewer casts and less
guesswork.

other changes:
- unit and player IDs now have an "invalid id" constant in the
respective class to avoid casting and -1
- fix some endian/64-bit bugs in the map (un)packing. added a
convenience function to write/read a size_t.
- ia32: change CPUID interface to allow passing in ecx (required for
cache topology detection, which I need at work). remove some unneeded
functions from asm, replace with intrinsics where possible.

This was SVN commit r5942.
2008-05-11 18:48:32 +00:00

163 lines
2.8 KiB
C++

/**
* =========================================================================
* File : input.cpp
* Project : 0 A.D.
* Description : SDL input redirector; dispatches to multiple handlers and
* : allows record/playback of evs.
* =========================================================================
*/
// license: GPL; see lib/license.txt
#include "precompiled.h"
#include "input.h"
#include <stdio.h>
#include <stdlib.h>
#include "lib/external_libraries/sdl.h"
const size_t MAX_HANDLERS = 8;
static InHandler handler_stack[MAX_HANDLERS];
static size_t handler_stack_top = 0;
void in_add_handler(InHandler handler)
{
debug_assert(handler);
if(handler_stack_top >= MAX_HANDLERS)
WARN_ERR_RETURN(ERR::LIMIT);
handler_stack[handler_stack_top++] = handler;
}
// send ev to each handler until one returns IN_HANDLED
static void dispatch_ev(const SDL_Event_* ev)
{
for(int i = (int)handler_stack_top-1; i >= 0; i--)
{
debug_assert(handler_stack[i] && ev);
InReaction ret = handler_stack[i](ev);
// .. done, return
if(ret == IN_HANDLED)
return;
// .. next handler
else if(ret == IN_PASS)
continue;
// .. invalid return value
else
debug_assert(0); // invalid handler return value
}
}
//-----------------------------------------------------------------------------
static enum
{
INIT, // first call to in_record() or in_playback(): register cleanup routine
IDLE,
RECORD,
PLAYBACK
}
state = INIT;
static FILE* f;
u32 game_ticks;
static u32 time_adjust = 0;
static u32 next_ev_time;
void in_stop()
{
if(f)
{
fclose(f);
f = 0;
}
state = IDLE;
}
LibError in_record(const char* fn)
{
if(state == INIT)
atexit(in_stop);
in_stop();
f = fopen(fn, "wb");
if(!f)
WARN_RETURN(ERR::FAIL);
fwrite(&game_ticks, sizeof(u32), 1, f);
state = RECORD;
return INFO::OK;
}
LibError in_playback(const char* fn)
{
if(state == INIT)
atexit(in_stop);
in_stop();
f = fopen(fn, "rb");
if(!f)
WARN_RETURN(ERR::FAIL);
u32 rec_start_time;
fread(&rec_start_time, sizeof(u32), 1, f);
time_adjust = game_ticks-rec_start_time;
fread(&next_ev_time, sizeof(u32), 1, f);
next_ev_time += time_adjust;
state = PLAYBACK;
return INFO::OK;
}
void in_dispatch_event(const SDL_Event_* ev)
{
if(state == RECORD)
{
fwrite(&game_ticks, sizeof(u32), 1, f);
fwrite(ev, sizeof(SDL_Event_), 1, f);
}
dispatch_ev(ev);
}
void in_dispatch_recorded_events()
{
SDL_Event_ ev;
while(state == PLAYBACK && next_ev_time <= game_ticks)
{
fread(&ev, sizeof(SDL_Event_), 1, f);
// do this before dispatch_ev(),
// in case a handler calls in_stop() (setting f to 0)
if(!fread(&next_ev_time, sizeof(u32), 1, f))
{
in_stop();
exit(0x73c07d);
// TODO: 'disconnect'?
}
next_ev_time += time_adjust;
in_dispatch_event(&ev);
}
}