Usecode

Published June 19, 2001 by Zachary Booth Simpson, posted by Myopic Rhino
Do you see issues with this article? Let us know.
Advertisement
(C) 2000 - Zachary Booth Simpson. Copied with permission from http://www.mine-control.com/zack. If you find any of this work useful, please sign Zack's guest book: http://www.mine-cont...i/gbook-zbs.cgi.


[size="5"]Intent
[bquote]Create a simple and safe embedded language with which game designers and (potentially) end-users can build game logic.[/bquote]

[size="5"]Problem
[bquote]Many game problems are inherently algorithmic. However, it is often desirable to allow designers and customers to create this logic without recompiling the game. Script languages are Interpreters which are designed to simplify the implementation of game specific puzzles or features.[/bquote]

[size="5"]Solution
[bquote] A language is designed with a small library appropriate for the game. A parser is typically implemented which translates this code into virtual machine code which is then loaded into the game and interpreted. Alternatively, the game may choose to implement the parser directly into the game and avoid the compilation step; this is called "immediate execution".

It is a common problem with Usecode implementations that they become very unwieldy. They have a tendency to grow and grow in scope until the problems they are solving might as well have been implemented in the native language (C, for example). If Usecode is used, it is best to keep a very limited scope on its implementation. When more sophisticated logic or libraries are needed, revert the native language. (A common solution is to use dynamically linked libraries with standard interfaces for this.)[/bquote]
[size="5"]Structure
[bquote]Not available at this time.[/bquote]

[size="5"]Examples
[bquote]None at this time.[/bquote]

[size="5"]Issues and Risks
[bquote]None at this time.[/bquote]

[size="5"]Related Patterns
[bquote]Controller, Interpreter[/bquote]

[size="5"]Uses and References
[bquote]Thanks to Richard Garriott. Name evolved at Origin from "usable" objects and their associated scripts in the Ultima series.[/bquote]
Cancel Save
0 Likes 5 Comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!

Create a simple and safe embedded language with which game designers and (potentially) end-users can build game logic.

Advertisement
Advertisement