Titanium: the Good, the Bad and the Ugly

Posted in Javascript on January 5th, 2012 by Philippe – 1 Comment

I’ve been following Appcelerator Titanium Mobile with a keen interest since they decided, for mobile, to move from HTML to native UIs. I just love this idea: use the platform’s native UI controls from Javascript. I did have a fairly good experience doing a little test app with Titanium Mobile 1.5 and noted for myself to use it for real when I’ll have a project.

More recently Appcelerator bought Aptana, the arguably most advanced Eclipse plugin for Javascript (and HTML) development, and renamed it TitaniumStudio. Honestly I dislike Eclipse very much but I thought it was a great move to gain the professional developers’ hearts.

Since I had a new occasion to do a mobile app I thought I was time to get up to date by giving Titanium 1.8 another run.

This was a “mixed” experience, but my conclusion is quite positive!

Warning: MacOS stuff ahead ;)

Continue reading « Titanium: the Good, the Bad and the Ugly »

NME: ready for the show!

Posted in AS3, haxe, nme on November 18th, 2011 by Philippe – 7 Comments

NME is an impressive crossplatform technology particularly appropriate for 2D games development. And by crossplatform that mean:

  • Windows/Mac/Linux and iOS/Android/webOS – at full, native, C++/OpenGl speed,
  • and Flash so you can also compile it for the browser.

Activity & contributions around the NME project has increased a lot recently and it seems to have become mature enough as a few companies have started using it to develop (fairly impressive casual) commercial games. If you have an iPhone I warmly recommend trying Ponon Deluxe (free) – it’s incredibly slick and a clever variation on the Tetris theme.

If you know Flash and AS3…

…you’ll be up and running in a few hours:

  • this is most feature complete implementation of the Flash API that you will get your hands on – more complete than what Starling will ever be, and more complete than the subset of AIR you can use to keep performance decent,
  • development is in haxe, a clever language with increasing IDE support that you can however code like AS3 90% of the time.

Continue reading « NME: ready for the show! »

AS3 – Hacking PreloadSwf for fun and profit

Posted in AS3, FlashDevelop on September 28th, 2010 by Philippe – 8 Comments

PreloadSwf is one fine gem in Flash Player’s mm.cfg, the historical and little known Flash Player configuration file.

In this post I will tell you all you have to know about this feature and how you are going to use it in your projects.

This was invented for Flash profiling: Clement Wong, from the Flex SDK team, presents PreloadSwf as a major piece of the “Flash profiling” puzzle in his about the Flex profiler post in 2008.

If you want to know most of the secrets of mm.cfg, dive into Jean-Philippe “jpauclair” Auclair post on mm.cfg hidden treasures. This is a must read if you like bytecode porn :)

Continue reading « AS3 – Hacking PreloadSwf for fun and profit »

AS3 – Fast memory access without Alchemy

Posted in AS3, haxe on May 3rd, 2010 by Philippe – 18 Comments

With the Flash Player 10, Adobe added a new set of instructions allowing to compile C/C++ in a way the AVM2 could execute. By wrapping a little bit of glue code in C, Alchemy allows to reuse some of the numerous open source C libraries available.

And when you appreciate the speed of Alchemy-compiled C code, you can wonder how it can possibly be so much faster than AS3. Unfair!

What makes Alchemy code so fast? The main secret is a faster memory management, because obviously C/C++ is all about pointers & malloc’ing. ByteArray in AS3 is kind of slow so Adobe had to hack the AVM2 to remove this bottleneck or Alchemy would have been pointless.

And the good news for us AS3 geeks is that it is possible to use this fast memory in AS3…

Continue reading « AS3 – Fast memory access without Alchemy »

AS3 – Eaze tween library update

Posted in AS3, Eaze, library on November 6th, 2009 by Philippe – 60 Comments

Let’s state it again: "tweening" is a commodity with plenty of alternatives, which means you’re not obliged to use a) crappy ones, b) bloated ones, and c) commercial ones.

Like many Flash developers I started developping Eaze because a) it’s fun, b) it’s (mildly) challenging, and c) I really had a few ideas to innovate in this field.

Since then I had the occasion to discuss (I should say brainstorm) with other Flash developers (hi Joshua and Steve) about our "tweening needs" (sounds dirty, isn’t it?) and our idea of the perfect library. This was very entertaining and they all gave me lots of crazy syntax ideas which turned out to be possible…

Continue reading « AS3 – Eaze tween library update »

AS3 – Designing a new tween library

Posted in AS3, Eaze, library on September 25th, 2009 by Philippe – 15 Comments

I don’t want to sound grumpy, but I never liked how more and more coders don’t seem to be able to keep things simple. Looks like nowadays you must be an architecture astronaut to be considered seriously.

One of these basic Flash things which should be kept simple is tweening – everybody needs to animate things, but I believe it should be kept as a commodity and not become fatter than your own application code.

Continue reading « AS3 – Designing a new tween library »

haxe – what’s in it for you

Posted in haxe on August 2nd, 2009 by Philippe – 8 Comments

The haxe community has been buzzing about it for some weeks, and a few days ago you could read in haxe 2.0.4 release notes that the experimental C++ compilation target was now included.

You probably know that haxe can be used as an alternative to AS2 and AS3 for Flash development, but you would definitely be missing something if you limit this powerful language to “just Flash”…

So how did haxe get to be able to compile as C++ and why is it a big thing?

Continue reading « haxe – what’s in it for you »

AS3 – Parametric path drawing

Posted in AS3, geometry on June 20th, 2009 by Philippe – 5 Comments

Partial path drawing Last time I gently coded a script for “rounding” the corners of a path. I think the script is really fine, handles nicely closed paths, but, it’s “static”.

So here’s the new, innocent, question: what if you want to have an animated drawing of the path?

Innocent answer: the drawing method would need a “ratio” parameter, so you can draw only a part of the path.

Continue reading « AS3 – Parametric path drawing »

AS3 – Rounding corners

Posted in AS3, geometry on May 31st, 2009 by Philippe – 7 Comments

Interactive demoA few days ago, I was with a few students from Gobelins talking about their school projects. One group was working on some trip-assistant project where they would display itineraries on a city map.

Map itineraries most of the time are painted as straight lines with square corners and so one student suggested that it would look nicer with rounded corners: easy stuff, I said, just get each segment’s direction vector, multiply by the corner radius you want and lineTo/curveTo the path.

Continue reading « AS3 – Rounding corners »