419f09f804
I have added a fledgling replay system that records flight data and control positions during the flight. I have added an internal command called "replay" which will trigger a replay of the entire saved flight data set. This could be bound to a keyboard or menu command, in fact this entire module is screaming for someone to build a gui to control playback speed, amount of playback, etc. This is the initial version so there are kinks that still need to be worked out, please be patient.
50 lines
765 B
Makefile
50 lines
765 B
Makefile
if ENABLE_WEATHERCM
|
|
WEATHER_DIR = WeatherCM
|
|
else
|
|
WEATHER_DIR = Environment
|
|
endif
|
|
|
|
if HAVE_PLIB_PSL
|
|
SCRIPTING_DIRS = Scripting
|
|
else
|
|
SCRIPTING_DIRS =
|
|
endif
|
|
|
|
if ENABLE_MPLAYER_AS
|
|
MPLAYER_DIRS = MultiPlayer
|
|
else
|
|
MPLAYER_DIRS =
|
|
endif
|
|
|
|
if ENABLE_NETWORK_OLK
|
|
NETWORK_DIRS = NetworkOLK
|
|
else
|
|
NETWORK_DIRS =
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
Include \
|
|
Aircraft \
|
|
Airports \
|
|
ATC \
|
|
Autopilot \
|
|
Cockpit \
|
|
Controls \
|
|
FDM \
|
|
GUI \
|
|
Input \
|
|
Instrumentation \
|
|
Model \
|
|
Navaids \
|
|
Network \
|
|
$(MPLAYER_DIRS) \
|
|
$(NETWORK_DIRS) \
|
|
Objects \
|
|
Replay \
|
|
Scenery \
|
|
$(SCRIPTING_DIRS) \
|
|
Sound \
|
|
Systems \
|
|
Time \
|
|
$(WEATHER_DIR) \
|
|
Main
|