We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexDiscussionExhibition › 2 casual games about your archery skills :)
Page Index Toggle Pages: 1
2 casual games about your archery skills :) (Read 1001 times)
2 casual games about your archery skills :)
Feb 4th, 2006, 12:47pm
 
Hi,
I've just posted my 2 first works using processing in the exhibition room .
The mouse events are recorded during your play (for members only for not flooding the database), and if you are in top ten, your replay will be visible by all others users. This avoid cheats. The second one use a invisible force field that keeps aways the balloons from each other, from the walls and a powerful force field that keeps them away from the arrows getting too closed. Nevertheless, it's adjusted in order that if your shoot is accurate enough, the arrow will hit the balloon anyway.

I would like to add sounds and a midi song but I don't have time. And as far as I can know, it's not possible until now to play a midi file in processing.

Those games have been successfully shrinked, optimized and obfuscated by http://proguard.sourceforge.net/ from 185Kb to 75Kb.

Archoon episode I, The world of Archoon :
http://www.pepere.org/flash-development_1_3x/flash-game-world-archoon_u_31.html

Archoon episode II, Babboon & friends :
http://www.pepere.org/flash-development_1_3x/flash-game_u_32.html
Re: 2 casual games about your archery skills :)
Reply #1 - Feb 5th, 2006, 11:48am
 
ops, so easy to play a midi file :


Code:

try {
java.applet.AudioClip clip = java.applet.Applet.newAudioClip(new java.net.URL(base+"midi/beethoven_moonlight_presto.mid"));
clip.loop( );
} catch (Exception e) { e.printStackTrace(); }
Page Index Toggle Pages: 1