Ambrasoft, owned by Dutch company Noordhoff, is an educational suite featuring maths and language games. In 2015, I contributed to their collection of HTML Canvas games using CreateJS.
Ambrasoft is a suite of educational maths and language games owned by the Dutch company, Noordhoff. Back in 2015, whilst working at LJ Create, I was part of a project team that converted a large collection of Flash games to HTML Canvas, along with creating new games from scratch.
I was responsible for writing the Javascript logic, drawing vector assets and creating sound effects on several of the games. We used the Canvas library CreateJS, a library which allowed us to create rich interactive content that performed well on a range of devices.
Gorillarama(new game)
A matching pairs game where the player goes up against an AI gorilla. The player has to find more pairs than the gorilla to advance to the next round, with each round getting progressively harder.
The harder rounds have a larger grid of cards and the gorilla has a better memory of which cards he has already seen, making him more likely to pick correct pairs.
Brick Donk(new game)
A breakout clone that uses vector assets from the Ambrasoft library. I created the game engine in JavaScript. It managed ball physics, collisions, dynamic drawing, powerups (extra wide bat, shield, slow ball speed, fireball) and the scoring system.
Word Search(converted game)
A simple word search where the player uses a click and drag mechanism to find 10 words on the grid. Correct guesses trigger positive feedback and incorrect responses trigger negative feedback. The game ends when all of the words have been found.
The words are pushed into a 2d grid array in random directions. The attempted string is calculated using the XY coordinates of the highlight shape start and end points.