mirror of
https://github.com/jummy0/sb2-decomp
synced 2025-03-15 04:24:48 +01:00
889 lines
17 KiB
C++
889 lines
17 KiB
C++
// blupi.cpp
|
||
//
|
||
|
||
#define WIN32_LEAN_AND_MEAN
|
||
|
||
#pragma once
|
||
|
||
#pragma comment(lib, "winmm.lib")
|
||
|
||
using namespace std;
|
||
|
||
#include <windows.h>
|
||
#include <windowsx.h>
|
||
#include <stdlib.h>
|
||
#include <stdio.h>
|
||
#include <mmsystem.h>
|
||
#include <time.h>
|
||
#include <sys/timeb.h>
|
||
#include <mmiscapi2.h>
|
||
#include <WinBase.h>
|
||
#include "def.h"
|
||
#include "resource.h"
|
||
#include "ddutil.h"
|
||
#include "pixmap.h"
|
||
#include "sound.h"
|
||
#include "decor.h"
|
||
#include "movie.h"
|
||
#include "button.h"
|
||
#include "menu.h"
|
||
#include "jauge.h"
|
||
#include "event.h"
|
||
#include "misc.h"
|
||
#include "network.h"
|
||
|
||
#pragma warning (disable : 4996)
|
||
|
||
// Define Globals
|
||
|
||
#define NAME "Blupi"
|
||
#define TITLE "Eggbert"
|
||
#define MMTIMER TRUE
|
||
#define THREAD FALSE
|
||
|
||
// Variables Globals
|
||
|
||
HWND g_hWnd; // handle <20> la fen<65>tre
|
||
CEvent* g_pEvent = NULL;
|
||
CPixmap* g_pPixmap = NULL; // pixmap principal
|
||
CSound* g_pSound = NULL; // sound principal
|
||
CMovie* g_pMovie = NULL; // movie principal
|
||
CDecor* g_pDecor = NULL;
|
||
CNetwork* g_pNetwork;
|
||
char g_CDPath[MAX_PATH]; // chemin d'acc<63>s au CD-Rom
|
||
BOOL g_bFullScreen = FALSE; // FALSE si mode de test
|
||
int g_speedRate = 1;
|
||
int g_timerInterval = 50; // inverval = 50ms
|
||
int g_mouseType = MOUSETYPEGRA;
|
||
int g_benchmark;
|
||
BOOL g_bBenchmarkSuccess;
|
||
BOOL g_bTrueColor;
|
||
BOOL g_bTrueColorBack;
|
||
BOOL g_bTrueColorDecor;
|
||
MMRESULT g_updateTimer; // timer g<>n<EFBFBD>ral
|
||
BOOL g_bActive = TRUE; // is application active ?
|
||
BOOL g_bTermInit = FALSE; // initialisation en cours
|
||
int g_bTimer;
|
||
int g_nbTimer;
|
||
HANDLE g_hScreenMutex;
|
||
HANDLE g_hRunMutex;
|
||
HANDLE g_threadNr;
|
||
HANDLE g_hThread;
|
||
LPDWORD* g_threadID;
|
||
int g_objectMax;
|
||
int g_elementMax;
|
||
int g_blupiMax;
|
||
int g_exploMax;
|
||
short g_object[6];
|
||
short g_element[6];
|
||
short g_blupiCh[6];
|
||
short g_explo[6];
|
||
|
||
UINT g_lastPhase = 999;
|
||
|
||
int GetNum(char *p)
|
||
{
|
||
int n = 0;
|
||
|
||
while ( *p >= '0' && *p <= '9' )
|
||
{
|
||
n *= 10;
|
||
n += (*p++)-'0';
|
||
}
|
||
|
||
return n;
|
||
}
|
||
|
||
BOOL ReadConfig (LPSTR lpCmdLine)
|
||
{
|
||
FILE* file = NULL;
|
||
char buffer[200];
|
||
char* pText;
|
||
int nb;
|
||
int i;
|
||
_MEMORYSTATUS memstatus;
|
||
|
||
file = fopen("data\\config.def", "rb");
|
||
if ( file == NULL ) return FALSE;
|
||
nb = fread(buffer, sizeof(char), 200-1, file);
|
||
buffer[nb] = 0;
|
||
fclose(file);
|
||
|
||
|
||
#if 0
|
||
pText = strstr(buffer, "CD-Rom=");
|
||
if ( pText == NULL )
|
||
{
|
||
#if _DEMO
|
||
GetCurrentDirectory(MAX_PATH, g_CDPath);
|
||
i = strlen (g_CDPath);
|
||
if ( i > 0 && g_CDPath [i-1] != '\\' )
|
||
{
|
||
g_CDPath[i++] = '\\';
|
||
g_CDPath[i] = 0;
|
||
}
|
||
#else
|
||
return FALSE;
|
||
#endif
|
||
}
|
||
else
|
||
{
|
||
pText += 7;
|
||
i = 0;
|
||
while ( pText[i] != 0 && pText[i] != '\n' && pText[i] != '\r' )
|
||
{
|
||
g_CDPath[i] = pText[i];
|
||
i ++;
|
||
}
|
||
if ( i > 0 && g_CDPath[i-1] != '\\' )
|
||
{
|
||
g_CDPath[i++] = '\\';
|
||
}
|
||
g_CDPath[i] = 0; // met le terminateur
|
||
}
|
||
|
||
#if !_DEMO & !_EGAMES
|
||
if ( strstr(lpCmdLine, "-nocd") == NULL )
|
||
{
|
||
char drive[10];
|
||
|
||
drive[0] = g_CDPath[0];
|
||
drive[1] = ':';
|
||
drive[2] = '\\';
|
||
drive[3] = 0;
|
||
nb = GetDriveType(drive);
|
||
if ( nb != DRIVE_CDROM ) return FALSE;
|
||
}
|
||
#endif
|
||
#endif
|
||
|
||
pText = strstr(buffer, "SpeedRate=");
|
||
if ( pText != NULL )
|
||
{
|
||
g_speedRate = GetNum(pText+10);
|
||
if ( g_speedRate < 1 ) g_speedRate = 1;
|
||
if ( g_speedRate > 2 ) g_speedRate = 2;
|
||
}
|
||
|
||
pText = strstr(buffer, "Timer=");
|
||
if ( pText != NULL )
|
||
{
|
||
g_timerInterval = GetNum(pText+6);
|
||
if ( g_timerInterval < 10 ) g_timerInterval = 10;
|
||
if ( g_timerInterval > 1000 ) g_timerInterval = 1000;
|
||
}
|
||
|
||
pText = strstr(buffer, "FullScreen=");
|
||
if ( pText != NULL )
|
||
{
|
||
g_bFullScreen = GetNum(pText+11);
|
||
if ( g_bFullScreen != 0 ) g_bFullScreen = 1;
|
||
}
|
||
|
||
pText = strstr(buffer, "MouseType=");
|
||
if ( pText != NULL )
|
||
{
|
||
g_mouseType = GetNum(pText+10);
|
||
if ( g_mouseType < 1 ) g_mouseType = 1;
|
||
if ( g_mouseType > 9 ) g_mouseType = 9;
|
||
}
|
||
|
||
pText = strstr(buffer, "Benchmark=");
|
||
if ( pText != NULL )
|
||
{
|
||
g_benchmark = GetNum(pText+10);
|
||
if ( g_benchmark < 0 ) g_benchmark = 0;
|
||
if ( g_benchmark > 100000 ) g_benchmark = 100000;
|
||
if ( g_benchmark > 3099 ) g_bBenchmarkSuccess = 1, g_bTrueColor = 1, g_bTrueColorDecor;
|
||
}
|
||
|
||
pText = strstr(buffer, "TrueColor=");
|
||
if ( pText != NULL )
|
||
{
|
||
i = GetNum(pText + 10);
|
||
if (i == 8) g_bTrueColor = FALSE;
|
||
if (i == 16) g_bTrueColor = TRUE;
|
||
g_bTrueColorDecor = g_bTrueColor;
|
||
}
|
||
|
||
pText = strstr(buffer, "TrueColorBack=");
|
||
if ( pText != NULL )
|
||
{
|
||
i = GetNum(pText+14);
|
||
if (i == 8) g_bTrueColor = FALSE;
|
||
|
||
if (i == 16) g_bTrueColor = TRUE;
|
||
}
|
||
|
||
pText = strstr(buffer, "TrueColorDecor=");
|
||
if ( pText != NULL )
|
||
{
|
||
i = GetNum(pText + 15);
|
||
if (i == 8) g_bTrueColorDecor = FALSE;
|
||
|
||
if (i == 16) g_bTrueColorDecor = TRUE;
|
||
}
|
||
|
||
memstatus.dwLength = 32;
|
||
GlobalMemoryStatus(&memstatus);
|
||
if (memstatus.dwTotalPhys < 32000000)
|
||
{
|
||
g_bBenchmarkSuccess = FALSE;
|
||
}
|
||
if (g_bBenchmarkSuccess == FALSE)
|
||
{
|
||
g_bTrueColorBack = FALSE;
|
||
g_bTrueColorDecor = FALSE;
|
||
}
|
||
return TRUE;
|
||
}
|
||
|
||
// Rewrite Variables
|
||
|
||
void UpdateFrame(void)
|
||
{
|
||
RECT clip, rcRect;
|
||
UINT phase;
|
||
BOOL type;
|
||
POINT posMouse;
|
||
int i, term, speed, targetlevel;
|
||
|
||
g_pEvent->ReadInput();
|
||
phase = g_pEvent->GetPhase();
|
||
|
||
if (phase == g_lastPhase &&
|
||
phase == WM_PHASE_PLAY || phase == WM_PHASE_PLAYTEST || phase == WM_PHASE_BUILD)
|
||
{
|
||
type = g_pDecor->GetPause();
|
||
if (type == FALSE)
|
||
{
|
||
speed = g_pEvent->GetSpeed();
|
||
term = 0;
|
||
speed = speed * g_speedRate;
|
||
if (0 < speed)
|
||
{
|
||
do {
|
||
g_pDecor->MoveStep();
|
||
g_pEvent->DemoStep();
|
||
term++;
|
||
} while (term < speed);
|
||
}
|
||
}
|
||
|
||
if (phase == WM_PHASE_INIT)
|
||
{
|
||
g_pEvent->DemoStep(); // d<>marre <20>v. d<>mo automatique
|
||
}
|
||
|
||
if (phase == WM_PHASE_PLAYMOVIE || phase == WM_PHASE_WINMOVIE || phase == WM_PHASE_WINMOVIEDESIGN || phase == WM_PHASE_WINMOVIEMULTI)
|
||
{
|
||
g_pEvent->MovieToStart();
|
||
}
|
||
|
||
if (phase == WM_PHASE_INSERT)
|
||
{
|
||
g_pEvent->TryInsert();
|
||
}
|
||
|
||
if (phase == WM_PHASE_PLAY)
|
||
{
|
||
if (g_pEvent->IsPrivate() == FALSE)
|
||
{
|
||
if (g_pEvent->IsMulti() == FALSE)
|
||
{
|
||
if (g_pDecor->IsTerminated() == -1)
|
||
{
|
||
g_pEvent->GetWorldGroup();
|
||
g_pEvent->SetLives(g_pDecor->GetNbVies());
|
||
g_pEvent->ChangePhase(WM_PHASE_LOST);
|
||
}
|
||
if (g_pDecor->IsTerminated() == -2)
|
||
{
|
||
g_pEvent->SetLives(g_pDecor->GetNbVies());
|
||
g_pEvent->ChangePhase(WM_PHASE_WINMOVIE);
|
||
}
|
||
if (0 < g_pDecor->IsTerminated())
|
||
{
|
||
g_pEvent->SetLives(g_pDecor->GetNbVies());
|
||
g_pEvent->SetMission(g_pDecor->IsTerminated());
|
||
g_pEvent->ChangePhase(WM_PHASE_PLAY);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if (g_pDecor->IsTerminated() == -1)
|
||
{
|
||
g_pEvent->ChangePhase(WM_PHASE_WINm);
|
||
return;
|
||
}
|
||
if (g_pDecor->IsTerminated() != 0)
|
||
{
|
||
g_pEvent->ChangePhase(WM_PHASE_WINMOVIEm);
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if (g_pDecor->IsTerminated() == -1)
|
||
{
|
||
g_pEvent->ChangePhase(WM_PHASE_LOSTd);
|
||
return;
|
||
}
|
||
if (g_pDecor->IsTerminated() != 0)
|
||
{
|
||
g_pEvent->ChangePhase(WM_PHASE_WINMOVIEd);
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
|
||
|
||
|
||
// Incomplete
|
||
|
||
void SetDecor()
|
||
{
|
||
RECT rect;
|
||
UINT phase;
|
||
POINT posMouse;
|
||
char test[12];
|
||
|
||
g_pPixmap->MouseBackClear();
|
||
g_pEvent->GetLastMousePos();
|
||
phase = g_pEvent->GetPhase();
|
||
|
||
if (phase == WM_PHASE_PLAY || phase == WM_PHASE_PLAYTEST || phase == WM_PHASE_BUILD)
|
||
{
|
||
rect.top = 0;
|
||
rect.left = 0;
|
||
rect.bottom = LYIMAGE;
|
||
rect.right = LXIMAGE;
|
||
g_pDecor->Build(rect);
|
||
}
|
||
else
|
||
{
|
||
rect.top = 0;
|
||
rect.left = 0;
|
||
rect.bottom = LYIMAGE;
|
||
rect.right = LXIMAGE;
|
||
g_pPixmap->DrawImage(-1, CHBACK, rect, 1);
|
||
}
|
||
g_pEvent->DrawButtons();
|
||
g_lastPhase = phase;
|
||
g_pPixmap->MouseBackDraw();
|
||
return;
|
||
}
|
||
|
||
BOOL RestoreGame()
|
||
{
|
||
if ( g_pPixmap == NULL ) return FALSE;
|
||
|
||
g_pEvent->RestoreGame();
|
||
return g_pPixmap->Restore();
|
||
}
|
||
|
||
BOOL FlushGame()
|
||
{
|
||
if ( g_pPixmap == NULL ) return FALSE;
|
||
|
||
return g_pPixmap->Flush();
|
||
}
|
||
|
||
static void FinishObjects(void)
|
||
{
|
||
if ( g_pMovie != NULL )
|
||
{
|
||
g_pEvent->StopMovie();
|
||
|
||
delete g_pMovie;
|
||
g_pMovie = NULL;
|
||
}
|
||
|
||
if ( g_pEvent != NULL )
|
||
{
|
||
delete g_pEvent;
|
||
g_pEvent = NULL;
|
||
}
|
||
|
||
if ( g_pDecor != NULL )
|
||
{
|
||
delete g_pDecor;
|
||
g_pDecor = NULL;
|
||
}
|
||
|
||
if (g_pSound != NULL )
|
||
{
|
||
g_pSound->StopMusic();
|
||
|
||
delete g_pSound;
|
||
g_pSound = NULL;
|
||
}
|
||
|
||
if (g_pNetwork != NULL )
|
||
{
|
||
delete g_pNetwork;
|
||
g_pNetwork = NULL;
|
||
}
|
||
|
||
if ( g_pPixmap != NULL )
|
||
{
|
||
delete g_pPixmap;
|
||
g_pPixmap = NULL;
|
||
}
|
||
}
|
||
|
||
LRESULT CALLBACK WindowProc (HWND hWnd, UINT message,
|
||
WPARAM wParam, LPARAM lParam)
|
||
{
|
||
static HINSTANCE hInstance;
|
||
POINT mousePos, totalDim, iconDim;
|
||
|
||
if ( message == WM_SYSKEYDOWN && wParam == VK_F10 )
|
||
{
|
||
message = WM_KEYDOWN;
|
||
}
|
||
if ( message == WM_SYSKEYUP && wParam == VK_F10 )
|
||
{
|
||
message = WM_KEYUP;
|
||
}
|
||
|
||
if ( g_pEvent != NULL &&
|
||
g_pEvent->TreatEvent(message, wParam, lParam) ) return 0;
|
||
|
||
switch( message )
|
||
{
|
||
case WM_TIMER:
|
||
case WM_SYSCOLORCHANGE:
|
||
OutputDebug("Event WM_SYSCOLORCHANGE\n");
|
||
break;
|
||
case WM_CREATE:
|
||
hInstance = ((LPCREATESTRUCT)lParam)->hInstance;
|
||
return 0;
|
||
break;
|
||
|
||
case WM_ACTIVATEAPP:
|
||
g_bActive = (wParam != 0);
|
||
if (g_pEvent != NULL)
|
||
{
|
||
g_pEvent->FlushInput();
|
||
}
|
||
if ( g_bActive )
|
||
{
|
||
if ( g_bFullScreen )
|
||
{
|
||
RestoreGame();
|
||
g_lastPhase = 999;
|
||
}
|
||
if ( !g_bFullScreen && g_bTermInit )
|
||
{
|
||
totalDim.x = 256;
|
||
totalDim.y = 96;
|
||
iconDim.x = DIMLITTLEX;
|
||
iconDim.y = DIMLITTLEY;
|
||
g_pPixmap->BackgroundCache(CHLITTLE, "little.blp", totalDim, iconDim, TRUE);
|
||
g_pPixmap->SetTransparent(CHLITTLE, RGB(0,0,255));
|
||
|
||
g_pPixmap->SavePalette();
|
||
g_pPixmap->InitSysPalette();
|
||
}
|
||
SetWindowTextA(hWnd, "Blupi");
|
||
if ( g_pSound != NULL ) g_pSound->RestartMusic();
|
||
}
|
||
else
|
||
{
|
||
if ( g_bFullScreen )
|
||
{
|
||
FlushGame();
|
||
}
|
||
SetWindowTextA(hWnd, "Blupi -- stop");
|
||
if ( g_pSound != NULL ) g_pSound->SuspendMusic();
|
||
}
|
||
return 0;
|
||
|
||
case WM_KEYDOWN:
|
||
switch( wParam )
|
||
{
|
||
case VK_F5:
|
||
g_pEvent->SetSpeed(1);
|
||
break;
|
||
case VK_F6:
|
||
g_pEvent->SetSpeed(2);
|
||
break;
|
||
case VK_F7:
|
||
g_pEvent->SetSpeed(4);
|
||
break;
|
||
case VK_F8:
|
||
g_pEvent->SetSpeed(8);
|
||
break;
|
||
}
|
||
break;
|
||
|
||
case WM_DISPLAYCHANGE:
|
||
OutputDebug("Event WM_DISPLAYCHANGE\n");
|
||
break;
|
||
case WM_QUERYNEWPALETTE:
|
||
OutputDebug("Event WM_QUERYNEWPALETTE\n");
|
||
break;
|
||
case WM_PALETTECHANGED:
|
||
OutputDebug("Event WM_PALLETECHANGED\n");
|
||
break;
|
||
case MM_MCINOTIFY:
|
||
OutputDebug("Event MM_MCINOTIFY\n");
|
||
if ( g_pEvent->IsMovie() )
|
||
{
|
||
if ( wParam == MCI_NOTIFY_SUCCESSFUL )
|
||
{
|
||
g_pEvent->StopMovie();
|
||
}
|
||
}
|
||
else
|
||
{
|
||
g_pSound->SuspendMusic();
|
||
if ( wParam == MCI_NOTIFY_SUCCESSFUL )
|
||
{
|
||
OutputDebug("Event MCI_NOTIFY_SUCCESSFUL\n");
|
||
g_pSound->RestartMusic();
|
||
}
|
||
else
|
||
{
|
||
char s[50];
|
||
sprintf(s, "wParam=%d\n", wParam);
|
||
OutputDebug(s);
|
||
}
|
||
}
|
||
break;
|
||
|
||
case WM_LBUTTONDOWN:
|
||
GetCursorPos(&mousePos);
|
||
ScreenToClient(hWnd, &mousePos);
|
||
break;
|
||
|
||
case WM_DESTROY:
|
||
KillTimer(g_hWnd, 1);
|
||
FinishObjects();
|
||
PostQuitMessage(0);
|
||
break;
|
||
case WM_SETCURSOR:
|
||
// ChangeSprite();
|
||
// SetCursor(NULL);
|
||
return TRUE;
|
||
case WM_UPDATE:
|
||
if ( !g_pEvent->IsMovie() )
|
||
{
|
||
if ( g_bActive )
|
||
{
|
||
UpdateFrame();
|
||
}
|
||
g_pPixmap->Display();
|
||
}
|
||
break;
|
||
}
|
||
|
||
return DefWindowProc(hWnd, message, wParam, lParam);
|
||
|
||
}
|
||
|
||
LPTIMECALLBACK TimerStep()
|
||
{
|
||
if ((g_bActive != FALSE) && (g_bTimer == 0))
|
||
{
|
||
g_bTimer = 1;
|
||
PostAppMessageA(g_hWnd, 1025, 0, 0);
|
||
}
|
||
return NULL;
|
||
}
|
||
|
||
BOOL InitFail(const char *msg, BOOL bDirectX)
|
||
{
|
||
char buffer[100];
|
||
|
||
if ( bDirectX ) strcpy(buffer, "DirectX Init FAILED\n(while ");
|
||
else strcpy(buffer, "Error (");
|
||
strcat(buffer, msg);
|
||
strcat(buffer, ")");
|
||
MessageBoxA(g_hWnd, buffer, TITLE, MB_OK);
|
||
|
||
FinishObjects();
|
||
DestroyWindow(g_hWnd);
|
||
return FALSE;
|
||
}
|
||
|
||
int Benchmark()
|
||
{
|
||
struct _timeb tstruct;
|
||
int i, j, t1, t2, time;
|
||
RECT rect;
|
||
POINT dest;
|
||
_MEMORYSTATUS mem;
|
||
|
||
_ftime(&tstruct);
|
||
t1 = tstruct.millitm;
|
||
|
||
for (j = 0; j < 10; j++)
|
||
{
|
||
UpdateFrame();
|
||
SetDecor();
|
||
g_pPixmap->Display();
|
||
}
|
||
|
||
_ftime(&tstruct);
|
||
t2 = tstruct.millitm;
|
||
|
||
if (t1 > t2) t2 += 1000;
|
||
time = t2 - t1;
|
||
|
||
mem.dwLength = 32;
|
||
GlobalMemoryStatus(&mem);
|
||
FILE* file = NULL;
|
||
char string[100];
|
||
sprintf(string, "CheckTime = %d Memory = %d\r\n", time, mem.dwTotalPhys);
|
||
file = fopen("data\\time.blp", "wb");
|
||
if (file == NULL) return time;
|
||
fwrite(string, strlen(string), 1, file);
|
||
fclose(file);
|
||
|
||
return time;
|
||
}
|
||
|
||
static BOOL DoInit(HINSTANCE hInstance, LPSTR lpCmdLine, int nCmdShow)
|
||
{
|
||
WNDCLASSA wc;
|
||
POINT totalDim, iconDim;
|
||
RECT rcRect;
|
||
BOOL bOK;
|
||
|
||
bOK = ReadConfig(lpCmdLine);
|
||
|
||
InitHInstance(hInstance);
|
||
|
||
wc.style = CS_HREDRAW | CS_VREDRAW;
|
||
wc.lpfnWndProc = WindowProc;
|
||
wc.cbClsExtra = 0;
|
||
wc.cbWndExtra = 0;
|
||
wc.hInstance = hInstance;
|
||
wc.hIcon = LoadIconA(hInstance, "IDR_MAINFRAME");
|
||
wc.hCursor = LoadCursorA(hInstance, "IDC_POINTER");
|
||
wc.hbrBackground = GetStockBrush(BLACK_BRUSH);
|
||
wc.lpszMenuName = NAME;
|
||
wc.lpszClassName = NAME;
|
||
RegisterClassA(&wc);
|
||
|
||
if (g_bFullScreen)
|
||
{
|
||
g_hWnd = CreateWindowExA
|
||
(
|
||
WS_EX_TOPMOST,
|
||
NAME,
|
||
TITLE,
|
||
WS_POPUP,
|
||
0, 0,
|
||
GetSystemMetrics(SM_CXSCREEN),
|
||
GetSystemMetrics(SM_CYSCREEN),
|
||
NULL,
|
||
NULL,
|
||
hInstance,
|
||
NULL
|
||
);
|
||
}
|
||
else
|
||
{
|
||
int sx, sy;
|
||
RECT WindowRect;
|
||
|
||
sx = GetSystemMetrics(SM_CXSCREEN);
|
||
sy = GetSystemMetrics(SM_CYSCREEN);
|
||
|
||
SetRect(&WindowRect, (sx - LXIMAGE) / 2, (sy - LYIMAGE) / 2,
|
||
(sx + LXIMAGE) / 2, (sy + LYIMAGE) / 2);
|
||
AdjustWindowRect(&WindowRect, WS_POPUPWINDOW | WS_CAPTION, TRUE);
|
||
WindowRect.top += GetSystemMetrics(SM_CYCAPTION);
|
||
|
||
g_hWnd = CreateWindowA
|
||
(
|
||
NAME,
|
||
TITLE,
|
||
WS_POPUPWINDOW | WS_CAPTION | WS_VISIBLE,
|
||
(sx - LXIMAGE) / 2, (sy - LYIMAGE) / 2,
|
||
WindowRect.right - WindowRect.left,
|
||
WindowRect.bottom - WindowRect.top,
|
||
HWND_DESKTOP,
|
||
NULL,
|
||
hInstance,
|
||
NULL
|
||
);
|
||
}
|
||
if (!g_hWnd) return FALSE;
|
||
|
||
ShowWindow(g_hWnd, nCmdShow);
|
||
UpdateWindow(g_hWnd);
|
||
SetFocus(g_hWnd);
|
||
|
||
ChangeSprite(SPRITE_WAIT);
|
||
|
||
ZeroMemory(&g_pPixmap, sizeof(7068));
|
||
|
||
if (!bOK)
|
||
{
|
||
return InitFail("Game not correctly installed", FALSE);
|
||
}
|
||
|
||
|
||
g_pPixmap = new CPixmap;
|
||
if (g_pPixmap == NULL) return InitFail("New pixmap", TRUE);
|
||
|
||
totalDim.x = LXIMAGE;
|
||
totalDim.y = LYIMAGE;
|
||
if (!g_pPixmap->Create(g_hWnd, totalDim, g_bFullScreen, g_mouseType, g_bTrueColor, g_bTrueColorDecor))
|
||
return InitFail("Create pixmap", TRUE);
|
||
|
||
g_pPixmap->SetBenchmarkSuccess(g_bBenchmarkSuccess);
|
||
OutputDebug("Image: init\n");
|
||
totalDim.x = LXIMAGE;
|
||
totalDim.y = LYIMAGE;
|
||
iconDim.x = 0;
|
||
iconDim.y = 0;
|
||
|
||
if (!g_pPixmap->CacheAll(TRUE, g_hWnd, g_bFullScreen, g_bTrueColor, g_bTrueColorDecor, g_mouseType, "init.blp", 0))
|
||
return InitFail("CacheAll", TRUE);
|
||
|
||
OutputDebug("SavePalette\n");
|
||
g_pPixmap->SavePalette();
|
||
OutputDebug("InitSysPalette\n");
|
||
g_pPixmap->InitSysPalette();
|
||
g_pPixmap->SetTrueColor(TRUE);
|
||
g_pPixmap->SetTrueColorDecor(TRUE);
|
||
|
||
ZeroMemory(&g_pSound, sizeof(644));
|
||
|
||
g_pSound = new CSound;
|
||
if (g_pSound == NULL) return InitFail("New sound", TRUE);
|
||
|
||
g_pSound->Create(g_hWnd);
|
||
g_pSound->CacheAll();
|
||
g_pSound->SetState(TRUE);
|
||
|
||
ZeroMemory(&g_pMovie, sizeof(164));
|
||
|
||
g_pMovie = new CMovie;
|
||
if (g_pMovie == NULL) return InitFail("New movie", FALSE);
|
||
|
||
g_pMovie->Create();
|
||
|
||
ZeroMemory(&g_pDecor, sizeof(156448));
|
||
|
||
g_pDecor = new CDecor;
|
||
if (g_pDecor == NULL) return InitFail("New decor", FALSE);
|
||
|
||
g_pDecor->Create(g_hWnd, g_pSound, g_pPixmap, g_pNetwork);
|
||
|
||
ZeroMemory(&g_pEvent, sizeof(39904));
|
||
|
||
g_pEvent = new CEvent;
|
||
if (g_pEvent == NULL) return InitFail("New event", FALSE);
|
||
|
||
g_pEvent->Create(hInstance, g_hWnd, g_pPixmap, g_pDecor, g_pSound, g_pMovie, g_pNetwork);
|
||
g_pEvent->SetFullScreen(g_bFullScreen);
|
||
g_pEvent->SetMouseType(g_mouseType);
|
||
g_pEvent->ChangePhase(WM_PHASE_INIT);
|
||
|
||
ZeroMemory(&g_pNetwork, sizeof(20));
|
||
|
||
g_pNetwork = new CNetwork;
|
||
if (g_pNetwork == NULL) return InitFail("New network", FALSE);
|
||
g_pNetwork->CreateProvider(0);
|
||
|
||
g_bTermInit = TRUE;
|
||
return TRUE;
|
||
}
|
||
|
||
#if MMTIMER
|
||
void CALLBACK UpdateTimer_Proc(UINT uIDm, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2)
|
||
{
|
||
if (g_bActive && g_nbTimer == 0)
|
||
{
|
||
g_nbTimer++;
|
||
PostMessageA(g_hWnd, WM_UPDATE, NULL, NULL);
|
||
}
|
||
}
|
||
#endif
|
||
|
||
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
||
LPSTR lpCmdLine, int nCmdShow)
|
||
{
|
||
MSG msg;
|
||
LPTIMECALLBACK timeStep;
|
||
|
||
if ( !DoInit(hInstance, lpCmdLine, nCmdShow) )
|
||
{
|
||
return FALSE;
|
||
}
|
||
|
||
Benchmark();
|
||
|
||
#if MMTIMER
|
||
g_updateTimer = timeSetEvent(g_timerInterval, g_timerInterval / 4, UpdateTimer_Proc, NULL, TIME_PERIODIC);
|
||
|
||
|
||
#else
|
||
SetTimer(g_hWnd, 1, g_timerInterval, NULL);
|
||
#endif
|
||
|
||
#if THREAD
|
||
g_hScreenMutex = CreateMutex(NULL, FALSE, NULL);
|
||
g_hRunMutex = CreateMutex(NULL, TRUE, NULL);
|
||
g_threadNr = 0;
|
||
|
||
g_hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)ThreadDisplay, 0, DETACHED_PROCESS, &g_threadID);
|
||
|
||
#endif
|
||
|
||
while ( TRUE )
|
||
{
|
||
if ( PeekMessageA(&msg, NULL, 0,0, PM_NOREMOVE) )
|
||
{
|
||
if ( !GetMessage(&msg, NULL, 0, 0) )
|
||
{
|
||
return msg.wParam;
|
||
}
|
||
TranslateMessage(&msg);
|
||
DispatchMessageA(&msg);
|
||
}
|
||
else
|
||
{
|
||
if ( !g_bActive ) WaitMessage();
|
||
}
|
||
}
|
||
|
||
return msg.wParam;
|
||
}
|
||
|
||
#if THREAD
|
||
// Thread d'affichage.
|
||
|
||
static void ThreadDisplay(char* MyID)
|
||
{
|
||
UINT phase;
|
||
|
||
do
|
||
{
|
||
phase = g_pEvent->GetPhase();
|
||
if (phase == WM_PHASE_PLAY)
|
||
{
|
||
// Wait for display to be available, then lock it.
|
||
WaitForSingleObject(g_hScreenMutex, INFINITE);
|
||
|
||
SetDecor();
|
||
g_pPixmap->Display();
|
||
|
||
// Clear screen lock.
|
||
ReleaseMutex(g_hScreenMutex);
|
||
}
|
||
}
|
||
// Repeat while RunMutex is still taken.
|
||
while (WaitForSingleObject(g_hRunMutex, 10L) == WAIT_TIMEOUT);
|
||
}
|
||
#endif |