Results 1 to 5 of 5

Thread: Game development on J2ME

  1. #1
    Join Date
    Nov 2008
    Posts
    25

    Game development on J2ME

    hello everyone ,

    i am need a developpement of the game with java mobile but i don't know how to start please if any one know how can create the canvas with ball moved with a raquet tell me see the picture in joint

  2. #2
    Join Date
    Dec 2007
    Posts
    1,736

    re: Game development on J2ME

    We will program an applet in which a ball is moving from the left to the right hand side. I know this is nothing BIG but if you want to learn how to program games it is maybe the most important thing to understand how to animate objects!

    At the beginning we have to write our basic structure of an applet again but we will add two little things. Our applet has to implement the interface Runnable and the corrosponding method run() to animate a object. The structure of the applet should look like this:

    import java.applet.*;
    import java.awt.*;

    public class BallApplet extends Applet implements Runnable
    {
    public void init() { }

    public void start() { }

    public void stop() { }

    public void destroy() { }

    public void run () { }

    public void paint (Graphics g) { }


    }

    More information here: http://www.javacooperation.gmxhome.d...wegungEng.html

  3. #3
    Join Date
    Nov 2008
    Posts
    25

    re: Game development on J2ME

    if you know some link or web site have tutorial the game programmin on J2ME please tell me

    THANKS

  4. #4
    Join Date
    Aug 2004
    Location
    India
    Posts
    76

    Re: Game development on J2ME

    Thread title edited.
    LOOK FOR VARIOUS WINDOWS SOFTWARE'S AND NETWORKING & SECURITY SOLUTIONS OVER HERE

  5. #5
    Join Date
    Nov 2008
    Posts
    25

    Re: Game development on J2ME

    i don't understand please help me


    thanks

Similar Threads

  1. j2me vs. android for App development
    By Suhas Gosh in forum Software Development
    Replies: 7
    Last Post: 23-07-2011, 12:51 AM
  2. How to build development environment in J2ME
    By Efigenio in forum Software Development
    Replies: 4
    Last Post: 25-02-2010, 03:35 AM
  3. Game development courses ?
    By abhishek_turbo911 in forum Education Career and Job Discussions
    Replies: 1
    Last Post: 27-01-2010, 06:00 PM
  4. developing a 2D mobile game in J2ME
    By Aramax in forum Software Development
    Replies: 3
    Last Post: 21-09-2009, 02:30 PM
  5. C# & game development
    By VivekT in forum Software Development
    Replies: 2
    Last Post: 09-02-2009, 09:12 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,996,601.59256 seconds with 17 queries