Available for a limited time only - £10 off a £20 spend at eXpansys! For more details visit this topic!

Please Log In or Register - it's FREE!

 
Reply to this topicStart new topic
 Game Programmers questions, what do you need to know?
muff
post Feb 13 2005, 16:22
Post #1


Addict
Group Icon

Group: MoDaCo Plus
Posts: 938
Joined: 19th January 2003
Member No.: 2,098



Hi all

As some of you are aware, I'm planning a tutorial series on games programming in C++ for the Smartphone - and I was wondering what you wanted to know.

I've obviously got a list of things here that I think are important, but they may vary wildly from what others want to learn.

feel free to add your suggestions biggrin.gif


These are obvious ones to get you started :-

- how to setup a window
- how to handle incoming calls
- how to load images
- how to put images on the screen
- how to play music + sounds
- how to handle keypad input
- how to store highscores + settings
- how to draw and scroll a multi-layer map
- how to do collisions

there are obviously lots more, but I want to hear what people feel they want to know


This post has been edited by muff: Feb 16 2005, 11:31
Go to the top of the page
 
+Quote Post
mashkhan
post Feb 14 2005, 15:19
Post #2


Enthusiast
Group Icon

Group: Posters
Posts: 199
Joined: 3rd December 2002
Member No.: 574



QUOTE(muff @ Feb 13 2005, 16:26)
Hi all

As some of you are aware, I'm planning a tutorial series on games programming for the Smartphone - and I was wondering what you wanted to know.

I've obviously got a list of things here that I think are important, but they may vary wildly from what others want to learn.

feel free to add your suggestions biggrin.gif
These are obvious ones to get you started :-

- how to setup a window
- how to handle incoming calls
- how to load images
- how to put images on the screen
- how to play music + sounds
- how to handle keypad input
- how to store highscores + settings
- how to draw and scroll a multi-layer map
- how to do collisions

there are obviously lots more, but I want to hear what people feel they want to know
*


Sounds like a great idea. I would personally like to see as a start for the first tutorial something really basic like a really simple Pong type thing. This would show us displaying + moving sprites as well as collision detection. Nothing to elaborate to begin with, just the basic building blocks.


This post has been edited by mashkhan: Feb 14 2005, 15:21


--------------------
I saw this in a movie about a bus that had to SPEED around the city, keeping its SPEED over fifty. And if its SPEED dropped, the bus would explode! I think it was called "The Bus That Couldn't Slow Down".
Go to the top of the page
 
+Quote Post
max1956bikes
post Feb 14 2005, 18:45
Post #3


Regular
Group Icon

Group: Posters
Posts: 95
Joined: 12th December 2004
From: northampton
Member No.: 101,629

Device(s): spv spv100 c500



sounds great idea i would love to make agame. hope its going to be easy to follow.i struggle to put games on phone unless its an easy download that does itself.
Go to the top of the page
 
+Quote Post
stealthd2
post Feb 16 2005, 10:44
Post #4


Newbie
Group Icon

Group: Posters
Posts: 7
Joined: 1st February 2005
From: Long Island, NY
Member No.: 107,864

Device(s): motorola mpx220



what language are u using to develop these games? i want to start coding some simple app that are desperately needed. I wish someone would port the latest MAME version with bluetooth support to play multiplayer. My knowledge is advanced VB, and basic C++, anything else i would have to learn.
Go to the top of the page
 
+Quote Post
beersoft
post Feb 16 2005, 18:38
Post #5


el Borracho
Group Icon

Group: Posters
Posts: 1,306
Joined: 22nd May 2003
From: Scary Devil Monastery - Milton Keynes
Member No.: 6,629

Device(s): 2 cups and some string



something that i find useful is going over sample projects and seeing how it all fits togther, as my c++ skills are "basic" and im not to hot on all this class and windows programming stuff something liket that would be usefull

something like a project that takes you through the steps of
how to load an image and sound files
how to build a image map
how to display the image map and actor sprites
how to move the background and actors
how to animate the actor sprites
how to get input from the user
(we can add our own deleting the codebase whilst drunk, blowing up hardware to slow development and featurecreap guides later smile.gif)

you can see where i am going with this, hand holding through the basic development process for those who know how to code but spend far too much time in the pub to work out all this windows pishposh wink.gif

later

Owen


--------------------
Go to the top of the page
 
+Quote Post
muff
post Feb 18 2005, 08:17
Post #6


Addict
Group Icon

Group: MoDaCo Plus
Posts: 938
Joined: 19th January 2003
Member No.: 2,098



Beer : going by some of the words you use it sounds like you've done some work with Macromedia products? thanks for the suggestions btw biggrin.gif


Come on people....

no other questions? or is it that people just dont know what they need to learn?
Go to the top of the page
 
+Quote Post
Jamma14
post Feb 18 2005, 11:16
Post #7


Addict
Group Icon

Group: Posters
Posts: 838
Joined: 4th May 2004
From: Bath
Member No.: 42,238

Device(s): T-Mo Dash



Lol well yeah, I guess there is that...my C++ skills are also very basic at best and I just think something that explains everything well and teaches us the simple things first gradually getting more complex - just starting from scratch how to make a basic game I guess. (Lol soz that post isn't very helpful) laugh.gif


--------------------
www.JammaSoft.tk

SPV e100 ----> i-mate sp3i ----> SPV c550 ----> T-Mobile Dash
Go to the top of the page
 
+Quote Post
ad69
post Mar 20 2005, 17:06
Post #8


Newbie
Group Icon

Group: Posters
Posts: 17
Joined: 10th February 2005
From: Isle Of Wight
Member No.: 109,770

Device(s): Now: C500 Past:K700i



yer i think some collison detection, environment, to load sound and images and keyboard input. :cheesy:


--------------------
if 4/5 people suffer from diarroea does that mean the 5th person enjoys it?
Go to the top of the page
 
+Quote Post
nIghtorius
post May 9 2005, 20:35
Post #9


Newbie
Group Icon

Group: Posters
Posts: 28
Joined: 25th March 2005
Member No.: 119,535

Device(s): SPV C_500



The most important thing for me was (when used to programming for a x86 WinXP system) is the lack of working directories on CE platforms.

I have written a "default" function for this:

CODE
LPWSTR    GetParentDir () {
    LPWSTR    AppPath = (LPWSTR)malloc (256);
    GetModuleFileName (NULL, AppPath, 256);
    int  pos = 0;
    int  ptr;

    do {
 if (AppPath[pos] == '\\') ptr = pos;
 pos++;  
    } while (AppPath[pos] != 0);

    AppPath [ptr+1] = 0;    // terminate string.;)

    return AppPath;
}


what does it do:

* first it allocates some space for a LPWSTR (unicode).. 2 bytes per character.. filename max length 128 characters here.
* Get the module filename of NULL (meaning itself).. for example \Storage Card\Games\My First Game\game.exe
* find the last "\" \Storage Card\Games\My First Game\game.exe
* place a #00 character (EOS) @ the position where the g of game.exe starts. effectively truncating the string @ the last "\"
* return pointer to the LPWSTR structure.

what do you have to do:
everytime you use the function and are done with his value invoke a:

delete ;

So you can your make applications/games run anywhere on the storage instead of having a "fixed" location.. (which sucks)
Go to the top of the page
 
+Quote Post
Jamma14
post May 20 2005, 18:10
Post #10


Addict
Group Icon

Group: Posters
Posts: 838
Joined: 4th May 2004
From: Bath
Member No.: 42,238

Device(s): T-Mo Dash



Any update on this muff?


--------------------
www.JammaSoft.tk

SPV e100 ----> i-mate sp3i ----> SPV c550 ----> T-Mobile Dash
Go to the top of the page
 
+Quote Post
muff
post May 21 2005, 09:17
Post #11


Addict
Group Icon

Group: MoDaCo Plus
Posts: 938
Joined: 19th January 2003
Member No.: 2,098



I'm actually waiting to see how the new phones shake out as they may well affect stuff
Go to the top of the page
 
+Quote Post
sanamkan
post Nov 22 2006, 17:21
Post #12


Newbie
Group Icon

Group: Posters
Posts: 3
Joined: 14th September 2006
Member No.: 206,198

Device(s): Cingular 2125



One thing that I would love to see in more smartphone games, are games that use the camera, like Fishopolis. If you could include a tutorial on how to use the camera in games, I'm sure that there will be an increase in those kinds. Also, could you please include topics for anybody who doesn't know anything at all about C++? Thanks.
Go to the top of the page
 
+Quote Post
vleselijke man
post Feb 11 2007, 19:26
Post #13


Newbie
Group Icon

Group: Posters
Posts: 9
Joined: 10th February 2007
Member No.: 228,477

Device(s): SPV550



All I can say is that I'm really looking forward to your tutorials as I'm planning to make a game for my c550 some day smile.gif
Go to the top of the page
 
+Quote Post
Hitman0769
post May 18 2008, 23:11
Post #14


Newbie
Group Icon

Group: Posters
Posts: 20
Joined: 18th May 2008
Member No.: 389,834

Device(s): PC,SGHi617,PS3



I would like to see a well commented example. Something like a Galaga game would be great! And if possible have a C++ Source which is coded to work in the Windows Mobile 6 Smartphone platform. This would be really awesome and I could learn everything I need to get started from something like this. Even if it was very basic but pointed out the coding mechanisms behind such an engine it would be very helpful.
Go to the top of the page
 
+Quote Post
kuriel5205
post Jul 25 2008, 18:01
Post #15


Newbie
Group Icon

Group: Posters
Posts: 23
Joined: 23rd June 2008
Member No.: 401,006

Device(s): sgh i321n



QUOTE(muff @ Feb 13 2005, 16:22) *
Hi all

As some of you are aware, I'm planning a tutorial series on games programming in C++ for the Smartphone - and I was wondering what you wanted to know.

I've obviously got a list of things here that I think are important, but they may vary wildly from what others want to learn.

feel free to add your suggestions biggrin.gif


These are obvious ones to get you started :-

- how to setup a window
- how to handle incoming calls
- how to load images
- how to put images on the screen
- how to play music + sounds
- how to handle keypad input
- how to store highscores + settings
- how to draw and scroll a multi-layer map
- how to do collisions

there are obviously lots more, but I want to hear what people feel they want to know



well... just do an smartphone emulator of gba... no se ingles... jeje...
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

Similar Topics

  Topic Replies Topic Starter Views Last Action
No new Topic has attachmentsSmartphone Game Emulators for C550
415 Parallax20 97,043 23rd August 2008 - 20:50
Last post by: McGuirk
No New Posts Questions about the 2125 and GPS
What type of GPS does the 2125 support?
2 MrMan2008 141 27th August 2008 - 06:33
Last post by: awarner (MVP)
No New Posts MDA Compact IV Questions
Memory / Power Settings / Radio Version
8 GuyAdams 298 24th August 2008 - 09:24
Last post by: Neil5459
No New Posts Couple of questions..
1 FragaL 123 21st August 2008 - 14:26
Last post by: jimbouk
No New Posts New HTC Diamond on the way - newbie questions
5 MHAD 431 27th August 2008 - 11:21
Last post by: MHAD
No New Posts Rom upgrade questions
4 coolcarrot 179 27th August 2008 - 05:56
Last post by: kaushj

1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


RSS hit counter Lo-Fi Version Time is now: 29th August 2008 - 06:45


Please visit our 'Plus Partners' - these companies support MoDaCo through 'MoDaCo Plus' - Click Here for more details!

VITO Technology | Slipstream Solutions | Aiko Solutions | PDAMill | Inesoft | SBSH | LingvoSoft | Ruttensoft | Astraware | MadBeetle | Sprite Software

Opera | Westtek | TetraEdge | Z4Soft | KBM Systems | Conduits | Mini Lyrics Magic | Proporta | Semsons | SyncData | Active Kitten | Binaryfish | Textr

SPB Software House | Omega One | OmniSoft | Resco | eSoft Interactive | TenGo | ATEKsoft | imei-check | GpsGate | SplashData | DeveloperOne | monocube

WebIS, home of Pocket Informant, FlexMail and Note2Self

Would your company like to become a 'Plus Partner'? Click Here to contact us!