Difference between revisions of "JavaScript"

From RogueBasin
Jump to navigation Jump to search
(→‎Roguelikes in Javascript: - alphabetic order for the list)
(Punctuation and content)
Line 10: Line 10:
}}
}}


JavaScript is a scripting language used by most web-browsers. Roguelikes can also use it as a scripting language (e.g. for scripted events or quests). This allows changing game behavior without recompiling. Some browser-based roguelikes are written in Javascript or its Microsoft relative JScript (and JScript.NET).  
JavaScript (often abbreviated to JS) is a scripting language used by most web browsers. Roguelikes can also use it as a scripting language (e.g. for scripted events or quests). This allows changing game behavior without recompiling. Some browser-based roguelikes are written in JavaScript or its Microsoft relative JScript (and JScript.NET).  


===Development Hints ===
===Development Hints ===
* Use jsLint[http://www.jslint.com/] to avoid many mistakes that are normally caught by a compiler
* Use jsLint[http://www.jslint.com/] to avoid many mistakes that are normally caught by a compiler
* Javascript frameworks abstract many of the browser inconsistencies.  (MooTools[http://mootools.net], JQuery[http://jquery.com])
* JavaScript frameworks abstract many of the browser inconsistencies.  (MooTools[http://mootools.net], JQuery[http://jquery.com])
* Take advantage of Firebug for Firefox, the Web Inspector for Chrome and Safari and the Developer Tools in Internet Explorer (version 8 and above)
* Take advantage of Firebug for Firefox, the Web Inspector for Chrome and Safari and the Developer Tools in Internet Explorer (version 8 and above)
* Full IDEs are available including Microsoft Visual Studio Web Developer Express, Aptana and NetBeans.
* Full IDEs are available including Microsoft Visual Studio Web Developer Express, Aptana and NetBeans.
Line 20: Line 20:


===Advantages ===
===Advantages ===
* Scripting languages usually have a faster feedback loop between development and viewing the changes
* Scripting languages usually have a faster feedback loop between development and viewing the changes.
* Closures are a powerful language construct that can simplify application structure and enhance readability
* Closures are a powerful language construct that can simplify application structure and enhance readability.
* Any user with a modern browser (on any platform) can run your game
* Any user with a modern browser (on any platform) can run your game.
* A whole new world of easy-to-access graphical possibilities with the DOM or <canvas>
* A whole new world of easy-to-access graphical possibilities with the DOM or <canvas>.
* Working in a dynamic and garbage collected language takes a lot of the pain out of strong typing and memory management
* Working in a dynamic and garbage collected language takes a lot of the pain out of strong typing and memory management.
* Well supported serialization of data structures using [[JSON]]
* Well supported serialization of data structures using [[JSON]].
* Emerging HTML5 standards provide support for local storage of data
* Emerging HTML5 standards provide support for local storage of data.
* Emerging web application stores, such as the Google Chrome Store, provide a distribution platform
* Emerging web application stores, such as the Google Chrome Store, provide a distribution platform.


===Disadvantages ===
===Disadvantages ===
* Many errors that are caught at compile-time in a strongly typed language will be caught at run-time
* Many errors that are caught at compile-time in a strongly typed language will be caught at run-time.
* Existing source for most roguelikes is in C or C++, and not all idioms translate into javascript
* Existing source for most roguelikes is in C or C++, and not all idioms translate into JavaScript.
* There are browser differences in javascript implementations and javascript speed, so true portability still takes work
* There are browser differences in JavaScript implementations and javascript speed, so true portability still takes work.
* Javascript is much slower than C and C++ (however, not all roguelikes require blazing speed)
* JavaScript is much slower than C and C++ (however, not all roguelikes require blazing speed).
* Full file system access requires additional plugins
* Full file system access requires additional plugins.
* JavaScript, owing to its troubled past, has more than the average share of design flaws and overall quirkiness.


==HTML and CSS==
==HTML and CSS==
Line 41: Line 42:
{{stub}}
{{stub}}


== Roguelikes in Javascript ==
== Roguelikes in JavaScript ==
* [[Advent]] (HTML5 and Canvas)
* [[Advent]] (HTML5 and Canvas)
* [[Cardinal Quest]] (original concept was JavaScript)
* [[Cardinal Quest]] (original concept was JavaScript)
* [[Cave of Epokothar]] (HTML5 and Canvas)
* [[Cave of Epokothar]] (HTML5 and Canvas)
* [[gTile]]
* [[gTile]]
* [[jsMoria]] (javascript port of the roguelike classic [[Moria]], uses MooTools[http://mootools.net])
* [[jsMoria]] (JavaScript port of the roguelike classic [[Moria]], uses MooTools[http://mootools.net])
* [[js-like]]
* [[js-like]]
* [[Neon]] (uses JavaScript for scripting)
* [[Neon]] (uses JavaScript for scripting)

Revision as of 19:23, 20 March 2014

JavaScript
Programming Language
Company Mozilla (and others)
Influences C, Java, Python
Updated March 22, 2011 (1.8.5)
Status Stable
Licensing
Platforms Browser
Official site of JavaScript


JavaScript (often abbreviated to JS) is a scripting language used by most web browsers. Roguelikes can also use it as a scripting language (e.g. for scripted events or quests). This allows changing game behavior without recompiling. Some browser-based roguelikes are written in JavaScript or its Microsoft relative JScript (and JScript.NET).

Development Hints

  • Use jsLint[1] to avoid many mistakes that are normally caught by a compiler
  • JavaScript frameworks abstract many of the browser inconsistencies. (MooTools[2], JQuery[3])
  • Take advantage of Firebug for Firefox, the Web Inspector for Chrome and Safari and the Developer Tools in Internet Explorer (version 8 and above)
  • Full IDEs are available including Microsoft Visual Studio Web Developer Express, Aptana and NetBeans.
  • Rot.js is a JavaScript roguelike library with many useful features.

Advantages

  • Scripting languages usually have a faster feedback loop between development and viewing the changes.
  • Closures are a powerful language construct that can simplify application structure and enhance readability.
  • Any user with a modern browser (on any platform) can run your game.
  • A whole new world of easy-to-access graphical possibilities with the DOM or <canvas>.
  • Working in a dynamic and garbage collected language takes a lot of the pain out of strong typing and memory management.
  • Well supported serialization of data structures using JSON.
  • Emerging HTML5 standards provide support for local storage of data.
  • Emerging web application stores, such as the Google Chrome Store, provide a distribution platform.

Disadvantages

  • Many errors that are caught at compile-time in a strongly typed language will be caught at run-time.
  • Existing source for most roguelikes is in C or C++, and not all idioms translate into JavaScript.
  • There are browser differences in JavaScript implementations and javascript speed, so true portability still takes work.
  • JavaScript is much slower than C and C++ (however, not all roguelikes require blazing speed).
  • Full file system access requires additional plugins.
  • JavaScript, owing to its troubled past, has more than the average share of design flaws and overall quirkiness.

HTML and CSS

The standard method for user interaction is via HTML, CSS and its Document Object Model (DOM). Thanks to this, JavaScript supplies perhaps one of the most portable APIs for development.


Roguelikes in JavaScript