Skin Ink wins Dare with Bamboo!

MarkNews

Gaslight Games win Dare with Bamboo 2010, with Skin Ink

The final day of the ProtoPlay event held the awards ceremony for the competitions being held, which included Dare to be Digital and the Dare with Bamboo event for which Gaslight Games had entered Skin Ink.

We are pleased to announce that Skin Ink was selected as the overall winner of the competition!  Congratulations to the whole team and we hope to continue this success!

Dare with Bamboo: Skin Ink Development

MarkBlog

Development of Skin Ink has been going from strength-to-strength!
Although it has had it’s fair share of “issues”!

Wacom Bamboo is an unusual, but fantastic platform to develop for.
Bamboo itself is the name of a series of tablets, whilst the Bamboo Dock is the software tool that we’re integrating with.  The Dock and Bamboo SDK are written in AS3 (ActionScript 3).  We use Adobe Flash CS5 for our development work and integrating the SDK into our projects was a cinch.

Now, getting the hardware to talk to our application (through the SDK) and making use of the events and values returned was the first hurdle, albeit an incredibly fun hurdle!
From here, we need to make use of this data, as well as create an actual game out of the ideas.

Skin Ink is a drawing game, through and through, so it relies on us being able to draw lines.  Sounds simple enough and there are plenty of tutorials out there for how to achieve simple art or drawing applications very quickly.  One issue we encountered was handling the sheer amount of information being drawn to the screen.
You see, the simple way of drawing lines to the screen is to make use of AS3’s “Vector Graphics” class.  Several DisplayObjects – something that can be displayed – in Flash allow us to make use of the “Graphics” class, these include Sprite and MovieClip.  But the performance issue we hit upon comes from one simple fact:
The Graphics class uses Vector drawing.
Vectors are drawn every frame.
So if we draw a line, then we draw one vector image.  Continue to drag the stylus and you draw even more lines (even though you think it’s one continuous line, it’s actually a collection of many shorter lines).  Each one of these lines are drawn every frame – and Bamboo operates at 45fps!
We needed some optimisation here, and fortunately, there’s an easy approach.  Draw the Vector lines, as you would.  But then “draw” these Vector lines to a Bitmap object, and clear all the vector lines.  Bitmaps are only drawn once (under special circumstances they might be redrawn), so even the update to add new lines is a quick and simple task – both for us as the programmer, but also for application.

The last thing I want to talk about today has also been the toughest challenge for us to solve – but boy, has it been an interesting ride!
We intend on scoring the player based on their accuracy of matching stencils already applied to the “Body”, which they must then trace with a tattoo machine.  AS3 has collision detection and this can actually be per-pixel!  But what it can’t tell us is how far away from the edge of the object we are, or similarly how much into the object we are.  Sure, you can calculate how far from the object centre (or action point, which can be anywhere!) you are, but for complex shapes, this doesn’t help with knowing the lines accuracy.
We needed our own mechanism!
The first thing we needed to do was figure out a logical and robust way of storing the stencil data.  We would need to be able to draw this stencil to the screen BUT also be able compare any point along the stencils line with the mouse position.  This comparison would be our accuracy.

Solving this accuracy issue has, pretty much, made the game.  The “Ink Trial” mode (sort of like a “Time Trial” mode in other games, but here you must be as accurate as you can in order to regain ink, so you can complete additional stencils) now has clearly defined win/lose conditions and a scoring mechanism.

We’ll post more details about the development of Skin Ink as we get to them – but for now, back to the grindstone!

___________________________________

Dare with Bamboo: Games for the Wacom Tablet

MarkBlog

Having registered our interest in the 2010 Dare with Bamboo competition, we needed to come up with a concept that is not only a fun, original and interesting game, but one that would also make full use of the Wacom Bamboo tablet’s functionality.

Enter Skin Ink.

Our idea here is to not treat the stylus as “another pointing device”.  Sure, the tip of the stylus acts just like a mouse and, in fact, is seen by the operating system and a pointing device… but there’s so much more on offer here that to ignore these features would be detrimental to conceptualizing something unique!
The Bamboo tablets have 1024 levels of pressure sensitivity; a pen and eraser tip; and the surface also supports touch input (along with gestures).
How can we put together a game that can also make use of some (or all!) of these features?

Skin Ink is a fairly simple concept, on the surface.
We treat the stylus as a tattoo machine, make use of the pressure sensitivity and accuracy of the tip and score the player based on their tattoos.
Seems like a simple enough idea and the gameplay mechanics seem logical enough to implement… let’s get it under development and we’ll have some more details how it’s going posted up here soon!

___________________________________

Dare with Bamboo Competition

MarkNews

Wacom, the Worlds leading tablet manufacturer has launched a competition called Dare with Bamboo.

Gaslight Games have entered the competition with our concept, “Skin Ink”.  More news and updates about the development of the game will be posted over the coming weeks.