Help with making a game, Please.

Talk about making games.

Help with making a game, Please.

Postby SergeLo00001 » Sun Jul 02, 2006 5:06 am

I am trying to make a 2d game where a guy shoots a gun. You shoot with the mouse left button. I am having trouble making the part were the bullet goes to where you cliked and from where it starts(tip of the gun). Help me if you know how to do this, or even if you can help me with a part of this, i would be greatly thankful. :)
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby Joshua Worth » Sun Jul 02, 2006 5:25 am

this isnt an advanced topic
Stay sweet
User avatar
Joshua Worth
 
Posts: 515
Joined: Tue Jul 19, 2005 12:00 am
Location: Stralia
Score: 5 Give a positive score

Postby DilloDude » Sun Jul 02, 2006 6:00 am

To make the bullet move to the direction of the mouse, put this script in bullet's create actor:
Code: Select all
directional_velocity = 10;
angle = direction(xscreen, yscreen, xmouse, ymouse);

To make the bullet come out of the end of the gun, first check the animation. The path the tip of the gun travels should be close to a circle. You need to know the coordinates of the center of this circle relative to the center of the animation. In the following examples, replace yoffset with the y coordinate, and xoffset with the xcoordinate. Replace gundist with the radius of the circle. Now we need some functions, add this in global code:
Code: Select all
float d2R(int degrees)
{
    return degrees * (3.1415926535897932384626433832795 / 180);
}


double xdist(int deg, double dist)
{
    return  dist * cos(d2R(deg));
}


double ydist(int deg, double dist)
{
    return -dist * sin(d2R(deg));
}

NOTE: the purpose of the d2r function is the same as that of the degtorad function. The effect should be the same if you replace d2r with degtorad. However, the d2r function works, so I have not tested it with the degtorad function. [/note]

On your actor that recieves the mouse-click, make an activation event to your player/gun actor. On that actor, add an activation event, script editor:
Code: Select all
double xcre;
double ycre;
double ang; = direction(xscreen, yscreen, xmouse, ymouse);

xcre = xoffset + xdist(ang, gundist);//if your circle center is the same as the animation center, just use xcre = xdist...
ycre = yoffset + ydist(ang, gundist);//see above

CreateActor("bullet", "bulletanim", "no parent", "no path", xcre, ycre, false);

Replace bullet with your bullet actor's name.
Replace bulletanim with your bullet;s animation name.
Image
User avatar
DilloDude
 
Posts: 866
Joined: Tue Jan 24, 2006 9:51 am
Location: Nyerellion
Score: 58 Give a positive score

Postby SergeLo00001 » Sun Jul 02, 2006 8:18 am

double ang; = direction(xscreen, yscreen, xmouse, ymouse);
i got invalid assignment for this line. :( confused by this part.
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby SergeLo00001 » Sun Jul 02, 2006 8:28 am

o, and since i want to clik to shoot the bullet wont there need to be a mouse button down event anywere?
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby SergeLo00001 » Sun Jul 02, 2006 8:33 am

i also dont understand were to put the second code u gave me. :?
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby ondy1985 » Sun Jul 02, 2006 11:28 am

SergeLo00001 wrote:double ang; = direction(xscreen, yscreen, xmouse, ymouse);
i got invalid assignment for this line. :( confused by this part.

remove the semicolon after the ang.
Code: Select all
double ang = direction(xscreen, yscreen, xmouse, ymouse);
Image

Motto: "I never let my schooling interfere with my education" --- Mark Twain
User avatar
ondy1985
 
Posts: 99
Joined: Thu May 05, 2005 7:43 pm
Location: Slovakia
Score: 1 Give a positive score

Postby SergeLo00001 » Sun Jul 02, 2006 8:58 pm

double xcre;
double ycre;
double ang = direction(xscreen, yscreen, xmouse, ymouse);

xcre = 100 + xdist;
ycre = 7 + ydist;

CreateActor("shot", "shot", "no parent", "no path", xcre, ycre, false);




I get:
Warning Line 4: Trying acces a function without argumnts. The function wont execute. Try use: function();
Error line 4: Illegal pointer operation
(Reapeat for line 5)

Is it because i didnt do the second code in the global place yet? cause i dont know how to do that. If not, explain both of my problems please. :)
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby makslane » Sun Jul 02, 2006 9:14 pm

xdist and ydist are funtion.
To use, you need put the functions arguments.
In this case, angle and distance, for example:

Code: Select all
xcre = 100 + xdist(90, 3);
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Postby SergeLo00001 » Mon Jul 03, 2006 12:53 am

what do the 90 and the 3 mean :?:
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby SergeLo00001 » Mon Jul 03, 2006 12:57 am

does anyone understand what dillo dude said about the path of the tip of the gun should be close to a circle. What circle is he talking about?
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby DilloDude » Mon Jul 03, 2006 1:41 am

SergeLo00001 wrote:what do the 90 and the 3 mean :?:

The 90 is the angle. in this case, striaght up. the 3 is the distance. So with these paramaters, ydist would return -3, and xdist would return 0. So you would use these parameters if your gun was pointing straight up, and the distance from the tip of the gun to the reference point is three. If instead of 90, you put 180, straight left, xdist would return -3 and ydist would return 0.

Your gun should have an animation that starts with it pointing to the right, and rotates clockwise, about 10 degrees each frame. In draw actor, you can put:
Code: Select all
double ang = direction(xscreen, yscreen, xmouse, ymouse);
animpos = (ang / 360) * nframes;
This will make your gun point toward the mouse. This will be more accurate if the axis of rotation (ie. the center of the circle) is in the center of the animation. Make sure that on creat actor, you change the anim direction to STOPPED.
Image
User avatar
DilloDude
 
Posts: 866
Joined: Tue Jan 24, 2006 9:51 am
Location: Nyerellion
Score: 58 Give a positive score

O

Postby SergeLo00001 » Mon Jul 03, 2006 4:39 am

ooooooooo, i get it now. Thanks!
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby SergeLo00001 » Mon Jul 03, 2006 6:21 pm

can someone please explain to me why sometimes when i add animation it takes out the non rectagle image from the file like i want to, and sometimes it takes the whole image. What is it that makes the difference?
ie:
whole image
////////////////
////////////////
ooo///////////
oooooo///////
oooooo///////
ooo///////////
////////////////

what i want


ooo
oooooo
oooooo
ooo


you know what i mean?
SergeLo00001
 
Posts: 46
Joined: Sun Jul 02, 2006 4:58 am
Score: 0 Give a positive score

Postby Game A Gogo » Mon Jul 03, 2006 9:29 pm

make sure that top left corner is the trnsparent!

~Fred~
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score

Next

Return to Game Development

Who is online

Users browsing this forum: No registered users and 1 guest