* New LEVEL2.LVL was not being displayed correctly as I forgot to include the new tiles on Game.c.

* Some work done on runway exit detection, but still TODO.
* Minor change in LoadMenu.c.
This commit is contained in:
XaviDCR92 2017-12-29 02:57:40 +01:00
parent eb6f4d6d8c
commit fef6629d96
11 changed files with 855 additions and 804 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -262,21 +262,12 @@ void ISR_LoadMenuVBlank(void)
SystemIncreaseGlobalTimer();
if (SystemIsBusy() != false)
if ( (SystemIsBusy() != false)
||
(GfxIsGPUBusy() != false)
||
(SerialIsBusy() != false) )
{
dprintf("SystemIsBusy...\n");
return;
}
if ((GfxIsGPUBusy() != false))
{
dprintf("(GfxIsGPUBusy() != false)\n");
return;
}
if (SerialIsBusy() != false)
{
dprintf("Serialisbusy\n");
return;
}

View File

@ -76,7 +76,7 @@ SOUND_OBJECTS = $(addprefix $(OBJ_SOUNDS_DIR)/, BELL.VAG \
# Level objects:
SRC_LEVELS_DIR = $(PROJECT_DIR)/Levels
OBJ_LEVELS_DIR = $(CDROM_ROOT)/DATA/LEVELS
LEVEL_OBJECTS = $(addprefix $(OBJ_LEVELS_DIR)/, LEVEL1.LVL LEVEL1.PLT)
LEVEL_OBJECTS = $(addprefix $(OBJ_LEVELS_DIR)/, LEVEL1.LVL LEVEL2.LVL LEVEL2.PLT LEVEL1.PLT)
# Sprite objects:
BMP2TIM = bmp2tim

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.0.3, 2017-12-27T11:30:21. -->
<!-- Written by QtCreator 4.0.3, 2017-12-27T14:24:53. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
@ -62,7 +62,7 @@
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.7.0 MinGW 32bit</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.7.0 MinGW 32bit</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.57.win32_mingw53_kit</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
@ -291,8 +291,8 @@
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.CommandLineArguments"></value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.ProFile">MapEditor.pro</value>
<value type="bool" key="Qt4ProjectManager.Qt4RunConfiguration.UseDyldImageSuffix">false</value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory">C:/cygwin/home/Xavier/Airport/Source/MapEditor</value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory.default">C:/cygwin/home/Xavier/Airport/Source/build-MapEditor-Desktop_Qt_5_7_0_MinGW_32bit-Debug</value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory"></value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory.default">C:/cygwin/home/Xavier/Airport/Source/MapEditor</value>
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>

View File

@ -1,2 +1,2 @@
[app_settings]
last_dir=C:/cygwin/home/Xavier/Airport/Levels/LEVEL2.LVL
last_dir=C:/cygwin/home/Xavier/Airport/Levels/LEVEL1.LVL

View File

@ -5,4 +5,17 @@ tile2 = "Water"
tile3 = "Asphalt"
tile4 = "Runway mid"
tile5 = "Runway start/end 1"
tile6 = "Runway start/end 2"
tile6 = "Runway start/end 2"
tile7 = "Parking 1"
tile8 = "Parking 2"
tile9 = "Taxiway crossing, grass border"
tile10 = "Taxiway, grass border"
tile11 = "Taxiway corner, grass border 1"
tile12 = "Water grass border 1"
tile13 = "Water grass border 2"
tile14 = "Runway holding point 1"
tile15 = "Runway holding point 2"
tile16 = "Runway enter/exit, asphalt border 1"
tile17 = "Taxiway corner, grass border 2"
tile18 = "Taxiway 4-way crossing, grass border"
tile19 = "Runway enter/exit, asphalt border 2"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 KiB

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.