Skip to content

Doc_Halo1_GettingStarted

Martin Ballantyne edited this page Mar 2, 2015 · 1 revision

Introduction

It is assumed that you have downloaded and are using the latest version of OpenSauce. Note that OS only supports v1.10 of HaloCE.

Common Notes

Debug and various other files (eg, sapien_model_index.dat) that use to be created in the same directory as the .exe which created them are now all found in My Documents\My Games\Halo CE\OpenSauce\Reports\. This obviously only applied to cases where you're using an OS program. If you're using a stock (ie, non-OS) version of a tool or game, it's the same shit, different day, in terms of functionality.

OpenSauce for the HEK

How it all plugs in

When the "CheApe" modifications are applied, the installer first makes copies of the HEK exes. Eg, it makes a copy of tool.exe and names it OS_tool.exe. All copies use the "OS_" prefix. The copy is then modified to load a specific build of the CheApe dll. Eg, OS_tool.exe will load CheApeDLLT.dll, where the letter before the extension corresponds to the first letter of the tool (so, G for Guerilla, etc).

We now have the "OS HEK". There's one more, dynamic, component to this setup though: CheApe.map. This is not a map file like bloodgulch.map. It's a memory cache of prebaked binary data which the CheApe DLLs all load and then use to fixup their owning exe (eg, OS_tool.exe) with the various definitions. Definitions found in CheApe.map include custom tag groups, script functions, etc.

When it comes to new GFX, scripting, etc features, none of them are actually implemented in the HEK. They're only stubbed out enough to allow the tools to interface or make use of them. So you won't see detail maps in Sapien or be able to use physics_set_gravity in the console. Such things can only be fully used in game.

Setting up your scenario

OS makes a couple of modifications to the scenario. One, it changes the very first field, a tag_reference, become a project_yellow tag reference. This is how we link in OS-specific data.

Another modification is to the hs-syntax-data. OS-made scenario tags by default have an upgraded script node count. This count makes the scenario tag incompatible with the stock HEK. But, you can still use the stock build-cache-file command in OS_tool.exe to build .map files compatible with the stock game. With that said, you should only be using to the OS HEK to create OS-bound maps. Use the stock HEK to create regular maps and tags.

Setting up your project yellow definition

The project_yellow tag group can be considered OS's equivalent to a "scenario" tag. This tag is referenced by .scenario tags. So you must first create a new project_yellow tag, just like you would any other new tag. By convention, it's best to save this in the same directory as the owner scenario tag.

Let's take levels\test\tutorial\ for example. We would first copy levels\test\tutorial\tutorial.scenario and rename it to tutorial_os.scenario (remember, scenarios made/edited by the OS HEK can't be read by the stock HEK). We would then create levels\test\tutorial\tutorial_os.project_yellow. Withtutorial_os.scenario open in OS_Guerilla, we would then set the "project yellow definitions" field to reference our tutorial_os.project_yellow tag.

Now our scenario is setup to to use custom project_yellow data.

Setting up your project yellow globals definition

Setting up a project_yellow_globals tag is pretty simple. By convention, this should be stored in your globals\ folder. For example, let's say we created a globals\globals_os.project_yellow_globals tag. In our tutorial_os.project_yellow we created earlier, we would then set the field named "yelo globals" to reference our globals\globals_os.project_yellow_globals tag.

Note that you can also setup your project_yellow tag to use a different stock .globals tag as well, via the "globals override" field.

OpenSauce for the Game

The installer for OS should take care of pretty much everything needed to use the extensions with the game (eg, putting the DLLs in your selected HCE install path, patching the game/HEK, etc). There are a couple of cases where user intervention is required (eg, when installing a mod's Mod-Set data files), but let's first go over how OS hooks into the game exes.

How it all plugs in

For the client (haloce.exe), we use a proxy dinput8.dll file (aka a 'dll hook'). What this means is that we compiled all of our code into a dll, renamed it to a dll the game looks for and uses, then we ourselves load the real dll and run off that, and finally, we place our dll into the same directory as the exe file. Essentially we wrap the DirectX 8 APIs.

For the dedi (haloceded.exe), we actually copy the exe, rename the copy to OS_haloceded.exe, and then modify that exe to load our "OpenSauceDedi.dll" (which is based on the same code used to build our proxy dinput8.dll, except it's made just for and has features specific to the dedi server).

Playing the game with OS

There's nothing you need to do to run haloce.exe with OS, it's all taken care of behind the scenes. If, however, you want to play haloce.exe without running the OS extensions, you'll need to move the dinput8.dll out of your haloce.exe's directory (and then put it back when you want to use it again).

For the dedicated server, you need to run OS_haloceded.exe instead of just haloceded.exe. This setup also makes it easier for server hosters to run both stock and OS servers at the same time, from the same directory.

Yelo maps

.yelo map files are map files that are specially made for features/settings in OS that are incompatible with the stock game. Things like increased memory, mod-sets, new script support, etc all fall into this category.

How it .yelo support implemented? We override the normal map loading process so that if a .map file isn't found, it tries looking for a .yelo file instead. Eg, if the game says it wants to run "zanzibar", it will still try to load zanzibar.map first. If it exists, everything goes about as normal. If it doesn't, it tries to load zanzibar.yelo instead. If neither exist, then the game does the default handling of a non-existent map file.

If both zanzibar.map and zanzibar.yelo exist at the same time, zanzibar.map will be loaded first, unless you have chosen to prioritise loading of .yelo maps in your settings.

Clone this wiki locally