While working with Alchemy to port a roguelike library to handle field of view calculations for a 2d tile game (The Doryen Library, port is called libtcod-alchemy) I noticed some drastic speed differences between using a ByteArray in pure AS and manipulating that same ByteArray inside Alchemy. Out of curiosity I wondered how Alchemy manipulations of large data structures would compare to a native AS Array or the new (and faster) Vector.
As it turns out, Alchemy wins hands down when the data is already in a ByteArray. If you need to transfer data from an array/vector into a ByteArray to hand off to Alchemy and then transfer it back, it is slower to use Alchemy. For this test I have a collection of 1,000,000 numbers and for each iteration of the test, I loop over the numbers and add one.
Alchemy ByteArray additions are about 6 times faster than Vector integer additions and 10 times faster than pure AS manipulations of a ByteArray (when using Array notation [] on a ByteArray to manipulate a Byte - using position, readInt() and writeInt() in AS is much slower).
Below is test program that proves it:
Friday, March 13, 2009
Sunday, February 1, 2009
Lua Alchemy Getting Sweeter in v02a
Thanks to Alexander Lua Alchemy now has sugar! What this means is you no longer need to make calls like the following in the Lua Alchemy code:
Instead you can make calls that look like native Lua code:
This includes chaining calls like a.b.c().d
Below is a preview of the release:
as3.call(myvar, "someCall", param1, param2)
Instead you can make calls that look like native Lua code:
myvar.someCall(param1, param2)
This includes chaining calls like a.b.c().d
Below is a preview of the release:
Sunday, December 21, 2008
Lua Alchemy v0.1a Released
The first release of Lua Alchemy has been released; the library SWC, demo, and code can be downloaded from here:
http://code.google.com/p/lua-alchemy/
Since my preview post (which is now running the same demo code) we have
Below is a preview of the release:
http://code.google.com/p/lua-alchemy/
Since my preview post (which is now running the same demo code) we have
- Added many Lua scripting samples.
- Fixed some memory leaks.
- Cleaned up function callbacks created in Lua which would typically be used for event listeners.
Below is a preview of the release:
Monday, December 15, 2008
LuaAlchemy Project v.1a Preview
Since my last post my experiment to make Lua a runtime scripting language in Flash using Alchemy has become a full open source project located here:
http://code.google.com/p/lua-alchemy/
I even have a partner named Alexander Gladysh whom I met on the Lua boards.
We are approaching a V.1a release of the project. Using LuaAlchemy you can now create any ActionScript class available at runtime, get/set properties, call functions, and set event listeners (actually you can return a Lua function to use as an ActionScript function). The Lua to ActionScript interface is a little raw right now but we plan on adding some Lua sugar to make accessing ActionScript objects, classes, and namespaces in Lua look and feel like using Lua objects.
Below is a preview of the release:
http://code.google.com/p/lua-alchemy/
I even have a partner named Alexander Gladysh whom I met on the Lua boards.
We are approaching a V.1a release of the project. Using LuaAlchemy you can now create any ActionScript class available at runtime, get/set properties, call functions, and set event listeners (actually you can return a Lua function to use as an ActionScript function). The Lua to ActionScript interface is a little raw right now but we plan on adding some Lua sugar to make accessing ActionScript objects, classes, and namespaces in Lua look and feel like using Lua objects.
Below is a preview of the release:
Tuesday, December 2, 2008
Lua ActionScript Alchemy
At Adobe MAX 2008 San Francisco, Alchemy was released. Alchemy was once known as FlaCC or Cassava and is a C/C++ to ActionScript compiler.
Alchemy works by translating C/C++ code to ActionScript through a LLVM compiler which instead of producing machine or bytecode produces ActionScript. The translated C/C++ code uses a big ActionScript ByteArray as the C/C++ heap and stack. The performance of alchemy is slow if you martial data from C/C++ code to ActionScript or back but faster (supposedly up to 10 times faster) than ActionScript code you write yourself for data intensive actions where everything operates in the C/C++ memory space - speed improvements over AS code are also due to LLVM doing code optimization which is missing from the normal AS compiler.
After downloading and setting up Alchemy, I started trying to port over a few C/C++ libraries. The following libraries have given me some trouble mainly with needing to adjust makefiles or the ./configure script: Angband, Nethack, guile, Python, Ruby, ARToolkitPlus, SDL, and Squeak. I haven't given up on them but I wasn't in the mood to do battle with Makefiles; I wanted to learn Alchemy.
My success came with compiling the scripting language Lua 5.1.4 and embedding it into a Flex application. The following proof of concept can run a Lua script which returns one or more values and are shown in the Lua Stack Panel. Lua can make the following calls into Flex:
Alchemy works by translating C/C++ code to ActionScript through a LLVM compiler which instead of producing machine or bytecode produces ActionScript. The translated C/C++ code uses a big ActionScript ByteArray as the C/C++ heap and stack. The performance of alchemy is slow if you martial data from C/C++ code to ActionScript or back but faster (supposedly up to 10 times faster) than ActionScript code you write yourself for data intensive actions where everything operates in the C/C++ memory space - speed improvements over AS code are also due to LLVM doing code optimization which is missing from the normal AS compiler.
After downloading and setting up Alchemy, I started trying to port over a few C/C++ libraries. The following libraries have given me some trouble mainly with needing to adjust makefiles or the ./configure script: Angband, Nethack, guile, Python, Ruby, ARToolkitPlus, SDL, and Squeak. I haven't given up on them but I wasn't in the mood to do battle with Makefiles; I wanted to learn Alchemy.
My success came with compiling the scripting language Lua 5.1.4 and embedding it into a Flex application. The following proof of concept can run a Lua script which returns one or more values and are shown in the Lua Stack Panel. Lua can make the following calls into Flex:
- getTextAreaProperty(property_name) - Returns the given property of the text area in the lower left hand corner.
- setTextAreaProperty(property_name, value) - Sets the given property on the text area in the lower left hand corner (must accept string values).
- callTextAreaFunction(function_name[, param1, ..., paramN]) - Calls a function on the text area in the lower left hand corner (must accept string values).
- average(value1, ..., valueN) - Returns the average and sum of the given values.
Labels:
ActionScript,
Alchemy,
FlaCC,
Flex,
Lua,
LuaAlchemy
Sunday, October 5, 2008
FlaCC (C/C++ to Flash Compiler)
More news on the C/C++ to Flash compiler, now called FlaCC. With this tool developed by Scott Petersen at Adobe would allow almost any arbitrary C/C++ code to be compiled down to ActionScript bytecode to run on the Flash player. I first heard of this at MAX 2007 and there will be a session at MAX 2008 on this (plus hints it will be in keynotes).
While we wait here are a few links to some more recent news:
- http://www.peterelst.com/blog/2008/10/05/more-information-on-flacc/
- From LLVM Dev Meeting
Sunday, July 27, 2008
360|Flex
This coming August, I'll be heading out to San Jose to attend the 360 Flex conference:
http://www.360conferences.com/360flex/
I'm new to the Flex scene (almost a year now) and came from a background of 14 years of C++ cross-platform application development so it is exciting and different to immerse myself in the new culture. This is the first 360 I will have attended and only the second conference related to Flex (the first being MAX 2007 in Chicago). I'm now fortunate enough to be working for Universal Mind (as a contractor) and when I saw all the people taking vacation to attend 360, I knew I had to attend.
Of particular interest to me are sessions teaching frameworks, component building, design patterns, process (I'm a big process geek - how you do something is very important for maintainability), and low level programming. There are so many sessions that appeal to me at the same time that I'm going to have to make some rough decisions. Here is a list of the appealing sessions (fortunately I work with some of these people so I can pick their brain later):
http://www.360conferences.com/360flex/
I'm new to the Flex scene (almost a year now) and came from a background of 14 years of C++ cross-platform application development so it is exciting and different to immerse myself in the new culture. This is the first 360 I will have attended and only the second conference related to Flex (the first being MAX 2007 in Chicago). I'm now fortunate enough to be working for Universal Mind (as a contractor) and when I saw all the people taking vacation to attend 360, I knew I had to attend.
Of particular interest to me are sessions teaching frameworks, component building, design patterns, process (I'm a big process geek - how you do something is very important for maintainability), and low level programming. There are so many sessions that appeal to me at the same time that I'm going to have to make some rough decisions. Here is a list of the appealing sessions (fortunately I work with some of these people so I can pick their brain later):
- Pre-Conference stuff I cannot attend because my plane doesn't land until 2pm
- James Huang - The R1-RPC/J Toolkit and the D.eval API
- Ben Stucki/Ryan Campbell - OpenFlux
- James Huang - The R1-RPC/J Toolkit and the D.eval API
- Adam Flater - How to make your AIR app blow up with Merapi
- Alex Harui - Versioning Support for Large Applications and Portals
- Andrew Powell - Implementing BlazeDS
- Axel Jensen - Project Workflow (trac,svn,ANT,XML...)
- Ben Clinkinbeard - Concepts and Strategies for Creating Reusable Components
- Ben Stucki - How to Build a Framework
- Brad Umbaugh/RJ Owen - Diving Deep with the Flex Component Lifecycle
- Brian Weisenthal - Architecting real-time and collaborative applications in Flex
- Chet Haase - Filthy Rich [Flex] Clients
- Chris Scott - Introduction to the Swiz Framework for Flex
- Eric Ko - Reflective Programming
- Jacob Wright - Advanced ActionScript APIs
- Jeff Houser - How to Build Flex Components
- Jeff Tapper - Unraveling the hassle with Drag an Drop in AIR
- Jonathan Branam - Improve your programming by reading the Flex source code
- Josh Tynjala - Polishing Components for the Unwashed Masses
- Laura Arguello - Decoupling Flex Applications with Mate Framework
- H. Paul Robertson - Advanced AIR and SQLite: An optimization conversation
- Ryan Campbell - PlexiGlass (OpenFlux 3D Components)
- Samuel Asher Rivello - Creating an MMO from Scratch with Adobe Flex 3… in 59 minutes.
- Tom Gonzalez - Data Visualization and Dashboards with Flex
- Troy Gardner - Advanced State management, the Heirarchical State Design Pattern
Subscribe to:
Posts (Atom)