diff options
| author | boris <wzn@moneybot.cc> | 2018-11-28 16:00:02 +1300 |
|---|---|---|
| committer | boris <wzn@moneybot.cc> | 2018-11-28 16:00:02 +1300 |
| commit | 3d412a4b30a9f7c7f51ea6562e694315948bd3da (patch) | |
| tree | 26d67dfd1f3e5fd12903ad13e85d0cb8bcf8f21c /cheat/gmod/ui_text_input.h | |
| parent | e4729e4393d90271a3814c7a79950a660c48325a (diff) | |
cleaned up
in short, the cheat and loader are now separate solutions. unused stuff was moved into the legacy solution in case anyone wants to compile it or whatever.
i can change this back if you want to. also, i configured the loader to compile in x64, and have separate build types for linux and win64
Diffstat (limited to 'cheat/gmod/ui_text_input.h')
| -rw-r--r-- | cheat/gmod/ui_text_input.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/cheat/gmod/ui_text_input.h b/cheat/gmod/ui_text_input.h new file mode 100644 index 0000000..f486106 --- /dev/null +++ b/cheat/gmod/ui_text_input.h @@ -0,0 +1,47 @@ +#pragma once
+#include "ui_base_item.h"
+
+namespace ui
+{
+ class c_text_input : public base_item {
+ c_text_input( int x, int y, int w, const char* name, size_t max_chars, char* str ) :
+ base_item( x, y, w, 16, name ), m_length( max_chars ), m_str( str ) { }
+
+ virtual bool is_hovered( ) override {
+
+ }
+
+ void input( ) {
+ static float last_press[ KEYS_MAX ]{ };
+
+ int key = g_input.is_any_key_pressed( );
+ if ( key == KEYS_BACK ) {
+ if ( strlen( m_str ) ) {
+ m_str[ strlen( m_str ) - 1 ] = 0;
+ }
+ }
+ if ( key != KEYS_NONE ) {
+ float cur_time = GetTickCount( ) * 0.001f;
+ if ( std::abs( cur_time - last_press[ key ] ) > 0.1f ) {
+
+ auto scan_code = MapVirtualKeyA( key, MAPVK_VK_TO_VSC );
+ uword_t ascii;
+ ToAscii( key, scan_code, 0, &ascii, 0 );
+ char str[ 2 ] = { ( char )ascii, 0 };
+ strcat_s( m_str, m_length, str );
+
+ last_press[ key ] = cur_time;
+ }
+ }
+ }
+
+ virtual void render( ) override {
+
+ }
+
+ protected:
+ size_t m_length{ };
+ char* m_str{ };
+
+ };
+}
\ No newline at end of file |
