Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Mobile shadows
Some CMenuManager stuff reversed
- Loading branch information
There are no files selected for viewing
|
|
@@ -13,6 +13,7 @@ WRAPPER void CAudioEngine::SetMusicMasterVolume(signed char nVolume) { WRAPARG(n |
|
WRAPPER void CAudioEngine::SetEffectsMasterVolume(signed char nVolume) { WRAPARG(nVolume); EAXJMP(0x506E10); }
|
|
WRAPPER void CAudioEngine::SetEffectsMasterVolume(signed char nVolume) { WRAPARG(nVolume); EAXJMP(0x506E10); }
|
|
WRAPPER void CAudioEngine::SetRadioAutoRetuneOnOff(bool bRetune) { WRAPARG(bRetune); EAXJMP(0x506F80); }
|
|
WRAPPER void CAudioEngine::SetRadioAutoRetuneOnOff(bool bRetune) { WRAPARG(bRetune); EAXJMP(0x506F80); }
|
|
WRAPPER void CAudioEngine::RetuneRadio(signed char nStation) { WRAPARG(nStation); EAXJMP(0x507E10); }
|
|
WRAPPER void CAudioEngine::RetuneRadio(signed char nStation) { WRAPARG(nStation); EAXJMP(0x507E10); }
|
|
|
|
WRAPPER const char* CAudioEngine::GetRadioStationName(signed char nStation) { WRAPARG(nStation); EAXJMP(0x507000); }
|
|
|
|
|
|
|
|
|
|
signed char CAERadioTrackManager::GetNextTrackByStation(BYTE stationID)
|
|
signed char CAERadioTrackManager::GetNextTrackByStation(BYTE stationID)
|
|
|
|
|
|
@@ -87,6 +87,7 @@ class CAudioEngine |
|
void SetEffectsMasterVolume(signed char nVolume);
|
|
void SetEffectsMasterVolume(signed char nVolume);
|
|
void SetRadioAutoRetuneOnOff(bool bRetune);
|
|
void SetRadioAutoRetuneOnOff(bool bRetune);
|
|
void RetuneRadio(signed char nStation);
|
|
void RetuneRadio(signed char nStation);
|
|
|
|
const char* GetRadioStationName(signed char nStation);
|
|
};
|
|
};
|
|
|
|
|
|
extern CAudioEngine& AudioEngine;
|
|
extern CAudioEngine& AudioEngine;
|
|
|
|
|
|
@@ -8,6 +8,7 @@ |
|
#include "Audio.h"
|
|
#include "Audio.h"
|
|
#include "GroupedBuildings.h"
|
|
#include "GroupedBuildings.h"
|
|
#include "TxdStore.h"
|
|
#include "TxdStore.h"
|
|
|
|
#include "Object.h"
|
|
|
|
|
|
tFileLoaderList_IMG* CFileLoader::m_pImagesList;
|
|
tFileLoaderList_IMG* CFileLoader::m_pImagesList;
|
|
tFileLoaderList* CFileLoader::m_pObjectsList;
|
|
tFileLoaderList* CFileLoader::m_pObjectsList;
|
|
|
@@ -310,6 +311,7 @@ void CFileLoader::LoadLevels() |
|
}
|
|
}
|
|
|
|
|
|
// Pre-IPL stuff
|
|
// Pre-IPL stuff
|
|
|
|
MatchAllModelStrings();
|
|
InitModelIndices();
|
|
InitModelIndices();
|
|
|
|
|
|
// Wraps some calls
|
|
// Wraps some calls
|
|
|
|
|
|
@@ -26,6 +26,7 @@ WRAPPER void CFont::SetOrientation(unsigned char bOrientation) { WRAPARG(bOrient |
|
WRAPPER void CFont::PrintString(float posX, float posY, const char* pText) { WRAPARG(posX); WRAPARG(posY); WRAPARG(pText); EAXJMP(0x71A700); }
|
|
WRAPPER void CFont::PrintString(float posX, float posY, const char* pText) { WRAPARG(posX); WRAPARG(posY); WRAPARG(pText); EAXJMP(0x71A700); }
|
|
WRAPPER void CFont::PrintStringFromBottom(float posX, float posY, const char* pText) { WRAPARG(posX); WRAPARG(posY); WRAPARG(pText); EAXJMP(0x71A820); }
|
|
WRAPPER void CFont::PrintStringFromBottom(float posX, float posY, const char* pText) { WRAPARG(posX); WRAPARG(posY); WRAPARG(pText); EAXJMP(0x71A820); }
|
|
WRAPPER void CFont::InitPerFrame() { EAXJMP(0x719800); }
|
|
WRAPPER void CFont::InitPerFrame() { EAXJMP(0x719800); }
|
|
|
|
WRAPPER int CFont::GetNumberLines(float, float, const char* pText) { WRAPARG(pText); EAXJMP(0x71A5E0); }
|
|
|
|
|
|
unsigned char CFont::FindSubFontCharacter(char character, unsigned char bFontType)
|
|
unsigned char CFont::FindSubFontCharacter(char character, unsigned char bFontType)
|
|
{
|
|
{
|
|
|
|
|
|
@@ -95,6 +95,7 @@ class CFont |
|
static void PrintStringFromBottom(float posX, float posY, const char* pText);
|
|
static void PrintStringFromBottom(float posX, float posY, const char* pText);
|
|
static void SetWrapx(float fWrap);
|
|
static void SetWrapx(float fWrap);
|
|
static void InitPerFrame();
|
|
static void InitPerFrame();
|
|
|
|
static int GetNumberLines(float, float, const char* pText);
|
|
|
|
|
|
static void Initialise();
|
|
static void Initialise();
|
|
static void Shutdown();
|
|
static void Shutdown();
|
|
|
|
Oops, something went wrong.
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.