BSL:BFW Scripting Language: Difference between revisions

From OniGalore
Jump to navigation Jump to search
(rewrite; made page more concise; reorganized knowledge database; moved useful code snippets to BSL:Snippets)
(table-fied the kb and hid the incomplete pages; tweaked some wording in "Getting started")
 
(17 intermediate revisions by 4 users not shown)
Line 1: Line 1:
'''[[Modding_Oni#Introduction_to_the_Oni_engine|BFW]] Scripting Language''' (simply called '''BSL''') is what Oni scripts are written in. Being a scripting language, it is far more limited in scope and usage than a "real" programming language, as it was designed only to move events forward in the game, not to build programs. More specifically, BSL scripts are responsible for managing the player's objectives, creating environmental effects, and driving cutscenes.
'''BungieFrameWork Scripting Language''' (simply called '''BSL''') is what Oni's level scripts are written in. Being a game scripting language, BSL is far more limited in scope and usage than a full programming language, as it was designed only to move events forward in the game, not to build complete programs. Specifically, BSL scripts are responsible for managing the player's objectives, directing AIs, creating environmental effects and choreographing cutscenes.


Physically speaking, they are the .bsl files inside the [[IGMD|Oni/GameDataFolder/IGMD/]] folder. Being in plain-text, scripts can be edited with any word-processing program, such as the built-in WordPad (Windows) or TextEdit (Mac); the only requirement is that you must use the suffix ".bsl" for scripts instead of ".txt" (in Windows, you may have to turn on the displaying of file extensions to see the suffix).
Physically speaking, they are the .bsl files inside the [[IGMD|Oni/GameDataFolder/IGMD/]] folder. Stored in plain-text format, scripts can be edited with any word-processing program, such as the built-in Notepad (Windows) or TextEdit (Mac); the only requirement is that you must use the suffix ".bsl" for scripts instead of ".txt" (in Windows, you may have to turn on the displaying of file extensions to see the suffix).
__NOTOC__
==Getting started==
*You may wish to first read either the Introduction or the Manual page under {{SectionLink||Knowledge base}}. The Introduction is a quick reference, whereas the Manual includes an introductory lesson on programming concepts. It also documents known bugs in BSL and fixes/workarounds when available.
*For hands-on tutorials in writing BSL, see {{SectionLink||Tutorials}}.
*To learn BSL by example, you can read the .bsl files in the IGMD folder or look at some of the mods linked from {{SectionLink||Script mods}} and draw connections between the scripting commands and the resulting events in the game.


==Getting started==
==Script mods==
- To learn BSL by example, you can read the .bsl files in Oni's IGMD folder and draw connections to the events in the game that were produced by those scripts.<br>
Script mods are great examples of what can be achieved simply by editing text files. They replace or add to Oni's .bsl files to spice up the gameplay and provide a more exciting experience to those who have finished the game. However, they can only change the way that game data is used; adding new characters or changing the layout of a level, for instance, would require editing the actual [[OBD|game data]]. When new levels are created, these naturally require new scripts to be written from scratch to work with the assets and drive events in them.
- For a primer in writing BSL, see the Tutorials section below.<br>
 
- For a thorough listing of what's possible in BSL (a reference, not a primer), see the knowledge database below.<br>
One ambitious example of a script mod is [[AE:OTA|Oni Team Arena]]. Based on the desire for a [[multiplayer]] mode in Oni and inspired by Unreal Tournament, OTA creates a single-player "multiplayer experience" by adding bots and a scoring system. Other script mods range from free-for-all arenas to objective-based missions and enhancements of the original levels.
 
Script mods packaged for use with the [[Anniversary Edition]] are [http://mods.oni2.net/mods/Script listed here], and totally new levels with their own BSL files can be [http://mods.oni2.net/mods/New%20Level found here] (these mods are meant to be installed through the AE Installer). Older scripts, which need to be placed manually in IGMD, can be found [http://your-mom.oni2.net/Downloads.htm here] and [[User:Script_10k#Incomplete_.2F_ancient_scripts|here]].


==Scripted mods==
==Tutorials==
Scripted mods are great examples of what can be achieved simply by editing text files. They replace or add to Oni's .bsl files to create interesting and often amusing results. However, they can only change the way that game data is used; adding new characters or changing the layout of a level, for instance, would require editing the actual [[OBD|game data]]. When a new level is created for Oni, these also require new scripts to be written from scratch to take advantage of the new game assets.
;[[BSL:Tutorial/Console|Playing with the developer console]]
:The fastest way to start learning BSL is to load the first level and open the dev console.


One ambitious example of a scripted mods is [[AE:OTA|Oni Team Arena]]. Based on the desire for a [[multiplayer]] mode in Oni, and inspired by Unreal Tournament, OTA augments Oni's hand-to-hand combat and gunplay with a scoring system much like Unreal Tournament's Deathmatch mode. Other scripted mods range from free-for-all arenas to objective-based missions and enhancements of the original levels. They can spice up the gameplay and provide a more exciting experience to those who have finished the game. They keep the game alive, outside of its original levels. Scripted mods can be found [http://mods.oni2.net/mods/Script here], [http://your-mom.oni2.net/Downloads.htm here] and [http://script10000.oni2.net/scripts.html here].
;[[BSL:Tutorial/Scratch|New logic from scratch]]
:Create completely new level logic from scratch.


==Knowledge database==
;[[BSL:Tutorial/airport1_level_logic.bsl|Commented level script from Ch. 4 Airport]] (unfinished)
*[[BSL:Syntax|Introduction to syntax]]
:A commentary explaining how an existing level's logic is scripted.
*[[BSL:Tutorial|Beginner and advanced tutorials]]
*[[:Category:Scripting tasks|Scripting commands grouped by topic]]
*[[BSL:Reference|List of all functions and variables]]
*[[IGMD|Documentation of script files in game installation]]
*[[BSL:Snippets|Useful snippets of BSL]]


==Syntax overview==
==Knowledge base==
{| border="1" cellpadding="5" cellspacing="0" style="margin-left:auto; margin-right:auto;" align="center"
{| class="wikitable"
|+'''BSL syntax overview table'''
|-
| style="border-bottom:3px solid grey;"|
{| border="0"
|+''BSL separators''
|-
| width="100px" | [[BSL:Statements|<tt>;</tt>]]
| width="100px" | [[BSL:Functions|<tt>,</tt>]]
| width="100px" | [[BSL:Comments|<tt>#</tt>]]
| width="100px" | [[BSL:Types|<tt>"</tt>]]
|-
| width="100px" | [[BSL:Statements|<tt>{</tt>]]
| width="100px" | [[BSL:Statements|<tt>}</tt>]]
| width="100px" | [[BSL:Functions|<tt>(</tt>]]
| width="100px" | [[BSL:Functions|<tt>)</tt>]]
|-
| colspan="4" style="border-top:1px solid red; border-right:1px solid red; border-bottom:2px solid red; border-left:1px solid red;" |
Click on a separator for details
|}
|-
| style="border-bottom:3px solid grey;"|
{| border="0"
|+''BSL operators''
|-
| width="100px" | [[BSL:Operators|<tt>+</tt>]]
| width="100px" | [[BSL:Operators|<tt>-</tt>]]
| width="100px" | [[BSL:Variables|<tt>=</tt>]]
| width="100px" | [[BSL:Operators|<tt>!</tt>]]
|-
|-
| width="100px" | [[BSL:Operators|<tt>and</tt>]]
|[[BSL:Introduction|Introduction]]
| width="100px" | [[BSL:Operators|<tt>or</tt>]]
|A quick language reference, ideal for those with programming experience.
| width="100px" | [[BSL:Operators|<tt>eq</tt>]]
| width="100px" | [[BSL:Operators|<tt>ne</tt>]]
|-
|-
| width="100px" | [[BSL:Operators|<tt><</tt>]]
|[[BSL:Manual|Manual]]
| width="100px" | [[BSL:Operators|<tt>></tt>]]
|The complete language reference on BSL, with more explanations for newbies and details for power users.
| width="100px" | [[BSL:Operators|<tt><=</tt>]]
| width="100px" | [[BSL:Operators|<tt>>=</tt>]]
|-
|-
| colspan="4" style="border-top:1px solid red; border-right:1px solid red; border-bottom:2px solid red; border-left:1px solid red;" |
|[[BSL:Functions|Functions]] & [[BSL:Variables|Variables]]
Click on an operator for details
|All of the engine's built-in functions and variables.
|}
|-
|-
| style="border-bottom:3px solid grey;"|
|[[BSL:Defunct|Defunct commands]]
{| border="0"
|Apparently-obsolete commands.
|+''BSL keywords''
|-
|-
| width="75px" | [[BSL:Keywords|<tt>at</tt>]]
|[http://ssg.oni2.net/subfold/charas/charas.htm Characters], [http://ssg.oni2.net/subfold/consoles/consoles.htm Consoles] & [http://ssg.oni2.net/subfold/doors/doors.htm Doors]
| width="75px" | [[BSL:Types|<tt>float</tt>]]
|In-game IDs for each level of the game, useful when writing new scripts for those levels.
| width="75px" | [[BSL:Statements|<tt>if</tt>]]
| width="75px" | [[BSL:Keywords|<tt>repeat</tt>]]
| width="75px" | [[BSL:Types|<tt>string</tt>]]
|-
|-
| width="75px" | [[BSL:Types|<tt>bool</tt>]]
|[[IGMD|IGMD/]]
| width="75px" | [[BSL:Keywords|<tt>for</tt>]]
|The directory structure of the game scripts.
| width="75px" | [[BSL:Types|<tt>int</tt>]]
| width="75px" | [[BSL:Functions|<tt>return</tt>]]
| width="75px" | [[BSL:Keywords|<tt>using</tt>]]
|-
|-
| width="75px" | [[BSL:Statements|<tt>else</tt>]]
|[[IGMD/global|IGMD/global/]]
| width="75px" | [[BSL:Functions|<tt>fork</tt>]]
|A global scripting folder which can be used for patching.
| width="75px" | [[BSL:Keywords|<tt>iterate</tt>]]
| width="75px" | [[BSL:Keywords|<tt>schedule</tt>]]
| width="75px" | [[BSL:Variables|<tt>var</tt>]]
|-
|-
| width="75px" | [[BSL:Keywords|<tt>every</tt>]]
|[[BSL:Snippets|Snippets]]
| width="75px" | [[BSL:Functions|<tt>func</tt>]]
|Useful snippets of code.
| width="75px" | [[BSL:Keywords|<tt>over</tt>]]
<!--|-
| width="75px" | [[BSL:Keywords|<tt>sleep</tt>]]
|[[:Category:Scripting tasks|Scripting tasks]]
| width="75px" | [[BSL:Types|<tt>void</tt>]]
|Scripting commands grouped by subject (unfinished).
|-
|-
| colspan="5" style="border-top:1px solid red; border-right:1px solid red; border-bottom:2px solid red; border-left:1px solid red;" |
|[[BSL:List|List of built-in commands]]
Click on a keyword for details
|List of all scripting commands (unfinished).-->
|}
|}
|}


[[Category:BSL docs]]
[[Category:BSL docs]]

Latest revision as of 04:03, 19 May 2024

BungieFrameWork Scripting Language (simply called BSL) is what Oni's level scripts are written in. Being a game scripting language, BSL is far more limited in scope and usage than a full programming language, as it was designed only to move events forward in the game, not to build complete programs. Specifically, BSL scripts are responsible for managing the player's objectives, directing AIs, creating environmental effects and choreographing cutscenes.

Physically speaking, they are the .bsl files inside the Oni/GameDataFolder/IGMD/ folder. Stored in plain-text format, scripts can be edited with any word-processing program, such as the built-in Notepad (Windows) or TextEdit (Mac); the only requirement is that you must use the suffix ".bsl" for scripts instead of ".txt" (in Windows, you may have to turn on the displaying of file extensions to see the suffix).

Getting started

  • You may wish to first read either the Introduction or the Manual page under § Knowledge base. The Introduction is a quick reference, whereas the Manual includes an introductory lesson on programming concepts. It also documents known bugs in BSL and fixes/workarounds when available.
  • For hands-on tutorials in writing BSL, see § Tutorials.
  • To learn BSL by example, you can read the .bsl files in the IGMD folder or look at some of the mods linked from § Script mods and draw connections between the scripting commands and the resulting events in the game.

Script mods

Script mods are great examples of what can be achieved simply by editing text files. They replace or add to Oni's .bsl files to spice up the gameplay and provide a more exciting experience to those who have finished the game. However, they can only change the way that game data is used; adding new characters or changing the layout of a level, for instance, would require editing the actual game data. When new levels are created, these naturally require new scripts to be written from scratch to work with the assets and drive events in them.

One ambitious example of a script mod is Oni Team Arena. Based on the desire for a multiplayer mode in Oni and inspired by Unreal Tournament, OTA creates a single-player "multiplayer experience" by adding bots and a scoring system. Other script mods range from free-for-all arenas to objective-based missions and enhancements of the original levels.

Script mods packaged for use with the Anniversary Edition are listed here, and totally new levels with their own BSL files can be found here (these mods are meant to be installed through the AE Installer). Older scripts, which need to be placed manually in IGMD, can be found here and here.

Tutorials

Playing with the developer console
The fastest way to start learning BSL is to load the first level and open the dev console.
New logic from scratch
Create completely new level logic from scratch.
Commented level script from Ch. 4 Airport (unfinished)
A commentary explaining how an existing level's logic is scripted.

Knowledge base

Introduction A quick language reference, ideal for those with programming experience.
Manual The complete language reference on BSL, with more explanations for newbies and details for power users.
Functions & Variables All of the engine's built-in functions and variables.
Defunct commands Apparently-obsolete commands.
Characters, Consoles & Doors In-game IDs for each level of the game, useful when writing new scripts for those levels.
IGMD/ The directory structure of the game scripts.
IGMD/global/ A global scripting folder which can be used for patching.
Snippets Useful snippets of code.