Author Topic: How do I map key's to left click?  (Read 5844 times)

NightFang

  • Regular
  • **
  • Posts: 23
    • View Profile
    • Email
How do I map key's to left click?
« on: 2007-06-01, 04:59:39 PM »
yeah how do I map a key which i want to be left click with the mouse and I also want to right click but, when I checked the mapkeytoinputs section well, I couldnt find the left click or right click can someone help me out or is the left and right click not in the source code?

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: How do I map key's to left click?
« Reply #1 on: 2007-06-02, 11:26:51 AM »
Boy, oh, boy.  I told BlueMonk to do that like a <i>week</i> ago! ;-) If it's not there yet, it will be.  In any case, there should be some ability to detect mouse clicks some how.  I made a game that did it just the other day (well, a pseudo-game).  Although, I don't remember if there was a built-in function for mouse-clicks or not.  My instinct tells me there wasn't, and I had to go make one myself.  Although that may have been for hiding the cursor.  I'm not sure.  Here's something you can do though:

DO rule type
SetInput rule
Arg 1: (Whichever button you want to use)
Arg 2: (System.Windows.Input.Mouse.LeftButton==System.Windows.Input.MouseButtonState.Pressed)

There's a better way to do it, but I can't find it right now, and it will soon be if not already is supported by the engine itself with a built-in operation.
Edward Dassmesser

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: How do I map key's to left click?
« Reply #2 on: 2007-06-02, 10:14:22 PM »
I've found the built-in function to determine if a button is pressed: IsMouseButtonPressed

So just use
Arg 2: IsMouseButtonPressed(System.Windows.Forms.MouseButtons.Left)

However, I believe that eventually something closer to a mouse-pointer-as-a-player will be implemented, where one call will set the sprite position to the mouse position, and map all the mouse button inputs to the player inputs.  Something like that.
Edward Dassmesser

NightFang

  • Regular
  • **
  • Posts: 23
    • View Profile
    • Email
Re: How do I map key's to left click?
« Reply #3 on: 2007-06-03, 03:05:00 PM »
ok thanks!

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: How do I map key's to left click?
« Reply #4 on: 2007-06-04, 06:42:47 AM »
Look for MapMouseToSprite... I think that may already be done.