Author Topic: Mouse input?  (Read 10289 times)

PrinceOfBrains

  • Visitor
  • *
  • Posts: 9
    • View Profile
    • Email
Mouse input?
« on: 2012-03-28, 04:25:51 PM »
Hey everyone - it's my first ever post here! I found this while looking around for any kind of freeware 2D game engine - I've tried learning Flash, Ruby, and what have you, but...frankly I'm too dumb for programming languages, and this seems to be a fine alternative.

I do have a question, though. I've had an idea in my head kicking around for a while for a 2D shooter, Gunstar Heroes/Contra kind of game, and I think I could pull it off with SGDK. My question is, can SGDK accept mouse input? My ideal control scheme for the game would have you moving around with the arrow keys or WASD, and aiming and firing by using the mouse to move a crosshair around the screen and firing with that. Is anything like that feasible with this engine?

Thanks for your time.

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Mouse input?
« Reply #1 on: 2012-03-28, 05:27:48 PM »
There is a rule function you can use called "MapMouseToSprite".  A rule function is something you select when you are defining the rules of how a sprite or plan behaves.  So if you wanted to create a sprite that represented the mouse cursor within the game, you could create a sprite that looks like an arrow, and then add a rule (on the Rules tab of the Sprite Definition window) that specified "MapMouseToSprite".  The function takes 1 parameter called InstantMove, which determines whether the sprite will instantly be at the current position of the mouse or whether it will set the velocity of the sprite so that it will try to move there when MoveByVelocity is applied.  For a mouse cursor sprite, I would suggest specifying the value "true" (no quotes) for InstantMove.

Once you have a mouse cursor sprite (perhaps it looks like a cross-hair), then you can add that sprite to a sprite category like "BulletTarget" (just made up a name).  Then you can make you bullet sprites move toward the nearest sprite in the BulletTarget category.

Hope this helps, and I hope you enjoy using SGDK2!

PrinceOfBrains

  • Visitor
  • *
  • Posts: 9
    • View Profile
    • Email
Re: Mouse input?
« Reply #2 on: 2012-03-28, 05:35:44 PM »
Much obliged for the swift reply! Yes, that should do exactly what I need it to, and I appreciate the help. Sorry if it it was kind of a "stupid newbie" question.  :baby:

I suppose while we're still here talking about it, does anyone have any tips for making that kind of game? Cool enemy behaviors, tips on making the weapons, etc?

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: Mouse input?
« Reply #3 on: 2012-03-28, 06:23:08 PM »
Enemies that charge and shoot at you. I believe that the sample projects have some kind of sprite that support that.

Draw Counters in the overlay map to show how many bullets remain.

(Not to overwhelm you)

Now, there's 2 ways to go about having the bullet go towards the crosshair.

The easiest way, which I did when I was a newbie, was to make a bullet sprite, set it's speed to a large number, then use the rule that pushes a sprite towards a certain category (The crosshair category).

The second way is to use Pythagorean's Theorem to calculate a triangle's hypotenuse from the X and Y position points of both triangles. This way isn't feasible without code of some kind, but it's something I should tell you if you may need this information later.

I suggest you play around and learn to make a project with a moving box, or something simple, before moving on to this.

If you want a template of a game like this, feel free to ask. It won't be any trouble.

Edit After looking over bluemonkmn's post I think that he pretty much beat me to the bullet method. :D
« Last Edit: 2012-03-28, 06:26:45 PM by #Sharp »

PrinceOfBrains

  • Visitor
  • *
  • Posts: 9
    • View Profile
    • Email
Re: Mouse input?
« Reply #4 on: 2012-03-29, 03:38:58 PM »
Well, I suppose if it wasn't too much trouble...

Just somewhere to start from, you know? I don't intend on this being the first thing I make with SGDK, but I do hope to get to this sometime eventually. I really appreciate all the help, you guys.

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: Mouse input?
« Reply #5 on: 2012-03-29, 07:05:08 PM »
Alright, now I don't expect you to know how everything works off of the bat, but I submitted a template for a sprite like that.

Learn from the sample projects. When you feel ready, tackle my project.
If anyone has a better project, feel free to post it. I don't have much time to detail this one.

I've submitted it to the Project Listing. I'm hoping bluemonkmn will approve and post the link.

~#Sharp

PrinceOfBrains

  • Visitor
  • *
  • Posts: 9
    • View Profile
    • Email
Re: Mouse input?
« Reply #6 on: 2012-03-29, 07:15:20 PM »
I really appreciate the help! As soon as I get a chance to study them in better detail, I'll let you know!

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Mouse input?
« Reply #7 on: 2012-03-29, 08:04:49 PM »
I've submitted it to the Project Listing. I'm hoping bluemonkmn will approve and post the link.

Unfortunately I am in the process of completing a major upgrade to the project listing site, and the uploads are not working on the original project listing.  Did you see a "Project Listing Beta" menu item?  If so, could you try to upload it there?  I think that one is working.

I'm upgrading because I think the upload functionality was the source of the security hole a couple weeks ago that caused all my sites to get hacked.

Edit: I may have fixed the old Project Listing.  You could try again submitting it to that list.  I'm not sure which to keep, but I'm leaning toward the one that already has the files in it.  I just want to know which one is going to be more secure.
« Last Edit: 2012-03-29, 09:16:03 PM by bluemonkmn »

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: Mouse input?
« Reply #8 on: 2012-03-30, 05:11:49 AM »
Come to think of it, the  Neuro demo might be a better example of this.

The Shooter project I made is far from perfect, but extremely basic.

Mind if I upload both, primarily as a Template, and Application of this in an actual Game?

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Mouse input?
« Reply #9 on: 2012-03-30, 05:18:37 AM »
Go for it.

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: Mouse input?
« Reply #10 on: 2012-03-30, 05:33:35 AM »
Thanks. I've tried to get both on the Beta Project Listing.

*Scratch That* Neuro is 6MB too large.
« Last Edit: 2012-03-30, 05:43:17 AM by #Sharp »

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Mouse input?
« Reply #11 on: 2012-03-30, 06:18:18 AM »
Did you try to get Neuro on the old listing?

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Mouse input?
« Reply #12 on: 2012-03-30, 02:26:38 PM »
The Shooter sample is published.

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: Mouse input?
« Reply #13 on: 2012-03-30, 03:38:42 PM »
Did the shooter example seem Under-Done (buggy, rushed, and inefficient) or Over-Done(too complex for something with those small requirements)?

I wanted to make a basic example, but had to work with 2 hours.
I'm sure there's a better way, which I had used in Neuro, so I figured to upload what little I had of that.

Neither listing is working. It's not too important though, as long as I had contributed a working sample.

If you choose to change something in it, feel free.
« Last Edit: 2012-03-30, 03:42:32 PM by #Sharp »

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Mouse input?
« Reply #14 on: 2012-03-30, 08:54:54 PM »
What happens when you try to upload to the old list?