Author Topic: OnKeyUp  (Read 5855 times)

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
OnKeyUp
« on: 2012-05-27, 02:44:10 PM »
How would I go about implementing a OnKeyUp rule, to meet the OnKeyPress rule? This is a question in response to the other one, in case my first question isn't possible in SGDK2.

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: OnKeyUp
« Reply #1 on: 2012-05-29, 12:37:28 PM »
(Bump) Anyone?

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: OnKeyUp
« Reply #2 on: 2012-05-29, 01:33:10 PM »
The question is a bit confusing because I don't think there is an OnKeyPress rule. In fact there are no rules that start with "On" because that implies an event handler, which Rules are not. There is an IsKeyPressed rule function, and that should work equally well to determine when a key is pressed and when it is not pressed.

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: OnKeyUp
« Reply #3 on: 2012-05-30, 06:01:07 AM »
If you need to verify when a key is pressed and when it is released, you can do it by storing a flag (sprite flag or global counter) somewhere.  Here is some pseudo rule code:

If IsInputPressed (initial = false, button = button 1)
Then keyIsDown = 1 (set a flag)
End if

If keyIsDown == 1
And not IsInputPressed (initial = false, button = button 1)
Then keyIsDown = 0 (reset the flag)
And accomplish your action because the key was just released
End if

There you go.
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: OnKeyUp
« Reply #4 on: 2012-05-30, 08:36:17 AM »
Thanks Vincent, when I was writing it yesterday I was doing the same thing, with bool

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: OnKeyUp
« Reply #5 on: 2012-05-30, 09:19:11 AM »
Yup, with a boolean, it's even better, but last time I checked you had to code it (use boolean flag) rather than just use rule editors (int sprite properties).
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com