1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/*****************************************************************************
Copyright (c) 2026 Jaroslav Hensl <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*****************************************************************************/
#include "winhack.h"
#include "vmm.h"
#include "vxd.h"
#include "vxd_lib.h"
#include "3d_accel.h"
#include "vxd_halloc.h"
#include "code32.h"
#include "wram.h"
#include "async.h"
static DWORD screen_time = ASYNC_DEFAULT; // 60 Hz
static blit_t *blit = NULL;
static draw_callback_h draw_callback = NULL;
volatile DWORD *curtime = NULL;
extern LONG fb_lock_cnt;
extern FBHDA_t *hda;
extern void *DeviceCTX;
#define TIME_MIN_PLAN 4
DWORD calc_delta(DWORD draw_time)
{
DWORD m = (*curtime) % screen_time;
DWORD delta = screen_time - m;
if(delta < TIME_MIN_PLAN)
{
delta += screen_time;
}
if(draw_time)
{
DWORD s = draw_time/screen_time;
delta += s*screen_time;
}
return delta;
}
void __declspec(naked) async_timeout_proc();
void __stdcall async_timeout(DWORD tardiness, DWORD refdata)
{
DWORD burned;
DWORD act = *curtime;
DWORD delta;
//void *curctx = _GetCurrentContext();
//dbg_printf("CTX: %lX, device CTX: %lX\n", curctx, DeviceCTX);
//_ContextSwitch(DeviceCTX);
//dbg_printf("async_timeout %d ...", refdata);
if(FBHDA_lock())
{
if(fb_lock_cnt == 0) /* FIXME: check if locking surface is visible surface */
{
draw_callback(blit);
hda->onflip = 0;
}
FBHDA_unlock();
}
burned = *curtime - act;
delta = calc_delta(burned);
if(!Set_Async_Time_Out(delta, refdata+1, async_timeout_proc))
{
delta = calc_delta(0);
Set_Async_Time_Out(delta, refdata+1, async_timeout_proc);
}
//_ContextSwitch(curctx);
//dbg_printf("... set (%d)!\n", delta);
}
void __declspec(naked) async_timeout_proc()
{
//ecx = tardiness (number of extra milliseconds that have elapsed)
//edx = refdata
_asm
{
push edx
push ecx
call async_timeout
retn
};
}
BOOL async_blit_init(blit_t *blitptr, draw_callback_h cbptr)
{
if(blitptr != NULL && cbptr != NULL)
{
blit = blitptr;
draw_callback = cbptr;
dbg_printf("Get_System_Time_Address...\n");
curtime = Get_System_Time_Address();
dbg_printf("curtime = %X\n", curtime);
if(Set_Async_Time_Out(calc_delta(0), 0, async_timeout_proc) != 0)
{
return TRUE;
}
else
{
dbg_printf("Set_Async_Time_Out FAILED!\n");
}
}
return FALSE;
}
void async_blit_settime(DWORD delay)
{
if(delay > 0)
{
screen_time = delay;
}
}
|