mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 00:37:58 +03:00
Improve GameScriptLevel.
Rename LARA_DRAW_TYPE to LARA_TYPE as it's used in more than just drawing code. Make WEATHER_TYPE a scoped enum (would have done this for LARA_TYPE too but didn't want to pepper casts in other parts of the codebase). Relabel constants in both enums. Add kLaraTypes and kWeatherTypes and add them as tables in GameFlow. Remove Background member - it's not level-specific so GameFlow is a better home for it. Add (incomplete for now) documentation for some GameScriptLevel members - those I tested, at any rate.
This commit is contained in:
parent
4a2e61fcbc
commit
c96a92f1cb
3 changed files with 112 additions and 17 deletions
|
@ -1,27 +1,105 @@
|
|||
#include "framework.h"
|
||||
#include "GameScriptLevel.h"
|
||||
#include <unordered_map>
|
||||
|
||||
/***
|
||||
A container for level metadata - things which aren't present in the compiled
|
||||
level file itself.
|
||||
|
||||
@classmod Level
|
||||
@pragma nostrip
|
||||
*/
|
||||
|
||||
void GameScriptLevel::Register(sol::state* state)
|
||||
{
|
||||
state->new_usertype<GameScriptLevel>("Level",
|
||||
sol::constructors<GameScriptLevel()>(),
|
||||
|
||||
/// (string) todo
|
||||
//@mem name
|
||||
"name", &GameScriptLevel::NameStringKey,
|
||||
|
||||
/// (string) todo
|
||||
//@mem script
|
||||
"script", &GameScriptLevel::ScriptFileName,
|
||||
|
||||
/// (string) todo
|
||||
//@mem fileName
|
||||
"fileName", &GameScriptLevel::FileName,
|
||||
|
||||
/// (string) todo
|
||||
//@mem loadScreen
|
||||
"loadScreen", &GameScriptLevel::LoadScreenFileName,
|
||||
|
||||
/// (string) todo
|
||||
//@mem ambientTrack
|
||||
"ambientTrack", &GameScriptLevel::AmbientTrack,
|
||||
|
||||
/// (@{SkyLayer}) Primary sky layer
|
||||
//@mem layer1
|
||||
"layer1", &GameScriptLevel::Layer1,
|
||||
|
||||
/// (@{SkyLayer}) Secondary sky layer __(not yet implemented)__
|
||||
//@mem layer2
|
||||
"layer2", &GameScriptLevel::Layer2,
|
||||
|
||||
/// (@{Color}) distance fog RGB color (as seen in TR4's Desert Railroad).
|
||||
// if not provided, distance fog will be black.
|
||||
// __(not yet implemented)__
|
||||
//@mem fog
|
||||
"fog", &GameScriptLevel::Fog,
|
||||
|
||||
/// (bool) if set to true, the horizon and sky layer will be drawn; if set to false; they won't.
|
||||
//@mem horizon
|
||||
"horizon", &GameScriptLevel::Horizon,
|
||||
|
||||
/// (bool) if true, the horizon graphic will transition smoothly to the sky layer.
|
||||
// If set to false, there will be a black band between the two.
|
||||
// __(not yet implemented)__
|
||||
//@mem colAddHorizon
|
||||
"colAddHorizon", &GameScriptLevel::ColAddHorizon,
|
||||
|
||||
/// (bool) equivalent to classic TRLE's LIGHTNING setting.
|
||||
// If true, there will be a flickering lightning in the skylayer, as in the TRC Ireland levels.
|
||||
// __(thunder sounds not yet implemented)__
|
||||
//@mem storm
|
||||
"storm", &GameScriptLevel::Storm,
|
||||
"background", &GameScriptLevel::Background,
|
||||
|
||||
/// (WeatherType) Must be one of the values WeatherType.NORMAL, WeatherType.RAIN, or WeatherType.SNOW.
|
||||
// __(not yet implemented)__
|
||||
//@mem weather
|
||||
"weather", &GameScriptLevel::Weather,
|
||||
|
||||
/*** (LaraType) Must be one of the LaraType values.
|
||||
These are:
|
||||
|
||||
NORMAL
|
||||
YOUNG
|
||||
BUNHEAD
|
||||
CATSUIT
|
||||
DIVESUIT
|
||||
INVISIBLE
|
||||
|
||||
e.g. `myLevel.laraType = LaraType.DIVESUIT`
|
||||
|
||||
__(not yet fully implemented)__
|
||||
@mem laraType*/
|
||||
"laraType", &GameScriptLevel::LaraType,
|
||||
|
||||
/// (bool) todo
|
||||
//@mem rumble
|
||||
"rumble", &GameScriptLevel::Rumble,
|
||||
|
||||
/// (bool) todo
|
||||
//@mem resetHub
|
||||
"resetHub", &GameScriptLevel::ResetHub,
|
||||
|
||||
/// (Mirror) todo
|
||||
//@mem mirror
|
||||
"mirror", &GameScriptLevel::Mirror,
|
||||
|
||||
/// (table of InventoryObjects) todo
|
||||
//@mem mirror
|
||||
"objects", &GameScriptLevel::InventoryObjects
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue