Look Ma, no Evas!

[ efl ]

The past few months I’ve been away from main EFL development. With no particular reason than to build a different approach to the canvas library and to bring up this new concepts / features into mainline, similar to what happened with Eina.

The stack I’ve been developing is as follows:

  • Enesim: The graphics library. You can find more information about it at the wiki page

  • Emage: Is a library to load and save images in different formats. It supports synchronous and asynchronous operation and also user provided modules.

  • Etch: The animation library. It basically interpolates two values using several algorithms, like: discrete, linear, sin, with bezier control points, etc.

  • Ekeko: An OO property system. It has an abstract canvas and renderable types, UI events, generic properties, syncrhonous and asynchronous dispatching, among other features.

  • Eon: This is where all the efforts join. Eon started as an improvment to Etk (still called etk2 on the repository), but then the initial idea diverge and now the code base is very different to what Etk is. Basically Eon has support for basic renderable shapes, like images or rectangles, support for subcanvases, transformations for images, etc.

Here you can see a simple demo with some features I’ve done the past days: animated matrix transformations

Update: To create the video I used this xml. Eon has a parser for XML based scene files.

<etk w="100%" h="100%" id="canvas01">  
<rect x="0" y="0" w="100%" h="100%" color="white" id="rect01"/>  
<image x="40%" y="25%" w="50%" h="50%" file="tiger.png" id="image01">  
  <animMatrix name="matrix" type="0" dur="3s" from="0" to="0.7" calc="0" begin="click" repeat="-1" id="anim01"/>  
  <anim name="color" dur="5s" from="0xffff0000" to="0x66660000" calc="0" begin="click" repeat="-1" id="anim02"/>  
</image>  
<rect x="60%" y="10%" w="25%" h="25%" color="0xaa0000aa" id="rect02">  
  <anim name="y" dur="10s" from="10%" to="80%" calc="0" begin="click" repeat="3"/>  
  <anim name="color" dur="5s" from="blue" to="0xaaaaaaaa" calc="0" begin="click" repeat="-1"/>  
</rect>  
<rect x="10%" y="45%" w="25%" h="25%" color="red" id="rect02">  
  <anim id="myanim" name="x" dur="3s" from="10%" to="60%" calc="0" begin="click" repeat="1"/>  
  <anim id="anim04" name="color" dur="5s" from="red" to="0xaaaaaaaa" calc="0" begin="#myanim.stop" repeat="-1"/>  
</rect>  
</etk>  
Written on May 24, 2009