Difference between revisions of "HPL3/Scripting/Scripting Guide/Setting up CodeLite"
Line 19: | Line 19: | ||
==Setting-up CodeLite== | ==Setting-up CodeLite== | ||
+ | This section explains how to configure CodeLite so it can be suitable for HPL3 scripting, how to create a workspace and a project, and how to import the script files. | ||
+ | |||
{{Note|You must install CodeLite on the same disk as the game you want to mod. For example, if Amnesia: Rebirth is installed on disk C:, you have to install CodeLite on C: as well.}} | {{Note|You must install CodeLite on the same disk as the game you want to mod. For example, if Amnesia: Rebirth is installed on disk C:, you have to install CodeLite on C: as well.}} | ||
#[[CodeLite#Optimized_Color_Theme|Download the optimized color theme]] | #[[CodeLite#Optimized_Color_Theme|Download the optimized color theme]] | ||
#[https://downloads.codelite.org/ReleaseArchive.php Download CodeLite version 12.0.0.] | #[https://downloads.codelite.org/ReleaseArchive.php Download CodeLite version 12.0.0.] | ||
− | #Launch CodeLite and configure: | + | #'''Launch CodeLite and configure:''' |
##<code>Settings → Code Completion → General</code>: | ##<code>Settings → Code Completion → General</code>: | ||
##*Add <code>;*.hps</code> at the end of the <code>Additional file extensions to parse</code> list. | ##*Add <code>;*.hps</code> at the end of the <code>Additional file extensions to parse</code> list. | ||
Line 32: | Line 34: | ||
##<code>Settings → Colours and Fonts...</code>: Click on <code>Import settings from a zip archive</code> and select the <code>CodeLiteColorSettings.zip</code> file. | ##<code>Settings → Colours and Fonts...</code>: Click on <code>Import settings from a zip archive</code> and select the <code>CodeLiteColorSettings.zip</code> file. | ||
##Configure the rest of CodeLite to your liking. | ##Configure the rest of CodeLite to your liking. | ||
− | #Create a new workspace: Create a folder inside your game directory and name it <code>_src | + | #'''Create a new workspace:''' Create a folder inside your game directory and name it <code>_src</code>. Go to the <code>Workspace</code> menu and click on <code>New Workspace...</code>. Save the workspace inside the <code>_src</code> folder. |
− | #Create a new project | + | #'''Create a new project:''' <code>Right click on the workspace → New → New Project</code>. Select <code>Others → Non-code project</code>. Give the project a name (For example: "soma"). Leave the rest as default. |
− | #Add | + | #'''Add a folder to the project:''' Right-click on the project folder and choose <code>New Virtual Folder</code>. Name it <code>_api</code>. |
#Time to add files to the project. | #Time to add files to the project. | ||
##Right-click on _api and Add An Existing File, add the file "SOMA GAME FOLDER LOCATION/hps_api.hps" (might need to launch the game executable one time to have this file created). | ##Right-click on _api and Add An Existing File, add the file "SOMA GAME FOLDER LOCATION/hps_api.hps" (might need to launch the game executable one time to have this file created). | ||
Line 48: | Line 50: | ||
==Issues & Info== | ==Issues & Info== | ||
− | *Write Class@ object and not Class @object, the | + | *Write <code>Class@ object</code> and not <code>Class @object</code>, the latter will screw up coloring. |
− | *If you | + | *If you lose coloring / code completion and can't get it back, re-parse the workspace: <code>Parse Workspace</code>. |
− | *Parameters with &in | + | *Parameters with <code>&in</code> might break the coloring of function parameters, but will have no other side-effects. |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{NavBar|HPL3/Scripting/What is scripting in HPL3?|What is scripting in HPL3?|HPL3/Scripting/HPL3 Scripting Guide|HPL3 Scripting Guide|HPL3/Scripting/Launching the Game from CodeLite|Launching the Game from CodeLite}} | {{NavBar|HPL3/Scripting/What is scripting in HPL3?|What is scripting in HPL3?|HPL3/Scripting/HPL3 Scripting Guide|HPL3 Scripting Guide|HPL3/Scripting/Launching the Game from CodeLite|Launching the Game from CodeLite}} |
Revision as of 18:47, 8 August 2020
This is a quick guide on how to set-up the third party scripting tool - CodeLite.
CodeLite - Introduction
As mentioned Scripting in HPL3 can look a lot like regular programming, but less complicated.
Because of that, we need tools that will be able to aid us when we write our code. For HPL2, Notepad++ or even Notepad were enough for that. This time around, something more powerful is needed.
CodeLite is very much like a text editor, but much more programming-oriented than Notepad++. It is the tool used officially by Frictional Games to develop their HPL3 games. Here are some of the relevant features of CodeLite:
- Code documentation on the fly
- Code autocompletion and smart code suggestion
- Fast and easy way to navitgate through large script files
- The ability to run the game from CodeLite
For the scripting guide, CodeLite 12.0.0 will be used, which is the latest stable release that can work with HPL3 without any errors or bugs.
Setting-up CodeLite
This section explains how to configure CodeLite so it can be suitable for HPL3 scripting, how to create a workspace and a project, and how to import the script files.

- Download the optimized color theme
- Download CodeLite version 12.0.0.
- Launch CodeLite and configure:
Settings → Code Completion → General
:- Add
;*.hps
at the end of theAdditional file extensions to parse
list. - Enable
Keep function signature un-formatted.
- Enable
Re-parse on workspace loaded
.
- Add
Settings → Code Completion → Colouring
: EnableApply context aware colouring
.Settings → Code Completion → CTags → Search Paths
: ClickAdd...
, navigate to the game folder and select thescript
folder.Settings → Colours and Fonts...
: Click onImport settings from a zip archive
and select theCodeLiteColorSettings.zip
file.- Configure the rest of CodeLite to your liking.
- Create a new workspace: Create a folder inside your game directory and name it
_src
. Go to theWorkspace
menu and click onNew Workspace...
. Save the workspace inside the_src
folder. - Create a new project:
Right click on the workspace → New → New Project
. SelectOthers → Non-code project
. Give the project a name (For example: "soma"). Leave the rest as default. - Add a folder to the project: Right-click on the project folder and choose
New Virtual Folder
. Name it_api
. - Time to add files to the project.
- Right-click on _api and Add An Existing File, add the file "SOMA GAME FOLDER LOCATION/hps_api.hps" (might need to launch the game executable one time to have this file created).
- Right-click on the project in the list to the left, pick Import Files From Directory. Navigate to the SOMA GAME FOLDER and select it. In the next window, check the boxes for maps and scripts and make sure that the *.hps file extension is present in the list of extentions to import. Click OK.
That should be it, you should now have three top folders in your project and a lot of sub-folders with various script files. Hps files should be color coded and parsed for completion as you open them in the project. If they do not, you can re-tag the workspace, project or the single file to see if it helps.
Start typing something, for example Entity (depending on configuration this can be case sensitive!) and a drop down should appear showing all the functions that begin with Entity and the documentation for each selected function. You can force things to appear using these shortcuts:
- ctrl-space will bring up the completion drop down.
- ctrl-shift-space will bring up hints when inside the () of a function.
Issues & Info
- Write
Class@ object
and notClass @object
, the latter will screw up coloring. - If you lose coloring / code completion and can't get it back, re-parse the workspace:
Parse Workspace
. - Parameters with
&in
might break the coloring of function parameters, but will have no other side-effects.