sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    OnKeyDown: getting the charcater value from key

    Scheduled Pinned Locked Moved Developers' Forum
    32 Posts 7 Posters 1.7k Views 7 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • fredo6F Offline
      fredo6
      last edited by

      @dan rathbun said:

      @fredo6 said:

      My goal was to see if the keys could be transformed into characters in order to trap the 0-9, =, +, -, *, / characters.

      The API indicates you should probably use the onUserText() callback, instead.

      Dan,

      I was trying to see if it is possible to have a independent VCB as a web dialog box.

      Basically, when you type the first character ([0-9], or *=+-/()) you switch to a regular web dialog field where you are free to type other letters, in particular a suffix, which may happen to be a shortcut. So it does not really change the workflow of the user.
      The benefit could also be to have more extended syntax, add a calculator, etc....

      Draw Along Floating VCB.gif

      The only issue is to decode correctly the first character.

      I can of course hard code the key / flags, but would need to check on Mac too.

      Anyway, at this stage, I was first trying to understand the logic.

      Fredo

      1 Reply Last reply Reply Quote 0
      • Dan RathbunD Offline
        Dan Rathbun
        last edited by

        @vcb_active = true

        
          def enableVCB?
            return @vcb_active
          end
        
        

        ... then get the 1st char with onUserText()
        if it is "a special character" then set @vcb_active = false and show your special vcb dialog (or input box).

        When things return to normal, set @vcb_active = true again.

        I'm not here much anymore.

        1 Reply Last reply Reply Quote 0
        • TIGT Offline
          TIG Moderator
          last edited by

          Another little foible is that [unlike PC] .onKeyDown with TAB doesn't "fire" on MAC, but .onKeyUp with TAB it does πŸ˜’

          TIG

          1 Reply Last reply Reply Quote 0
          • fredo6F Offline
            fredo6
            last edited by

            Dan,

            It does not work, and for two good reasons:

            1. EnableVCB? is not checked continuously but only after a click

            2. onUserText fires when you have type Enter, not before. To keep the same workflow, the VCB psuedo input box has to appear 'naturally when typing characters.

            My original question was about the logic in key and flags on onKeyDown/Up events, but apparently this is not an obvious one.

            @TIG: Currently, I am just trying to trap and decode a few characters: numeric and arithmetic signs, whether typed on the main keyboard or numpad. I know for TAB and always use it on key Up (in general, I prefer to trigger actions on key up, to avoid pending events).

            Fredo

            1 Reply Last reply Reply Quote 0
            • Dan RathbunD Offline
              Dan Rathbun
              last edited by

              @fredo6 said:

              It does not work, and for two good reasons:

              1. EnableVCB? is not checked continuously but only after a click

              2. onUserText fires when you have type Enter, not before. To keep the same workflow, the VCB psuedo input box has to appear 'naturally when typing characters.

              These "rules" should be IN the API dictioanry. πŸ˜’

              I'm not here much anymore.

              1 Reply Last reply Reply Quote 0
              • Dan RathbunD Offline
                Dan Rathbun
                last edited by

                @fredo6 said:

                My original question was about the logic in key and flags on onKeyDown/Up events, but apparently this is not an obvious one.

                This kind of thing was discussed years ago, in a topic that Jim posted his key inspector tool.
                Jim's tool:
                https://sites.google.com/site/jimfoltz/my-sketchup-plugins/key-code-tool/jf_KeyTool.rb

                See:
                [url=http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=34002:24695zr7]My Apple Keyboard VK_KEYS[/url:24695zr7]

                [url=http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=37217%26amp;p=328264:24695zr7]very difficult key codes![/url:24695zr7]

                [url=http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=18860:24695zr7]flags on onKeyDown?[/url:24695zr7]

                [url=http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=12642:24695zr7]keycodes intelmac[/url:24695zr7]

                • Jim's KeyTool.rb is also posted in this topic thread, but not sure if it is the latest version ?

                [url=http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=2012:24695zr7]Key sequence in ruby[/url:24695zr7]

                I'm not here much anymore.

                1 Reply Last reply Reply Quote 0
                • D Offline
                  driven
                  last edited by

                  could this be adapted for SU ruby?
                  https://gist.github.com/acook/4190379

                  learn from the mistakes of others, you may not live long enough to make them all yourself...

                  1 Reply Last reply Reply Quote 0
                  • fredo6F Offline
                    fredo6
                    last edited by

                    @driven said:

                    could this be adapted for SU ruby?
                    https://gist.github.com/acook/4190379

                    Thanks. Unfortunately, I did not find a way to get anything out of $stdin. The problem is that the class Tool is based on events and therefore, the class is notified about keys, once entered, and cannot get the key.

                    Fredo

                    1 Reply Last reply Reply Quote 0
                    • fredo6F Offline
                      fredo6
                      last edited by

                      @dan rathbun said:

                      This kind of thing was discussed years ago, in a topic that Jim posted his key inspector tool.

                      Dan,

                      I had already browsed some of these threads. Thanks.

                      I think for tracking Shoft, Ctrl and arrows, it is clear.

                      But what I am trying to do is simplyget a natural character(like the digits [0-9)) and I really do not understand the logic.

                      • the key seems to be the ascii value, but only on main keyboard and for the main key (i.e. ignoring the Shift state)
                      • the flag value is for me totally cryptic (in addition it is very different on keydown and keyup for the same key).

                      I guess there must be some logic encoded Under the Hood and that's what I am trying to understand.

                      Fredo

                      1 Reply Last reply Reply Quote 0
                      • Dan RathbunD Offline
                        Dan Rathbun
                        last edited by

                        @fredo6 said:

                        • the flag value is for me totally cryptic (in addition it is very different on keydown and keyup for the same key).

                        Oh yes it is quite clear that there are issues, and it IS a pain in the butt.

                        I remember vaguely someone explaining how the flag bit masks worked, and how to | and & them properly.

                        It would be nicve if the API creates a KeyFlag subclass of integer with methods like:
                        .shift? .control? .command? .alt?
                        ... etc.

                        I'm not here much anymore.

                        1 Reply Last reply Reply Quote 0
                        • A Offline
                          Anton_S
                          last edited by

                          @fredo6 said:

                          But what I am trying to do is simplyget a natural character(like the digits [0-9)) and I really do not understand the logic.

                          @fredo6 said:

                          My goal was to see if the keys could be transformed into characters in order to trap the 0-9, =, +, -, *, / characters.

                          The tool onKeyDown method returns virtual key constant value, key repeat, key flags, and view instance.

                          Here is the list of Virtual Key Codes on Windows: http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx

                          key.chr will return the character of the value.
                          for instance 87.chr returns 'W'

                          You can filter the keys like this:

                          def onKeyDown(key, repeat, flags, view)
                            if %w(1 2 3 4 5 6 7 8 9 0 = + - * /).include?(key.chr)
                              # process code here
                            else
                              return
                            end
                          end
                          

                          How to convert numeric decimal to hexadecimal:
                          87.to_s(16) # => '57' or 0x57 which can be found in the virtual key codes list.

                          When viewing flags you might first want to convert them to hexadecimal.
                          The flags don't give you anything special about the key.
                          Here is what they give: http://msdn.microsoft.com/en-us/library/windows/desktop/ms646267(v=vs.85).aspx#_win32_Keystroke_Message_Flags

                          1 Reply Last reply Reply Quote 0
                          • A Offline
                            Anton_S
                            last edited by

                            Apparently key.chr doesn't return proper characters for all values. For that, we might want to sett up a hash of values and characters.

                            CHARS = {
                            # Standard keys
                            0x30 => '0'
                            0x31 => '1'
                            0x32 => '2'
                            0x33 => '3'
                            0x34 => '4'
                            0x35 => '5'
                            0x36 => '6'
                            0x37 => '7'
                            0x38 => '8'
                            0x39 => '9'
                            0xBD => '-'
                            0xBB => '+'
                            0x0D => '=' # use enter key for =
                            # Numpads
                            0x60 => '0'
                            0x61 => '1'
                            0x62 => '2'
                            0x63 => '3'
                            0x64 => '4'
                            0x65 => '5'
                            0x66 => '6'
                            0x67 => '7'
                            0x68 => '8'
                            0x69 => '9'
                            0x6B => '+'
                            0x6D => '-'
                            0x6A => '*'
                            0x6F => '/'
                            }
                            

                            So the filter set up would look like this now.

                            def onKeyDown(key, repeat, flags, view)
                              key_char = CHARS[key]
                              return unless key_char
                              # process
                            end
                            

                            This technique should work on Windows. I don't know about Macs though.

                            1 Reply Last reply Reply Quote 0
                            • fredo6F Offline
                              fredo6
                              last edited by

                              Anton,

                              Thanks very much.
                              I have the virtual keycodes on Mac too.

                              The main issue is that these map physical keys, so it will be very difficult to have a reliable result for non-US keyboards for the the digits for instance, which may require a Shift (like on French keyboard).

                              And you are right that flags does not bring much info.

                              Fredo

                              1 Reply Last reply Reply Quote 0
                              • tt_suT Offline
                                tt_su
                                last edited by

                                Yea, the Tool class return key codes, not character codes. And they are system dependant.

                                I'm not sure how you'd get the resulting character that would be produced, though should think there should be some system API for this. I'd have to search for that.

                                1 Reply Last reply Reply Quote 0
                                • Dan RathbunD Offline
                                  Dan Rathbun
                                  last edited by

                                  @Anton: Would using ToUnicode() be better than ToAscii() ?

                                  I'm not here much anymore.

                                  1 Reply Last reply Reply Quote 0
                                  • A Offline
                                    Anton_S
                                    last edited by

                                    @dan rathbun said:

                                    @Anton: Would using ToUnicode() be better than ToAscii() ?

                                    I just tested and seen no difference. I think it doesn't matter much.

                                    1 Reply Last reply Reply Quote 0
                                    • tt_suT Offline
                                      tt_su
                                      last edited by

                                      @dan rathbun said:

                                      @Anton: Would using ToUnicode() be better than ToAscii() ?

                                      Indeed this appear to be the correct function to use:
                                      http://msdn.microsoft.com/en-us/library/windows/desktop/ms646320(v=vs.85.aspx

                                      @unknownuser said:

                                      Translates the specified virtual-key code and keyboard state to the corresponding Unicode character or characters.

                                      Though, it probably produce a UTF-16LE string, transposing to UTF-8 would probably be best for interoperability with the rest of the SketchUp environment.

                                      1 Reply Last reply Reply Quote 0
                                      • A Offline
                                        Anton_S
                                        last edited by

                                        Nah, both of them are encoded in US-ASCII. πŸ˜•
                                        adding char.force_encoding('UTF-8') should do the tick, aint it?

                                        1 Reply Last reply Reply Quote 0
                                        • tt_suT Offline
                                          tt_su
                                          last edited by

                                          @anton_s said:

                                          Nah, both of them are encoded in US-ASCII. πŸ˜•

                                          You're talking about ToAscii?
                                          I was looking at ToUnicode.

                                          @anton_s said:

                                          adding char.force_encoding('UTF-8') should do the tick, aint it?

                                          I'd be careful with force_encoding - it should only be used if you have raw binary data representing a string or if you know the string is incorrectly encoded. Otherwise one should transpose the en encoding.
                                          foo = bar.encode("UTF-8")

                                          1 Reply Last reply Reply Quote 0
                                          • A Offline
                                            Anton_S
                                            last edited by

                                            @tt_su said:

                                            You're talking about ToAscii?
                                            I was looking at ToUnicode.

                                            Yes, the ToUnicode and ToAscii both return same formatted Ruby strings, but on the actual approach they don't. When I initially created a buffer char = 0.chr*2 it was already formatted in US-ASCII. The ToUnicodeand ToAscii simply fills the the specified buffer with ascii/unicode characters without changing the format of the Ruby string.

                                            Changing char = 0.chr*2 to char= ' ' will initially create a UTF-8 formatted string, rather than the US-ASCII. The format remains unchanged when the ToUnicode/ToAscii functions fills the char string.

                                            @tt_su said:

                                            I'd be careful with force_encoding...

                                            For some reason force_encoding even managed to crash SketchUp at some points when testing key_test.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement