Saturday, December 3, 2016

Bdash updated

Boulder Dash was one of the first games to arrive on the Bitbox, but wasn't really advanced enough. I took some time and it's now getting some attention. A new release has been done, with some new features:

  • using chiptracker and not sound samples (reducing the game size greatly) ! The original soundtrack was provided nicely by Pulkomandy
  • levels ! at last there are more than one level !  now the 1st boulder dash games are available, from a levels.h file describing levels with const strings.
  • butterflies  / fireflies : those deadly enemies are now available to kill you. Implementing those were a little tricky since the game was purely tile based (i.e. the whole game state was an array with tile indices) , and the animals need a direction state, I now have a "sprite in tiles" system.
  • last level restart : up to now you had basically one life.  (which was very annoying). Now, you restart at the last level you started on. Which means you have basically infinite lives. 
  • many small fixes


WIP (non available but shall be available some time)

  • proper lives 
  • title screens with a little text. This will need a smaller tilemap which will share the tileset and vram of the existing one.
  • cool transition effects
  • amoeba & magic wall ! 
  • score / highscore
See it here : https://github.com/makapuf/bitbox-bdash

Tuesday, November 1, 2016

New Game : Mario Watch !

Hi ! It's been a long time since real content has been put on this blog.

Now is a good time to fix that, by announcing a new game on the bitbox  !

Being a kid while the game & watch lcd games were all the rage, I like to reimplement them.
This one is a nice one because it has mario ! Released in 1983, this little will be playable o the bitbox and the micro. A few missing features (sound & scores by example) for now, but the gameplay is starting to take shape !

stay tuned for next updates, you can still begin to play it now !

Game is hosted at : https://github.com/makapuf/bitbox-mariowatch





makapuf

Tuesday, May 31, 2016

Ideas of games to write

Some of us are looking for game ideas to code (just before they've way too many projects ongoing :) )

Of course, you can contribute to one of the WIP projects on the bitbox wiki page (https://github.com/makapuf/bitbox/wiki/Software-Index) - frankly, many of those games need attention and could use some polish.

But hat if you can to create a simple project in a weekend (of course it will run on the bitbox, where else ?), here are some ideas of simple games to try  !

http://www.asahi-net.or.jp/~cs8k-cyu/blog/2014/12/12/games-in-2014/


Examples :
 
And here is someone who coded 50 games last year ! Can you do better ? (I don't :) )
http://www.asahi-net.or.jp/~cs8k-cyu/blog/2014/12/12/games-in-2014/

Thursday, April 21, 2016

Micromo : a Thomson MO5 emulator !

Hi all, I made a port of the dcmo5 emulator for the bitbox micro.
 
The MO5 was a famous (in France, completely unknown everywhere else) computer, not so bad after all, and on par with a Spectrum. 

Its specs : 
  • 320x200 fixed palette 16-colors (16k RAM) with 2 colors by row of 8 pixels
  • CPU : a motorola 6809E @ 1MHz
  • 48kB of RAM / 16kB of ROM
This first version can run Basic, load programs from cassette (embedded on the binary), use a keyboard. It can play some games and runs on Bitbox (should run on micro also). It's a first release, missing selecting cassettes from the (existing) menu, gamepad support or sound.


Thanks a lot to Pulkomandy who is a real MO5 programmer - lots of cool stuff about those micros and democoding on these old clunkers on his site: http://pulkomandy.tk/projects/thomson/wiki

shinra demo
my (much better) demo.

Sunday, March 6, 2016

Answer to preceding post ... ByteBeat

As you may have tried yourself, the tiny binaries produced by the preceding code create long tunes directly coded by a function of time !

So you basically have s=f(t) where s is the output sample, t the sample id and f a simple expression as the one I put on the title.

The thing is you can actually build quite complex song with it ! 

This technique has been called bytebeat and the main article describing it was made by someone named "viznut".

See the original article here http://countercomplex.blogspot.fr/2011/10/algorithmic-symphonies-from-one-line-of.html or here http://canonical.org/~kragen/bytebeat/


Sunday, February 28, 2016

u=t*((t>>13)&31&t>>9)-((t>>7)&23&t>>3)

What is this ?? Well it's a very interesting thing I found on the web the other day.

If you have a bitbox please download and run this small (3.1kB) program - it needs sound, not display. (I'll provide the code  - which is really not much more than what is in the title .. and some background info soon).

Controls : plug in sound output, also try to press the bitbox button. I really like the 8th one ..

(edit) for those with a linux computer, here is a sdl backend compilation of the same code ... ans a big hint

Wednesday, February 24, 2016

new game : Dragon's Lair !


Ah .. such a nice game to play on the Bitbox ! (see Angry Video Game Nerd or Joueur du Grenier reviews ;) ... )

The game is open source and the release is here : https://github.com/makapuf/bitbox-fmv

For more info about the game see : http://www.dragons-lair-project.com/games/pages/dl.asp
for Bitbox itself see main repo / wiki : https://github.com/makapuf/bitbox/



dragons lair! 


This game / engine is aimed at reproducing the dragons lair game on the Bitbox. It's only compatible with the standard bitbox since the data is streamed from SD card.


Tuesday, February 9, 2016

Back from FOSDEM

I got back from the FOSDEM a week and but didn't have the time to write about : here are some small notes about it.


Tuesday, January 26, 2016

Meet you @ FOSDEM 16 !

Just a quick note to say that I'll be presenting the Bitbox and what was done this year at fosdem this weekend  (thanks to all contributors past year !) Link to the presentation

Wednesday, January 20, 2016

New game : Alter Ego

Hi all !

A new game has been published ! It's a port from the Alter Ego NES game (with reused graphics but the code is entirely new). It runs on the bitbox micro as well as the bitbox (as every micro game).



have a look at its gameplay



 



A longer is also available on youtube 
(The game has currently no sound but that shall be improved upon soon !)



Monday, January 4, 2016

Happy new year

Hi ! I wish you an happy new year, which will be hopefully a nice year for bitbox again.

I will be presenting past year at fosdem 2016 (again) and 2016 will hopefully be the year we issue many great new games.


Development hasn't stopped, however !