News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Made a game

Started by Farabi, August 03, 2005, 02:48:50 AM

Previous topic - Next topic

Farabi

Hai, I planed to made a game, please download the attachment. I need someone who able to made a 3D house picture, I have the model but if you able to model it or you have your own model please send me the .bmp or .jpg picture. I need 4 picture, rotated at 0 degree, 90, 180, and 270.

Im not planned this project as a commercial one, but if I sell it I will share you the profit.
If someone can made a human model as the main character I will made this game as a 2D action RPG.

So what I need is.
1. Modeller, you must use Pov Ray and anim8tor as the modeller.
2. Control programmer, you must use MASM for the control system.
3. System programmer, you must use MASM for the inventory and load save system. We will made it together.
4. Musician, use any tool you familiar and the format must be .wav.

If you interested I will send you the skeleton of MASM source code project by me, you will need to familiar with RadAsm.

Your help will be appreciated.
Error or crash on the attachment please tell me.

[attachment deleted by admin]
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

ninjarider

dude i couldn't do the setup for the window but i can make a better rpg than what u have.
aim - bloodycyborge

Farabi

Quote from: ninjarider on August 03, 2005, 04:31:44 PM
dude i couldn't do the setup for the window but i can make a better rpg than what u have.
aim - bloodycyborge

Is it crash on your computer? What if I help you then? I think I should have a partner. Im confused with all of the bug. Can I join you?
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

Farabi

#3
Here is another. I will finish the system first. I sudenly remember a game named galaga. I think I will try to made something like that first.
Here is the stable version, I think it will not crash anymore.

[attachment deleted by admin]
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

ninjarider

most likly a segment of your code looks like this

.if (msg) == vk_a
    mov eax plane.x
    add eax, 1
    mov plane.x, eax
.endif

im not sure if i got that anywere near right.
create a global array of bytes and call id kd() if keys()

then change your code to something like this

.if (msg) == vk_a
    mov kd(vk_a), 1// either 1 or true// something to let u know that the key vk_a has been pressed
.endif

althou u have to track key-ups and key-downs

in your main loop you want something like this
.if kd(vk_a) == 1// true
    mov eax, plane.x
    add eax, 1
    mov plane.x, eax
.endif

Farabi

Here. I have put the sound and the blast animation. Thanks for your code. No problem, I think I can handle it by my self. Im very appreciate your assistance.

And I hope You will assist me continously :tgrin:

[attachment deleted by admin]
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

ninjarider

what r the controls for your game

Farabi

Quote from: ninjarider on August 05, 2005, 12:06:15 PM
what r the controls for your game

a,w,s,d and mouse click to shot.

Here Is the latest screen shot. I will upload it soon.
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

ninjarider

on the last version uploaded there are 2 bugs.

when the plane.x is < f-16.x the f-16 wont explode.
the f-16 eventually goes out of bounds and can not be killed.

have u added the code that i posted earlier

ninjarider

#9
what graphic library / api functions are u using

ninjarider

some things to consider that might make it look a little more real / interesting. have the plan roll. right now you are dealing with a flat image. as the plane moves left and right the planes across the z-axis stays still. if u had a roll angle of 10 degrees it would make it look a little better. just a suggestion.

Farabi

Quote from: ninjarider on August 05, 2005, 02:25:20 PM
on the last version uploaded there are 2 bugs.

when the plane.x is < f-16.x the f-16 wont explode.
the f-16 eventually goes out of bounds and can not be killed.

have u added the code that i posted earlier

I have not put your code. Im still confused with the implementation. My target now is made my system will not crased first. Since you able to play it, so it not crased on your computer.
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

Farabi

Quote from: ninjarider on August 05, 2005, 03:14:02 PM
what graphic library / api functions are u using

GDI32.dll The polygon function on that .dll is very fast and efficient.
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

Farabi

Quote from: ninjarider on August 05, 2005, 06:48:38 PM
some things to consider that might make it look a little more real / interesting. have the plan roll. right now you are dealing with a flat image. as the plane moves left and right the planes across the z-axis stays still. if u had a roll angle of 10 degrees it would make it look a little better. just a suggestion.

:U okay, but it will made the .zip file bigger.
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"

Farabi

I finish it. I will made the stage much more and do the scrolling also.

[attachment deleted by admin]
Those who had universe knowledges can control the world by a micro processor.
http://www.wix.com/farabio/firstpage

"Etos siperi elegi"