 |
Blamite Game Engine - blam!
00406.12.10.23.1457.blamite
The core library for the Blamite Game Engine.
|
Go to the documentation of this file.
38 std::ifstream engine_conf(
"engine.config");
40 ImGui::TextColored(
ImVec4(1.0, 0.0, 0.0, 1.0),
"this does not function and is not used, use the new config editor instead");
47 static bool read_only =
false;
48 static char text[1024 * 16] =
49 "#################################"
50 "\n# Blamite Engine Configuration #"
51 "\n# (c) Elaztek Studios 2016 #"
52 "\n#################################"
54 "\nbink - enabled : true"
55 "\nuseSwitches : true"
58 "\nuseLegacyFileStructure : false"
59 "\nuseDedicated : true"
60 "\ndedicatedHost : 343.host.elaztek.com"
61 "\ndedicatedFallback : i01.host.elaztek.com"
62 "\ndedicatedFallback2 : contingency.host.elaztek.com"
65 "\ncheckSignatures : true"
66 "\nenableElaztekExtended : true"
67 "\nlaunchMode : retail"
68 "\ninit - level : mainmenu"
69 "\ns_hsc_ver : 15267.10.13.16.0467.blamite"
70 "\nhavok_cloth_phys :"
71 "\nhavok_impact_phys :"
72 "\nhavok_physics_engine :"
73 "\nachi_enabled : true"
74 "\nvoice_server : ts.elaztek.com"
75 "\nvoice_default_channel : 57"
76 "\nshow_ts_window : false"
77 "\npoly_limit : 32767"
78 "\nr_wireframe : false"
79 "\nrender_preset : blam"
81 "\nsys_font : fixedsys - embedded"
@ ImGuiInputTextFlags_ReadOnly
Definition: imgui.h:769
IMGUI_API bool Checkbox(const char *label, bool *v)
Definition: imgui_widgets.cpp:974
bool show
Controls whether or not the group should be shown. May not be used in all groups.
Definition: imgui.h:34
IMGUI_API float GetTextLineHeight()
Definition: imgui.cpp:6837
IMGUI_API void End()
Definition: imgui.cpp:6016
Class representing an ImGUI window.
Definition: imgui.h:31
IMGUI_API bool Begin(const char *name, bool *p_open=NULL, ImGuiWindowFlags flags=0)
Definition: imgui.cpp:5397
@ ImGuiInputTextFlags_AllowTabInput
Definition: imgui.h:765
#define IM_ARRAYSIZE(_ARR)
Definition: imgui.h:75
IMGUI_API bool InputTextMultiline(const char *label, char *buf, size_t buf_size, const ImVec2 &size=ImVec2(0, 0), ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=NULL, void *user_data=NULL)
Definition: imgui_widgets.cpp:3074
BLAM BlamResult RunCommandLine(std::string command_line)
Executed the provided string as a console command.
Definition: console.cpp:260
An incomplete configuration editor, using raw text.
Definition: config_editor.hpp:22
IMGUI_API void TextColored(const ImVec4 &col, const char *fmt,...) IM_FMTARGS(2)
Definition: imgui_widgets.cpp:257
void Draw()
Draws the window.
Definition: config_editor.hpp:28
IMGUI_API bool Button(const char *label, const ImVec2 &size=ImVec2(0, 0))
Definition: imgui_widgets.cpp:644