J2me game development query

Hi there,

i am working on a j2me game for mobile phones(in particularly 7650) <my school project>, the view of the game is that of pac-man and battlecity FOR GAMEBOY. Its like, pacman for eg, the maze is NOT FULLY DISPLAYED on screen, but captures only a close up view of pacman and its surronding area.

Therefore it looks like theres a camera overhead following pacman. hat's the kinda view idea i have for my game.... question is.... Is j2me capable of such technique? If so, where can i find samples or reference for such technique?

thanks

[582 byte] By [edching] at [2007-9-27 14:33:56]
# 1
take a look at www.javaonthebrain.com this guy has some good mobile games that you can see online with an emulator applet he has. look for MIDP-Man in the applets page and the four below it.
zparticle at 2007-7-5 22:33:19 > top of Java-index,Other Topics,Java Game Development...
# 2

yes, scrolling is within the capabilities of todays phones.

None of the Emulators currently available are of any use for development, as none simulate the true speed of the device they emulate. At best they are simply tools for demonstrating 'potencial' games.

Also, an important issue is the the speeds of different phones, the differences can be absolutly massive, take for example Graphics.fillArc(...) - on nokia phones this opertion takes about 100 times longer than it does on Siemens phones!

At present, on most phones, your looking at about 20-30 drawImages @ 10 fps. (10 fps may not sound like much, but all the current phones have *very* poor lcd screens, that take upto 100ms for a pixel to fully change state, so fps>10 end up looking like blurr'o vision)

rob,

Abuse at 2007-7-5 22:33:19 > top of Java-index,Other Topics,Java Game Development...
# 3

errmm....

anyone has source codes for games like pac-man for handphone.... i still need references for doing a scrolling view of a maze game...

i saw the pacman game for Hp at javaonthebrain.com but namco told the web owner to remove the source codes......

anyone has codes for similar games?

edching at 2007-7-5 22:33:19 > top of Java-index,Other Topics,Java Game Development...
# 4
I thought the idea was to *write* the code ;/its not like pacman, or scrolling is rocket science :P
Abuse at 2007-7-5 22:33:19 > top of Java-index,Other Topics,Java Game Development...