Go Back   Java Programming Forums > Java ME (Mobile Edition) > Mobile Applications

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-05-2009, 07:44 PM
Junior Member
 

Join Date: May 2009
Posts: 24
Thanks: 1
Thanked 1 Time in 1 Post
Koâk is on a distinguished road
Default Making a game for Mobile Phone

Hello guys, I'd like to make a sudoku game or snake or w/e for my mobile phone but I have no idea where to start, anyone help me?



Reply With Quote Share this thread on Facebook
Sponsored Links
  #2 (permalink)  
Old 06-05-2009, 08:28 PM
JavaPF's Avatar
mmm.. coffee
 
5 Highscores

Join Date: May 2008
Location: United Kingdom
Posts: 1,210
Thanks: 60
Thanked 66 Times in 64 Posts
JavaPF is someone you want to know!JavaPF is someone you want to know!JavaPF is someone you want to know!

I'm feeling Inspired
Default Re: Making a game for Mobile Phone

Hey Koak,

This link looks interesting:

Free Games - Mobile Games@Midlet Review

You could download the .jar files and decompile them to see how its done

Obviousally you will need a Java ME IDE to run these midlets.
__________________
Don't forget to add code tags around your code:

Forum Tip: Add to peoples reputation () by clicking the button on their useful posts.
Reply With Quote
  #3 (permalink)  
Old 06-05-2009, 08:41 PM
Junior Member
 

Join Date: May 2009
Posts: 24
Thanks: 1
Thanked 1 Time in 1 Post
Koâk is on a distinguished road
Default Re: Making a game for Mobile Phone

Quote:
Originally Posted by JavaPF View Post
Hey Koak,

This link looks interesting:

Free Games - Mobile Games@Midlet Review

You could download the .jar files and decompile them to see how its done

Obviousally you will need a Java ME IDE to run these midlets.
Thanks, do you happen to have a good decompiler?
Reply With Quote
  #4 (permalink)  
Old 06-05-2009, 09:27 PM
JavaPF's Avatar
mmm.. coffee
 
5 Highscores

Join Date: May 2008
Location: United Kingdom
Posts: 1,210
Thanks: 60
Thanked 66 Times in 64 Posts
JavaPF is someone you want to know!JavaPF is someone you want to know!JavaPF is someone you want to know!

I'm feeling Inspired
Default Re: Making a game for Mobile Phone

I personally use this. It works pretty well:

DJ Java Decompiler - Free software downloads and reviews - CNET Download.com
__________________
Don't forget to add code tags around your code:

Forum Tip: Add to peoples reputation () by clicking the button on their useful posts.
Reply With Quote
  #5 (permalink)  
Old 06-05-2009, 09:30 PM
Junior Member
 

Join Date: May 2009
Posts: 24
Thanks: 1
Thanked 1 Time in 1 Post
Koâk is on a distinguished road
Default Re: Making a game for Mobile Phone

My license has expired already
Reply With Quote
  #6 (permalink)  
Old 06-05-2009, 09:36 PM
JavaPF's Avatar
mmm.. coffee
 
5 Highscores

Join Date: May 2008
Location: United Kingdom
Posts: 1,210
Thanks: 60
Thanked 66 Times in 64 Posts
JavaPF is someone you want to know!JavaPF is someone you want to know!JavaPF is someone you want to know!

I'm feeling Inspired
Cool Re: Making a game for Mobile Phone

Quote:
Originally Posted by Koâk View Post
My license has expired already
What do you mean? You should be able to run this as a trial version. I've used it for years and have never had to register it. Maybe the newest version is different?

It's only $19.99 to buy the full version. I strongly suggest buying it as it will stop all issues!
__________________
Don't forget to add code tags around your code:

Forum Tip: Add to peoples reputation () by clicking the button on their useful posts.
Reply With Quote
  #7 (permalink)  
Old 06-05-2009, 09:40 PM
Junior Member
 

Join Date: May 2009
Posts: 24
Thanks: 1
Thanked 1 Time in 1 Post
Koâk is on a distinguished road
Default Re: Making a game for Mobile Phone

Quote:
Originally Posted by JavaPF View Post
What do you mean? You should be able to run this as a trial version. I've used it for years and have never had to register it. Maybe the newest version is different?

It's only $19.99 to buy the full version. I strongly suggest buying it as it will stop all issues!
My parents won't let me make a paypal account

EDIT: tried another decompiler, it only decompiled half of the sudoku game

Last edited by Koâk; 06-05-2009 at 09:43 PM.
Reply With Quote
  #8 (permalink)  
Old 07-05-2009, 09:24 AM
JavaPF's Avatar
mmm.. coffee
 
5 Highscores

Join Date: May 2008
Location: United Kingdom
Posts: 1,210
Thanks: 60
Thanked 66 Times in 64 Posts
JavaPF is someone you want to know!JavaPF is someone you want to know!JavaPF is someone you want to know!

I'm feeling Inspired
Default Re: Making a game for Mobile Phone

OK Koâk, no problem.

I have uploaded the version I have on my PC. Lets see if this works for you...

** link removed **

You will need winzip or winrar to open this compressed archive.
__________________
Don't forget to add code tags around your code:

Forum Tip: Add to peoples reputation () by clicking the button on their useful posts.
Reply With Quote
  #9 (permalink)  
Old 07-05-2009, 03:46 PM
Junior Member
 

Join Date: May 2009
Posts: 24
Thanks: 1
Thanked 1 Time in 1 Post
Koâk is on a distinguished road
Default Re: Making a game for Mobile Phone

That didn't work either, but I've found a way to decompile them
only works if theyre Jarred tho :p

Thanks!

Wow confusing
Java Code
    public final void a(f f1, byte byte0)
    {
        a_f_fld = f1;
        f1.a_c_fld = this;
        a_byte_fld = byte0;
        a_a_fld = a.a(a(a_java_lang_String_array2d_static_fld[a_byte_fld][Math.abs(a_java_util_Random_fld.nextInt()) % 40]));
        d = 4;
        e = 4;
        a_boolean_fld = false;
        a();
        a_f_fld.a(d, e, a_a_fld.a(e, d), (byte)(4 | (a_a_fld.a(e, d) ? 8 : 1)));
        a_long_fld = System.currentTimeMillis();
    }
all stuff like that, obfuscated?

Last edited by Koâk; 07-05-2009 at 04:23 PM.
Reply With Quote
  #10 (permalink)  
Old 07-05-2009, 04:12 PM
JavaPF's Avatar
mmm.. coffee
 
5 Highscores

Join Date: May 2008
Location: United Kingdom
Posts: 1,210
Thanks: 60
Thanked 66 Times in 64 Posts
JavaPF is someone you want to know!JavaPF is someone you want to know!JavaPF is someone you want to know!

I'm feeling Inspired
Default Re: Making a game for Mobile Phone

OK cool. Glad you have found a way to decompile them..

That is your best bet. Then you can see exactly how they work and make any changes you want
__________________
Don't forget to add code tags around your code:

Forum Tip: Add to peoples reputation () by clicking the button on their useful posts.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Similar Threads
Thread Thread Starter Forum Replies Last Post
help with an RPG game MooncakeZ Paid Java Projects 7 18-09-2009 02:41 AM
[ASK]making a map donjuan AWT / Java Swing 3 15-05-2009 08:32 AM
[SOLVED] mobile operating system blackJava Mobile Applications 3 16-04-2009 07:44 PM
Yo! Stuck making a simple game rojroj Java Theory & Questions 3 02-04-2009 03:24 PM
A more efficient Game of Life unreal4evr What's Wrong With My Code? 1 28-03-2009 12:21 PM


100 most searched terms
Search Cloud
2 dimensional arraylist java 2d arraylist java actionlistener actionlistener in java actionlistener java actionlistener jbutton addactionlistener addactionlistener java avatar hardware id convert double to integer java double format java double to int java double to integer in java double to integer java eclipse shortcut keys eclipse tutorial for beginners exception in thread "awt-eventqueue-0" java.lang.outofmemoryerror: java heap space exception in thread "main" java.lang.outofmemoryerror: java heap space format double java get mouse position java hardware id avatar java 2 dimensional arraylist java 2d arraylist java actionlistener java addactionlistener java button actionlistener java convert double to int java double format java double to int java double to integer java for beginner eclippse java format double java forum java forums java get mouse position java ipod touch java jbutton java list to map java mouse position java programming forum java programming forums java sendkeys java.lang.reflect.invocationtargetexception java.util.arraylist jbutton actionlistener jbutton java programming forums string to int java two dimensional arraylist java writing apps for ipod touch

All times are GMT. The time now is 01:01 PM.
Powered by vBulletin® Copyright ©2000-2009, Jelsoft Enterprises Ltd.