Blobby blog

blobby.gif Got basic platforming done + shooting and a bunch of animation things.

The idea is that you play against an AI that gradually gets better against you. I want to do this through genetic algorithms but in a more efficient way that doesn't require 5000 generations. It's honestly more of an experiment.

One way to do this is to be careful in the initial seed to provide vastly different starting points by generating one random program and providing 'opposites' to that program. This way you might always have a program that outperforms the other in your initial seed. From there on out it's the usual crossbreeding & mutation.

Now it's time to work on some genetic algorithms :x