SQF Highlighter – Extension

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add CSS classes and Known Issues)
m (Fix)
Line 108: Line 108:
== CSS Classes ==
== CSS Classes ==


All elements are {{hl|<nowiki><span></nowiki>}}.
All elements are {{hl|'''<nowiki><span></nowiki>'''}} but the parent block that is a {{hl|'''<nowiki><div></nowiki>'''}}.
{| class="wikitable"
{| class="wikitable"
! Element
! Element
Line 172: Line 172:
| <sqf>// anything will go but UNDERSCORED_ALL_CAPS
| <sqf>// anything will go but UNDERSCORED_ALL_CAPS
GlobalVar = 1;</sqf>
GlobalVar = 1;</sqf>
|-
| macro
| sqfhighlighter-'''macro'''
| <sqf>#define
#if
#endif</sqf>
|-
|-
| constant ({{hl|#define}}d value)
| constant ({{hl|#define}}d value)
Line 179: Line 185:


testVar;
testVar;
 
otherVar;
MY_CONSTANT;</sqf>
MY_CONSTANT;</sqf>
|-
| macro
| sqfhighlighter-'''macro'''
| <sqf>#define</sqf>
|-
|-
| array start ({{hl|[}})
| array start ({{hl|[}})
Line 215: Line 217:


* comment blocks still highlight words as global variables for now
* comment blocks still highlight words as global variables for now
* #if are considered as keywords
* single-quote strings have issues with other formatting between quotes
* single-quote strings have issues with other formatting between quotes
* negative numbers should see the minus sign coloured as well
* report other issues on [https://discord.gg/arma Discord]
* report other issues on [https://discord.gg/arma Discord]

Revision as of 03:12, 15 March 2022

SQF Highlighter
Description Highlights and links SQF commands and functions
Author Lou Montana
Version 0.5b
(version is not incremented for now
due to continuous updates as of 2022-03-14)
Release Date 2022-03-12: First upload
Project Start 2022-03-08: Project start

This extension highlights and automatically links SQF commands and functions.


Installation

  • Unzip the directory to wiki/extensions/SQFHighlighter
  • Add wfLoadExtension('SQFHighlighter'); to LocalSettings.php
  • There are no settings - the extension creates full path links unless the host is one of the following (then relative links are created):
    • community.bistudio.com
    • community.bohemia.net


Usage

Using <sqf> tags will auto-generate syntax highlighting and links to the pages.

Examples
Code Result
<sqf/>
-no SQF code provided-
<sqf></sqf>
-no SQF code provided-
<sqf> </sqf>
-no SQF code provided-
<sqf>hint "It Works!";</sqf>
hint "It Works!";
<sqf>
// your code here
hint "good!";
</sqf>
// your code here hint "good!";
<sqf>
#define fadeInDuration 3

waitUntil { not alive player };
hint DEATH_MESSAGE;
cutText ["", "Black", playerRespawnTime];

private _deathTime = time;
Deaths = Deaths + 1;

/*
	wait for resurrection
*/
waitUntil { alive player && { preloadCamera getPosATL player } };

sleep 3;
cutText ["Welcome!", "Black in", fadeInDuration];

// after 10s, end the mission
sleep 10;
[] call BIS_fnc_endMission;
</sqf>
#define fadeInDuration 3 waitUntil { not alive player }; hint DEATH_MESSAGE; cutText ["", "Black", playerRespawnTime]; private _deathTime = time; Deaths = Deaths + 1; /* wait for resurrection */ waitUntil { alive player && { preloadCamera getPosATL player } }; sleep 3; cutText ["Welcome!", "Black in", fadeInDuration]; // after 10s, end the mission sleep 10; [] call BIS_fnc_endMission;


CSS Classes

All elements are <span> but the parent block that is a <div>.

Element CSS class Overview
parent block sqfhighlighter-block
&nbsp;
error message sqfhighlighter-error
-no SQF code provided-
comment sqfhighlighter-comment
// comment /* this is a multiline comment */
string sqfhighlighter-string
"string"
number sqfhighlighter-number
42 -6.9 10e10
operator sqfhighlighter-operator
a + b
keyword (if, then, waitUntil, etc) sqfhighlighter-keyword
command sqfhighlighter-command
function sqfhighlighter-function
external function sqfhighlighter-function-ext
// not just considering BIS_ or BIN_ BIS_fnc_unknownFunction TAG_fnc_spawnGroup
local variable sqfhighlighter-localvar
_localVar
global variable sqfhighlighter-globalvar
// anything will go but UNDERSCORED_ALL_CAPS GlobalVar = 1;
macro sqfhighlighter-macro
#define #if #endif
constant (#defined value) sqfhighlighter-const
// anything #defined or anything UNDERSCORED_ALL_CAPS #define testVar testVar; otherVar; MY_CONSTANT;
array start ([) sqfhighlighter-arraystart
[...
array end (]) sqfhighlighter-arrayend
...]
code start ({) sqfhighlighter-codestart
{...
code end (}) sqfhighlighter-codeend
...}
parenthese start ({) sqfhighlighter-parenthesestart
(...
parenthese end (}) sqfhighlighter-parentheseend
...)


Known Issues

  • comment blocks still highlight words as global variables for now
  • #if are considered as keywords
  • single-quote strings have issues with other formatting between quotes
  • negative numbers should see the minus sign coloured as well
  • report other issues on Discord