Difference between revisions of "HPL2/ScriptReference"
m (Added a category) |
(→Script Language Reference and Guide: Removed the WIP template (mistakenly categorises as stub)) |
||
Line 7: | Line 7: | ||
Every topic begins with the "At a Glance" section, which is intended to be used as a quick remainder, a "cheat-sheet" of sorts; if you're new to the topic, you can skip to the "Discussion" section which follows immediately. | Every topic begins with the "At a Glance" section, which is intended to be used as a quick remainder, a "cheat-sheet" of sorts; if you're new to the topic, you can skip to the "Discussion" section which follows immediately. | ||
− | |||
− | |||
==Articles== | ==Articles== |
Revision as of 13:36, 30 July 2020
Script Language Reference and Guide
This section will explain the features of AngelScript, the script language used by Amnesia (the syntax, data types, variables, functions, control flow statements, OOP support, etc.), and provide a guide on how to use these features in the context of the HPL2 engine. This is the fundamental knowledge that will help you understand how map scripting for Amnesia works. This guide is intended to teach you scripting (programming), and to be used as a reference to the features and the rules of the script language itself. It is not meant to teach you how to accomplish specific tasks in your custom stories and full conversions for Amnesia (although you might end up learning a few things about that as well).
If you are just starting out, you'll probably want to go through the topics in the order listed here. If you feel more comfortable with the scripting language, you can jump right to any page you want. Each topic assumes you're familiar (at lest to some extent) with the topics that come before it in this list.
Every topic begins with the "At a Glance" section, which is intended to be used as a quick remainder, a "cheat-sheet" of sorts; if you're new to the topic, you can skip to the "Discussion" section which follows immediately.
Articles
- Quick Start - a quick introduction to map scripting
- Execution Flow - explains how program flow is transfered from the game to the script engine, and vice versa
- Variables - explains what variables are and how to use them
- Types - discusses various types supported by the script language
- Constants and Enumerations - explains how to define constant values
- Functions - Part 1: The Basics - explains the basics of functions, and how to create them and use them
- Control Flow - Part 1: Conditional Statements - explains if, if-else, and switch statements, which are used to make decisions
- Control Flow - Part 2: Loops - discusses while, do-while and for loops
- Functions - Part 2: Beyond the Basics - explains const-parameters, function overloading and function wrapping
- Functions - Part 3: Digging Deeper - explains passing by reference, using callbacks and using funcdefs
To do: What follows is a short list of topics which wait to be documented:
- Arrays - array types in detail
- Object oriented programming - classes, composition, inheritance, polymorphism
- Debugging - a brief overview of common mistakes and of debugging ideas
- Sandbox Maps - simple maps to help you learn.