ruby-ogre 0.0.2-x86-linux → 0.0.3-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. data/README.md +80 -5
  2. data/Rakefile +26 -19
  3. data/bindings/ogre/interface/Rakefile +22 -0
  4. data/bindings/ogre/interface/ogre.i +3 -1
  5. data/bindings/ogre/interface/ogre_wrap.cpp +99671 -17485
  6. data/bindings/ogre/interface/ogre_wrap.o +0 -0
  7. data/bindings/ogrebites/interface/Rakefile +22 -0
  8. data/bindings/ogrebites/interface/ogrebites.i +1 -1
  9. data/bindings/ogrebites/interface/ogrebites_wrap.cpp +728 -728
  10. data/bindings/ogrebites/interface/ogrebites_wrap.h +2 -2
  11. data/bindings/ogrebites/interface/ogrebites_wrap.o +0 -0
  12. data/bindings/ois/interface/Rakefile +22 -0
  13. data/bindings/ois/interface/ois.i +1 -1
  14. data/bindings/ois/interface/ois_wrap.cpp +553 -553
  15. data/bindings/ois/interface/ois_wrap.h +2 -2
  16. data/bindings/ois/interface/ois_wrap.o +0 -0
  17. data/bindings/procedural/interface/Rakefile +22 -0
  18. data/bindings/procedural/interface/procedural.i +1 -1
  19. data/bindings/procedural/interface/procedural_wrap.cpp +1247 -1247
  20. data/bindings/procedural/interface/procedural_wrap.o +0 -0
  21. data/lib/{Ogre.so → ogre.so} +0 -0
  22. data/lib/ogre_config.rb +37 -0
  23. data/lib/ogrebites.so +0 -0
  24. data/lib/{OIS.so → ois.so} +0 -0
  25. data/lib/{Procedural.so → procedural.so} +0 -0
  26. data/lib/{Version.rb → version.rb} +1 -1
  27. data/sample/charactor/camera_mover.rb +184 -0
  28. data/sample/{Charactor → charactor}/plugins.cfg +0 -0
  29. data/sample/{Charactor → charactor}/resources.cfg +0 -0
  30. data/sample/{Charactor → charactor}/sinbad +1 -1
  31. data/sample/charactor/sinbad.rb +246 -0
  32. data/sample/{Charactor → charactor}/sinbad.win +1 -1
  33. data/sample/{Charactor/SinbadCharacter.rb → charactor/sinbad_character.rb} +125 -125
  34. data/sample/charactor/ui_listener.rb +65 -0
  35. metadata +22 -21
  36. data/bindings/ogre/interface/Makefile +0 -19
  37. data/bindings/ogrebites/interface/Makefile +0 -19
  38. data/bindings/ois/interface/Makefile +0 -19
  39. data/bindings/procedural/interface/Makefile +0 -19
  40. data/lib/OgreBites.so +0 -0
  41. data/lib/OgreConfig.rb +0 -37
  42. data/sample/Charactor/CameraMover.rb +0 -184
  43. data/sample/Charactor/Sinbad.rb +0 -246
  44. data/sample/Charactor/UiListener.rb +0 -65
@@ -8,8 +8,8 @@
8
8
  * interface file instead.
9
9
  * ----------------------------------------------------------------------------- */
10
10
 
11
- #ifndef SWIG_OgreBites_WRAP_H_
12
- #define SWIG_OgreBites_WRAP_H_
11
+ #ifndef SWIG_Ogrebites_WRAP_H_
12
+ #define SWIG_Ogrebites_WRAP_H_
13
13
 
14
14
  namespace Swig {
15
15
  class Director;
@@ -0,0 +1,22 @@
1
+ SWIG = 'swig'
2
+
3
+ DEPS_DIR = "../../../deps/"
4
+ load "../../../deps/env.rb"
5
+
6
+
7
+ SWIGFLAGS = "-ruby -c++ #{OIS_INC} -autorename"
8
+
9
+ TARGET = 'ois_wrap.cpp'
10
+
11
+ #puts SWIGFLAGS
12
+
13
+ task :default => "#{TARGET}"
14
+
15
+ file "#{TARGET}" => "ois.i" do |t|
16
+ sh "#{SWIG} #{SWIGFLAGS} -o #{t.name} #{t.prerequisites[0]}"
17
+ end
18
+
19
+ task :clean do
20
+ sh "rm -f #{TARGET}"
21
+ end
22
+
@@ -1,3 +1,3 @@
1
- %module(directors="1") "OIS"
1
+ %module(directors="1") "ois"
2
2
 
3
3
  %include ois_all.i
@@ -2270,10 +2270,10 @@ static swig_module_info swig_module = {swig_types, 65, 0, 0, 0, 0};
2270
2270
 
2271
2271
  /* -------- TYPES TABLE (END) -------- */
2272
2272
 
2273
- #define SWIG_init Init_OIS
2274
- #define SWIG_name "OIS"
2273
+ #define SWIG_init Init_ois
2274
+ #define SWIG_name "Ois"
2275
2275
 
2276
- static VALUE mOIS;
2276
+ static VALUE mOis;
2277
2277
 
2278
2278
  #define SWIG_RUBY_THREAD_BEGIN_BLOCK
2279
2279
  #define SWIG_RUBY_THREAD_END_BLOCK
@@ -5708,7 +5708,7 @@ bool SwigDirector_KeyListener::keyPressed(OIS::KeyEvent const &arg) {
5708
5708
  VALUE result;
5709
5709
 
5710
5710
  obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&arg), SWIGTYPE_p_OIS__KeyEvent, 0 );
5711
- result = rb_funcall(swig_get_self(), rb_intern("keyPressed"), 1,obj0);
5711
+ result = rb_funcall(swig_get_self(), rb_intern("key_pressed"), 1,obj0);
5712
5712
  bool swig_val;
5713
5713
  int swig_res = SWIG_AsVal_bool(result, &swig_val);
5714
5714
  if (!SWIG_IsOK(swig_res)) {
@@ -5725,7 +5725,7 @@ bool SwigDirector_KeyListener::keyReleased(OIS::KeyEvent const &arg) {
5725
5725
  VALUE result;
5726
5726
 
5727
5727
  obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&arg), SWIGTYPE_p_OIS__KeyEvent, 0 );
5728
- result = rb_funcall(swig_get_self(), rb_intern("keyReleased"), 1,obj0);
5728
+ result = rb_funcall(swig_get_self(), rb_intern("key_released"), 1,obj0);
5729
5729
  bool swig_val;
5730
5730
  int swig_res = SWIG_AsVal_bool(result, &swig_val);
5731
5731
  if (!SWIG_IsOK(swig_res)) {
@@ -5751,7 +5751,7 @@ bool SwigDirector_MouseListener::mouseMoved(OIS::MouseEvent const &arg) {
5751
5751
  VALUE result;
5752
5752
 
5753
5753
  obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&arg), SWIGTYPE_p_OIS__MouseEvent, 0 );
5754
- result = rb_funcall(swig_get_self(), rb_intern("mouseMoved"), 1,obj0);
5754
+ result = rb_funcall(swig_get_self(), rb_intern("mouse_moved"), 1,obj0);
5755
5755
  bool swig_val;
5756
5756
  int swig_res = SWIG_AsVal_bool(result, &swig_val);
5757
5757
  if (!SWIG_IsOK(swig_res)) {
@@ -5770,7 +5770,7 @@ bool SwigDirector_MouseListener::mousePressed(OIS::MouseEvent const &arg, OIS::M
5770
5770
 
5771
5771
  obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&arg), SWIGTYPE_p_OIS__MouseEvent, 0 );
5772
5772
  obj1 = SWIG_From_int(static_cast< int >(id));
5773
- result = rb_funcall(swig_get_self(), rb_intern("mousePressed"), 2,obj0,obj1);
5773
+ result = rb_funcall(swig_get_self(), rb_intern("mouse_pressed"), 2,obj0,obj1);
5774
5774
  bool swig_val;
5775
5775
  int swig_res = SWIG_AsVal_bool(result, &swig_val);
5776
5776
  if (!SWIG_IsOK(swig_res)) {
@@ -5789,7 +5789,7 @@ bool SwigDirector_MouseListener::mouseReleased(OIS::MouseEvent const &arg, OIS::
5789
5789
 
5790
5790
  obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&arg), SWIGTYPE_p_OIS__MouseEvent, 0 );
5791
5791
  obj1 = SWIG_From_int(static_cast< int >(id));
5792
- result = rb_funcall(swig_get_self(), rb_intern("mouseReleased"), 2,obj0,obj1);
5792
+ result = rb_funcall(swig_get_self(), rb_intern("mouse_released"), 2,obj0,obj1);
5793
5793
  bool swig_val;
5794
5794
  int swig_res = SWIG_AsVal_bool(result, &swig_val);
5795
5795
  if (!SWIG_IsOK(swig_res)) {
@@ -5800,11 +5800,11 @@ bool SwigDirector_MouseListener::mouseReleased(OIS::MouseEvent const &arg, OIS::
5800
5800
  }
5801
5801
 
5802
5802
 
5803
- swig_class SwigClassGC_VALUE;
5803
+ swig_class SwigClassGCVALUE;
5804
5804
 
5805
5805
 
5806
5806
  /*
5807
- Document-method: OIS::GC_VALUE.inspect
5807
+ Document-method: Ois::GCVALUE.inspect
5808
5808
 
5809
5809
  call-seq:
5810
5810
  inspect -> VALUE
@@ -5812,7 +5812,7 @@ swig_class SwigClassGC_VALUE;
5812
5812
  Inspect class and its contents.
5813
5813
  */
5814
5814
  SWIGINTERN VALUE
5815
- _wrap_GC_VALUE_inspect(int argc, VALUE *argv, VALUE self) {
5815
+ _wrap_GCVALUE_inspect(int argc, VALUE *argv, VALUE self) {
5816
5816
  swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
5817
5817
  swig::GC_VALUE r1 ;
5818
5818
  VALUE result;
@@ -5832,7 +5832,7 @@ fail:
5832
5832
 
5833
5833
 
5834
5834
  /*
5835
- Document-method: OIS::GC_VALUE.to_s
5835
+ Document-method: Ois::GCVALUE.to_s
5836
5836
 
5837
5837
  call-seq:
5838
5838
  to_s -> VALUE
@@ -5840,7 +5840,7 @@ fail:
5840
5840
  Convert class to a String representation.
5841
5841
  */
5842
5842
  SWIGINTERN VALUE
5843
- _wrap_GC_VALUE_to_s(int argc, VALUE *argv, VALUE self) {
5843
+ _wrap_GCVALUE_to_s(int argc, VALUE *argv, VALUE self) {
5844
5844
  swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
5845
5845
  swig::GC_VALUE r1 ;
5846
5846
  VALUE result;
@@ -5901,7 +5901,7 @@ fail:
5901
5901
 
5902
5902
 
5903
5903
  /*
5904
- Document-method: OIS::ConstIterator.dup
5904
+ Document-method: Ois::ConstIterator.dup
5905
5905
 
5906
5906
  call-seq:
5907
5907
  dup -> ConstIterator
@@ -5934,7 +5934,7 @@ fail:
5934
5934
 
5935
5935
 
5936
5936
  /*
5937
- Document-method: OIS::ConstIterator.inspect
5937
+ Document-method: Ois::ConstIterator.inspect
5938
5938
 
5939
5939
  call-seq:
5940
5940
  inspect -> VALUE
@@ -5967,7 +5967,7 @@ fail:
5967
5967
 
5968
5968
 
5969
5969
  /*
5970
- Document-method: OIS::ConstIterator.to_s
5970
+ Document-method: Ois::ConstIterator.to_s
5971
5971
 
5972
5972
  call-seq:
5973
5973
  to_s -> VALUE
@@ -6222,7 +6222,7 @@ fail:
6222
6222
 
6223
6223
 
6224
6224
  /*
6225
- Document-method: OIS::ConstIterator.==
6225
+ Document-method: Ois::ConstIterator.==
6226
6226
 
6227
6227
  call-seq:
6228
6228
  ==(x) -> bool
@@ -6266,7 +6266,7 @@ fail:
6266
6266
 
6267
6267
 
6268
6268
  /*
6269
- Document-method: OIS::ConstIterator.+
6269
+ Document-method: Ois::ConstIterator.+
6270
6270
 
6271
6271
  call-seq:
6272
6272
  +(n) -> ConstIterator
@@ -6317,7 +6317,7 @@ fail:
6317
6317
 
6318
6318
 
6319
6319
  /*
6320
- Document-method: OIS::ConstIterator.-
6320
+ Document-method: Ois::ConstIterator.-
6321
6321
 
6322
6322
  call-seq:
6323
6323
  -(n) -> ConstIterator
@@ -6484,7 +6484,7 @@ fail:
6484
6484
 
6485
6485
 
6486
6486
  /*
6487
- Document-method: OIS::Iterator.dup
6487
+ Document-method: Ois::Iterator.dup
6488
6488
 
6489
6489
  call-seq:
6490
6490
  dup -> Iterator
@@ -6739,7 +6739,7 @@ fail:
6739
6739
 
6740
6740
 
6741
6741
  /*
6742
- Document-method: OIS::Iterator.inspect
6742
+ Document-method: Ois::Iterator.inspect
6743
6743
 
6744
6744
  call-seq:
6745
6745
  inspect -> VALUE
@@ -6772,7 +6772,7 @@ fail:
6772
6772
 
6773
6773
 
6774
6774
  /*
6775
- Document-method: OIS::Iterator.to_s
6775
+ Document-method: Ois::Iterator.to_s
6776
6776
 
6777
6777
  call-seq:
6778
6778
  to_s -> VALUE
@@ -6805,7 +6805,7 @@ fail:
6805
6805
 
6806
6806
 
6807
6807
  /*
6808
- Document-method: OIS::Iterator.==
6808
+ Document-method: Ois::Iterator.==
6809
6809
 
6810
6810
  call-seq:
6811
6811
  ==(x) -> bool
@@ -6849,7 +6849,7 @@ fail:
6849
6849
 
6850
6850
 
6851
6851
  /*
6852
- Document-method: OIS::Iterator.+
6852
+ Document-method: Ois::Iterator.+
6853
6853
 
6854
6854
  call-seq:
6855
6855
  +(n) -> Iterator
@@ -6900,7 +6900,7 @@ fail:
6900
6900
 
6901
6901
 
6902
6902
  /*
6903
- Document-method: OIS::Iterator.-
6903
+ Document-method: Ois::Iterator.-
6904
6904
 
6905
6905
  call-seq:
6906
6906
  -(n) -> Iterator
@@ -7044,7 +7044,7 @@ swig_class SwigClassPairStrings;
7044
7044
 
7045
7045
  SWIGINTERN VALUE
7046
7046
  _wrap_new_PairStrings__SWIG_0(int argc, VALUE *argv, VALUE self) {
7047
- const char *classname SWIGUNUSED = "OIS::PairStrings";
7047
+ const char *classname SWIGUNUSED = "Ois::PairStrings";
7048
7048
  std::pair< std::string,std::string > *result = 0 ;
7049
7049
 
7050
7050
  if ((argc < 0) || (argc > 0)) {
@@ -7062,7 +7062,7 @@ SWIGINTERN VALUE
7062
7062
  _wrap_new_PairStrings__SWIG_1(int argc, VALUE *argv, VALUE self) {
7063
7063
  std::string arg1 ;
7064
7064
  std::string arg2 ;
7065
- const char *classname SWIGUNUSED = "OIS::PairStrings";
7065
+ const char *classname SWIGUNUSED = "Ois::PairStrings";
7066
7066
  std::pair< std::string,std::string > *result = 0 ;
7067
7067
 
7068
7068
  if ((argc < 2) || (argc > 2)) {
@@ -7115,7 +7115,7 @@ SWIGINTERN VALUE
7115
7115
  _wrap_new_PairStrings__SWIG_2(int argc, VALUE *argv, VALUE self) {
7116
7116
  std::pair< std::string,std::string > *arg1 = 0 ;
7117
7117
  int res1 = SWIG_OLDOBJ ;
7118
- const char *classname SWIGUNUSED = "OIS::PairStrings";
7118
+ const char *classname SWIGUNUSED = "Ois::PairStrings";
7119
7119
  std::pair< std::string,std::string > *result = 0 ;
7120
7120
 
7121
7121
  if ((argc < 1) || (argc > 1)) {
@@ -7188,7 +7188,7 @@ fail:
7188
7188
 
7189
7189
 
7190
7190
  /*
7191
- Document-method: OIS::PairStrings.first
7191
+ Document-method: Ois::PairStrings.first
7192
7192
 
7193
7193
  call-seq:
7194
7194
  first -> string
@@ -7197,7 +7197,7 @@ Return the first element in PairStrings.
7197
7197
  */
7198
7198
 
7199
7199
  /*
7200
- Document-method: OIS::PairStrings.first=
7200
+ Document-method: Ois::PairStrings.first=
7201
7201
 
7202
7202
  call-seq:
7203
7203
  first=(x) -> string
@@ -7264,7 +7264,7 @@ fail:
7264
7264
 
7265
7265
 
7266
7266
  /*
7267
- Document-method: OIS::PairStrings.second
7267
+ Document-method: Ois::PairStrings.second
7268
7268
 
7269
7269
  call-seq:
7270
7270
  second -> string
@@ -7273,7 +7273,7 @@ Return the second element in PairStrings.
7273
7273
  */
7274
7274
 
7275
7275
  /*
7276
- Document-method: OIS::PairStrings.second=
7276
+ Document-method: Ois::PairStrings.second=
7277
7277
 
7278
7278
  call-seq:
7279
7279
  second=(x) -> string
@@ -7340,7 +7340,7 @@ fail:
7340
7340
 
7341
7341
 
7342
7342
  /*
7343
- Document-method: OIS::PairStrings.inspect
7343
+ Document-method: Ois::PairStrings.inspect
7344
7344
 
7345
7345
  call-seq:
7346
7346
  inspect -> VALUE
@@ -7372,7 +7372,7 @@ fail:
7372
7372
 
7373
7373
 
7374
7374
  /*
7375
- Document-method: OIS::PairStrings.to_s
7375
+ Document-method: Ois::PairStrings.to_s
7376
7376
 
7377
7377
  call-seq:
7378
7378
  to_s -> VALUE
@@ -7404,7 +7404,7 @@ fail:
7404
7404
 
7405
7405
 
7406
7406
  /*
7407
- Document-method: OIS::PairStrings.[]
7407
+ Document-method: Ois::PairStrings.[]
7408
7408
 
7409
7409
  call-seq:
7410
7410
  [](index) -> VALUE
@@ -7444,7 +7444,7 @@ fail:
7444
7444
 
7445
7445
 
7446
7446
  /*
7447
- Document-method: OIS::PairStrings.[]=
7447
+ Document-method: Ois::PairStrings.[]=
7448
7448
 
7449
7449
  call-seq:
7450
7450
  []=(index, obj) -> VALUE
@@ -7496,7 +7496,7 @@ _wrap_new_MapStrings__SWIG_0(int argc, VALUE *argv, VALUE self) {
7496
7496
  std::less< std::string > *arg1 = 0 ;
7497
7497
  void *argp1 ;
7498
7498
  int res1 = 0 ;
7499
- const char *classname SWIGUNUSED = "OIS::MapStrings";
7499
+ const char *classname SWIGUNUSED = "Ois::MapStrings";
7500
7500
  std::map< std::string,std::string > *result = 0 ;
7501
7501
 
7502
7502
  if ((argc < 1) || (argc > 1)) {
@@ -7520,7 +7520,7 @@ fail:
7520
7520
 
7521
7521
 
7522
7522
  /*
7523
- Document-method: OIS::MapStrings.dup
7523
+ Document-method: Ois::MapStrings.dup
7524
7524
 
7525
7525
  call-seq:
7526
7526
  dup -> MapStrings
@@ -7553,15 +7553,15 @@ fail:
7553
7553
 
7554
7554
 
7555
7555
  /*
7556
- Document-method: OIS::MapStrings.delete
7556
+ Document-method: Ois::MapStrings.__delete__
7557
7557
 
7558
7558
  call-seq:
7559
- delete(key) -> VALUE
7559
+ __delete__(key) -> VALUE
7560
7560
 
7561
7561
  Delete a matching element.
7562
7562
  */
7563
7563
  SWIGINTERN VALUE
7564
- _wrap_MapStrings_delete(int argc, VALUE *argv, VALUE self) {
7564
+ _wrap_MapStrings___delete__(int argc, VALUE *argv, VALUE self) {
7565
7565
  std::map< std::string,std::string > *arg1 = (std::map< std::string,std::string > *) 0 ;
7566
7566
  std::map< std::string,std::string >::key_type *arg2 = 0 ;
7567
7567
  void *argp1 = 0 ;
@@ -7600,7 +7600,7 @@ fail:
7600
7600
 
7601
7601
 
7602
7602
  SWIGINTERN VALUE
7603
- _wrap_MapStrings_has_keyq___(int argc, VALUE *argv, VALUE self) {
7603
+ _wrap_MapStrings_has_key(int argc, VALUE *argv, VALUE self) {
7604
7604
  std::map< std::string,std::string > *arg1 = (std::map< std::string,std::string > *) 0 ;
7605
7605
  std::map< std::string,std::string >::key_type *arg2 = 0 ;
7606
7606
  void *argp1 = 0 ;
@@ -7640,7 +7640,7 @@ fail:
7640
7640
 
7641
7641
 
7642
7642
  /*
7643
- Document-method: OIS::MapStrings.keys
7643
+ Document-method: Ois::MapStrings.keys
7644
7644
 
7645
7645
  call-seq:
7646
7646
  keys -> VALUE
@@ -7673,7 +7673,7 @@ fail:
7673
7673
 
7674
7674
 
7675
7675
  /*
7676
- Document-method: OIS::MapStrings.each
7676
+ Document-method: Ois::MapStrings.each
7677
7677
 
7678
7678
  call-seq:
7679
7679
  each -> MapStrings
@@ -7706,7 +7706,7 @@ fail:
7706
7706
 
7707
7707
 
7708
7708
  /*
7709
- Document-method: OIS::MapStrings.select
7709
+ Document-method: Ois::MapStrings.select
7710
7710
 
7711
7711
  call-seq:
7712
7712
  select -> MapStrings
@@ -7739,7 +7739,7 @@ fail:
7739
7739
 
7740
7740
 
7741
7741
  /*
7742
- Document-method: OIS::MapStrings.values_at
7742
+ Document-method: Ois::MapStrings.values_at
7743
7743
 
7744
7744
  call-seq:
7745
7745
  values_at(argc, ?) -> VALUE
@@ -7779,7 +7779,7 @@ fail:
7779
7779
 
7780
7780
 
7781
7781
  /*
7782
- Document-method: OIS::MapStrings.each_key
7782
+ Document-method: Ois::MapStrings.each_key
7783
7783
 
7784
7784
  call-seq:
7785
7785
  each_key -> MapStrings
@@ -7812,7 +7812,7 @@ fail:
7812
7812
 
7813
7813
 
7814
7814
  /*
7815
- Document-method: OIS::MapStrings.values
7815
+ Document-method: Ois::MapStrings.values
7816
7816
 
7817
7817
  call-seq:
7818
7818
  values -> VALUE
@@ -7845,7 +7845,7 @@ fail:
7845
7845
 
7846
7846
 
7847
7847
  /*
7848
- Document-method: OIS::MapStrings.each_value
7848
+ Document-method: Ois::MapStrings.each_value
7849
7849
 
7850
7850
  call-seq:
7851
7851
  each_value -> MapStrings
@@ -7901,7 +7901,7 @@ fail:
7901
7901
 
7902
7902
 
7903
7903
  SWIGINTERN VALUE
7904
- _wrap_MapStrings_includeq___(int argc, VALUE *argv, VALUE self) {
7904
+ _wrap_MapStrings___contains__(int argc, VALUE *argv, VALUE self) {
7905
7905
  std::map< std::string,std::string > *arg1 = (std::map< std::string,std::string > *) 0 ;
7906
7906
  std::map< std::string,std::string >::key_type *arg2 = 0 ;
7907
7907
  void *argp1 = 0 ;
@@ -7993,7 +7993,7 @@ fail:
7993
7993
 
7994
7994
 
7995
7995
  /*
7996
- Document-method: OIS::MapStrings.[]
7996
+ Document-method: Ois::MapStrings.[]
7997
7997
 
7998
7998
  call-seq:
7999
7999
  [](key) -> VALUE
@@ -8041,7 +8041,7 @@ fail:
8041
8041
 
8042
8042
 
8043
8043
  /*
8044
- Document-method: OIS::MapStrings.[]=
8044
+ Document-method: Ois::MapStrings.[]=
8045
8045
 
8046
8046
  call-seq:
8047
8047
  []=(key, x)
@@ -8107,7 +8107,7 @@ fail:
8107
8107
 
8108
8108
 
8109
8109
  /*
8110
- Document-method: OIS::MapStrings.inspect
8110
+ Document-method: Ois::MapStrings.inspect
8111
8111
 
8112
8112
  call-seq:
8113
8113
  inspect -> VALUE
@@ -8140,7 +8140,7 @@ fail:
8140
8140
 
8141
8141
 
8142
8142
  /*
8143
- Document-method: OIS::MapStrings.to_a
8143
+ Document-method: Ois::MapStrings.to_a
8144
8144
 
8145
8145
  call-seq:
8146
8146
  to_a -> VALUE
@@ -8173,7 +8173,7 @@ fail:
8173
8173
 
8174
8174
 
8175
8175
  /*
8176
- Document-method: OIS::MapStrings.to_s
8176
+ Document-method: Ois::MapStrings.to_s
8177
8177
 
8178
8178
  call-seq:
8179
8179
  to_s -> VALUE
@@ -8206,7 +8206,7 @@ fail:
8206
8206
 
8207
8207
  SWIGINTERN VALUE
8208
8208
  _wrap_new_MapStrings__SWIG_1(int argc, VALUE *argv, VALUE self) {
8209
- const char *classname SWIGUNUSED = "OIS::MapStrings";
8209
+ const char *classname SWIGUNUSED = "Ois::MapStrings";
8210
8210
  std::map< std::string,std::string > *result = 0 ;
8211
8211
 
8212
8212
  if ((argc < 0) || (argc > 0)) {
@@ -8241,7 +8241,7 @@ SWIGINTERN VALUE
8241
8241
  _wrap_new_MapStrings__SWIG_2(int argc, VALUE *argv, VALUE self) {
8242
8242
  std::map< std::string,std::string > *arg1 = 0 ;
8243
8243
  int res1 = SWIG_OLDOBJ ;
8244
- const char *classname SWIGUNUSED = "OIS::MapStrings";
8244
+ const char *classname SWIGUNUSED = "Ois::MapStrings";
8245
8245
  std::map< std::string,std::string > *result = 0 ;
8246
8246
 
8247
8247
  if ((argc < 1) || (argc > 1)) {
@@ -8311,15 +8311,15 @@ fail:
8311
8311
 
8312
8312
 
8313
8313
  /*
8314
- Document-method: OIS::MapStrings.empty?
8314
+ Document-method: Ois::MapStrings.empty
8315
8315
 
8316
8316
  call-seq:
8317
- empty? -> bool
8317
+ empty -> bool
8318
8318
 
8319
8319
  Check if the MapStrings is empty or not.
8320
8320
  */
8321
8321
  SWIGINTERN VALUE
8322
- _wrap_MapStrings_emptyq___(int argc, VALUE *argv, VALUE self) {
8322
+ _wrap_MapStrings_empty(int argc, VALUE *argv, VALUE self) {
8323
8323
  std::map< std::string,std::string > *arg1 = (std::map< std::string,std::string > *) 0 ;
8324
8324
  void *argp1 = 0 ;
8325
8325
  int res1 = 0 ;
@@ -8344,7 +8344,7 @@ fail:
8344
8344
 
8345
8345
 
8346
8346
  /*
8347
- Document-method: OIS::MapStrings.size
8347
+ Document-method: Ois::MapStrings.size
8348
8348
 
8349
8349
  call-seq:
8350
8350
  size -> size_type
@@ -8377,7 +8377,7 @@ fail:
8377
8377
 
8378
8378
 
8379
8379
  /*
8380
- Document-method: OIS::MapStrings.clear
8380
+ Document-method: Ois::MapStrings.clear
8381
8381
 
8382
8382
  call-seq:
8383
8383
  clear
@@ -8463,7 +8463,7 @@ fail:
8463
8463
 
8464
8464
 
8465
8465
  /*
8466
- Document-method: OIS::MapStrings.begin
8466
+ Document-method: Ois::MapStrings.begin
8467
8467
 
8468
8468
  call-seq:
8469
8469
  begin -> iterator
@@ -8496,7 +8496,7 @@ fail:
8496
8496
 
8497
8497
 
8498
8498
  /*
8499
- Document-method: OIS::MapStrings.end
8499
+ Document-method: Ois::MapStrings.end
8500
8500
 
8501
8501
  call-seq:
8502
8502
  end -> iterator
@@ -8529,7 +8529,7 @@ fail:
8529
8529
 
8530
8530
 
8531
8531
  /*
8532
- Document-method: OIS::MapStrings.rbegin
8532
+ Document-method: Ois::MapStrings.rbegin
8533
8533
 
8534
8534
  call-seq:
8535
8535
  rbegin -> reverse_iterator
@@ -8562,7 +8562,7 @@ fail:
8562
8562
 
8563
8563
 
8564
8564
  /*
8565
- Document-method: OIS::MapStrings.rend
8565
+ Document-method: Ois::MapStrings.rend
8566
8566
 
8567
8567
  call-seq:
8568
8568
  rend -> reverse_iterator
@@ -8595,7 +8595,7 @@ fail:
8595
8595
 
8596
8596
 
8597
8597
  /*
8598
- Document-method: OIS::MapStrings.erase
8598
+ Document-method: Ois::MapStrings.erase
8599
8599
 
8600
8600
  call-seq:
8601
8601
  erase(x) -> size_type
@@ -8833,7 +8833,7 @@ fail:
8833
8833
 
8834
8834
 
8835
8835
  /*
8836
- Document-method: OIS::MapStrings.find
8836
+ Document-method: Ois::MapStrings.find
8837
8837
 
8838
8838
  call-seq:
8839
8839
  find(x) -> iterator
@@ -8969,7 +8969,7 @@ _wrap_new_ParamList__SWIG_0(int argc, VALUE *argv, VALUE self) {
8969
8969
  std::less< std::string > *arg1 = 0 ;
8970
8970
  void *argp1 ;
8971
8971
  int res1 = 0 ;
8972
- const char *classname SWIGUNUSED = "OIS::ParamList";
8972
+ const char *classname SWIGUNUSED = "Ois::ParamList";
8973
8973
  std::multimap< std::string,std::string > *result = 0 ;
8974
8974
 
8975
8975
  if ((argc < 1) || (argc > 1)) {
@@ -8993,7 +8993,7 @@ fail:
8993
8993
 
8994
8994
 
8995
8995
  /*
8996
- Document-method: OIS::ParamList.dup
8996
+ Document-method: Ois::ParamList.dup
8997
8997
 
8998
8998
  call-seq:
8999
8999
  dup -> ParamList
@@ -9026,15 +9026,15 @@ fail:
9026
9026
 
9027
9027
 
9028
9028
  /*
9029
- Document-method: OIS::ParamList.delete
9029
+ Document-method: Ois::ParamList.__delete__
9030
9030
 
9031
9031
  call-seq:
9032
- delete(key) -> VALUE
9032
+ __delete__(key) -> VALUE
9033
9033
 
9034
9034
  Delete a matching element.
9035
9035
  */
9036
9036
  SWIGINTERN VALUE
9037
- _wrap_ParamList_delete(int argc, VALUE *argv, VALUE self) {
9037
+ _wrap_ParamList___delete__(int argc, VALUE *argv, VALUE self) {
9038
9038
  std::multimap< std::string,std::string > *arg1 = (std::multimap< std::string,std::string > *) 0 ;
9039
9039
  std::multimap< std::string,std::string >::key_type *arg2 = 0 ;
9040
9040
  void *argp1 = 0 ;
@@ -9073,7 +9073,7 @@ fail:
9073
9073
 
9074
9074
 
9075
9075
  SWIGINTERN VALUE
9076
- _wrap_ParamList_has_keyq___(int argc, VALUE *argv, VALUE self) {
9076
+ _wrap_ParamList_has_key(int argc, VALUE *argv, VALUE self) {
9077
9077
  std::multimap< std::string,std::string > *arg1 = (std::multimap< std::string,std::string > *) 0 ;
9078
9078
  std::multimap< std::string,std::string >::key_type *arg2 = 0 ;
9079
9079
  void *argp1 = 0 ;
@@ -9113,7 +9113,7 @@ fail:
9113
9113
 
9114
9114
 
9115
9115
  /*
9116
- Document-method: OIS::ParamList.keys
9116
+ Document-method: Ois::ParamList.keys
9117
9117
 
9118
9118
  call-seq:
9119
9119
  keys -> VALUE
@@ -9146,7 +9146,7 @@ fail:
9146
9146
 
9147
9147
 
9148
9148
  /*
9149
- Document-method: OIS::ParamList.each
9149
+ Document-method: Ois::ParamList.each
9150
9150
 
9151
9151
  call-seq:
9152
9152
  each -> ParamList
@@ -9179,7 +9179,7 @@ fail:
9179
9179
 
9180
9180
 
9181
9181
  /*
9182
- Document-method: OIS::ParamList.select
9182
+ Document-method: Ois::ParamList.select
9183
9183
 
9184
9184
  call-seq:
9185
9185
  select -> ParamList
@@ -9212,7 +9212,7 @@ fail:
9212
9212
 
9213
9213
 
9214
9214
  /*
9215
- Document-method: OIS::ParamList.values_at
9215
+ Document-method: Ois::ParamList.values_at
9216
9216
 
9217
9217
  call-seq:
9218
9218
  values_at(argc, ?) -> VALUE
@@ -9252,7 +9252,7 @@ fail:
9252
9252
 
9253
9253
 
9254
9254
  /*
9255
- Document-method: OIS::ParamList.each_key
9255
+ Document-method: Ois::ParamList.each_key
9256
9256
 
9257
9257
  call-seq:
9258
9258
  each_key -> ParamList
@@ -9285,7 +9285,7 @@ fail:
9285
9285
 
9286
9286
 
9287
9287
  /*
9288
- Document-method: OIS::ParamList.values
9288
+ Document-method: Ois::ParamList.values
9289
9289
 
9290
9290
  call-seq:
9291
9291
  values -> VALUE
@@ -9318,7 +9318,7 @@ fail:
9318
9318
 
9319
9319
 
9320
9320
  /*
9321
- Document-method: OIS::ParamList.each_value
9321
+ Document-method: Ois::ParamList.each_value
9322
9322
 
9323
9323
  call-seq:
9324
9324
  each_value -> ParamList
@@ -9374,7 +9374,7 @@ fail:
9374
9374
 
9375
9375
 
9376
9376
  SWIGINTERN VALUE
9377
- _wrap_ParamList_includeq___(int argc, VALUE *argv, VALUE self) {
9377
+ _wrap_ParamList___contains__(int argc, VALUE *argv, VALUE self) {
9378
9378
  std::multimap< std::string,std::string > *arg1 = (std::multimap< std::string,std::string > *) 0 ;
9379
9379
  std::multimap< std::string,std::string >::key_type *arg2 = 0 ;
9380
9380
  void *argp1 = 0 ;
@@ -9466,7 +9466,7 @@ fail:
9466
9466
 
9467
9467
 
9468
9468
  /*
9469
- Document-method: OIS::ParamList.[]
9469
+ Document-method: Ois::ParamList.[]
9470
9470
 
9471
9471
  call-seq:
9472
9472
  [](key) -> VALUE
@@ -9514,7 +9514,7 @@ fail:
9514
9514
 
9515
9515
 
9516
9516
  /*
9517
- Document-method: OIS::ParamList.[]=
9517
+ Document-method: Ois::ParamList.[]=
9518
9518
 
9519
9519
  call-seq:
9520
9520
  []=(key, x)
@@ -9580,7 +9580,7 @@ fail:
9580
9580
 
9581
9581
 
9582
9582
  /*
9583
- Document-method: OIS::ParamList.inspect
9583
+ Document-method: Ois::ParamList.inspect
9584
9584
 
9585
9585
  call-seq:
9586
9586
  inspect -> VALUE
@@ -9613,7 +9613,7 @@ fail:
9613
9613
 
9614
9614
 
9615
9615
  /*
9616
- Document-method: OIS::ParamList.to_a
9616
+ Document-method: Ois::ParamList.to_a
9617
9617
 
9618
9618
  call-seq:
9619
9619
  to_a -> VALUE
@@ -9646,7 +9646,7 @@ fail:
9646
9646
 
9647
9647
 
9648
9648
  /*
9649
- Document-method: OIS::ParamList.to_s
9649
+ Document-method: Ois::ParamList.to_s
9650
9650
 
9651
9651
  call-seq:
9652
9652
  to_s -> VALUE
@@ -9679,7 +9679,7 @@ fail:
9679
9679
 
9680
9680
  SWIGINTERN VALUE
9681
9681
  _wrap_new_ParamList__SWIG_1(int argc, VALUE *argv, VALUE self) {
9682
- const char *classname SWIGUNUSED = "OIS::ParamList";
9682
+ const char *classname SWIGUNUSED = "Ois::ParamList";
9683
9683
  std::multimap< std::string,std::string > *result = 0 ;
9684
9684
 
9685
9685
  if ((argc < 0) || (argc > 0)) {
@@ -9714,7 +9714,7 @@ SWIGINTERN VALUE
9714
9714
  _wrap_new_ParamList__SWIG_2(int argc, VALUE *argv, VALUE self) {
9715
9715
  std::multimap< std::string,std::string > *arg1 = 0 ;
9716
9716
  int res1 = SWIG_OLDOBJ ;
9717
- const char *classname SWIGUNUSED = "OIS::ParamList";
9717
+ const char *classname SWIGUNUSED = "Ois::ParamList";
9718
9718
  std::multimap< std::string,std::string > *result = 0 ;
9719
9719
 
9720
9720
  if ((argc < 1) || (argc > 1)) {
@@ -9784,15 +9784,15 @@ fail:
9784
9784
 
9785
9785
 
9786
9786
  /*
9787
- Document-method: OIS::ParamList.empty?
9787
+ Document-method: Ois::ParamList.empty
9788
9788
 
9789
9789
  call-seq:
9790
- empty? -> bool
9790
+ empty -> bool
9791
9791
 
9792
9792
  Check if the ParamList is empty or not.
9793
9793
  */
9794
9794
  SWIGINTERN VALUE
9795
- _wrap_ParamList_emptyq___(int argc, VALUE *argv, VALUE self) {
9795
+ _wrap_ParamList_empty(int argc, VALUE *argv, VALUE self) {
9796
9796
  std::multimap< std::string,std::string > *arg1 = (std::multimap< std::string,std::string > *) 0 ;
9797
9797
  void *argp1 = 0 ;
9798
9798
  int res1 = 0 ;
@@ -9817,7 +9817,7 @@ fail:
9817
9817
 
9818
9818
 
9819
9819
  /*
9820
- Document-method: OIS::ParamList.size
9820
+ Document-method: Ois::ParamList.size
9821
9821
 
9822
9822
  call-seq:
9823
9823
  size -> size_type
@@ -9850,7 +9850,7 @@ fail:
9850
9850
 
9851
9851
 
9852
9852
  /*
9853
- Document-method: OIS::ParamList.clear
9853
+ Document-method: Ois::ParamList.clear
9854
9854
 
9855
9855
  call-seq:
9856
9856
  clear
@@ -9936,7 +9936,7 @@ fail:
9936
9936
 
9937
9937
 
9938
9938
  /*
9939
- Document-method: OIS::ParamList.begin
9939
+ Document-method: Ois::ParamList.begin
9940
9940
 
9941
9941
  call-seq:
9942
9942
  begin -> iterator
@@ -9969,7 +9969,7 @@ fail:
9969
9969
 
9970
9970
 
9971
9971
  /*
9972
- Document-method: OIS::ParamList.end
9972
+ Document-method: Ois::ParamList.end
9973
9973
 
9974
9974
  call-seq:
9975
9975
  end -> iterator
@@ -10002,7 +10002,7 @@ fail:
10002
10002
 
10003
10003
 
10004
10004
  /*
10005
- Document-method: OIS::ParamList.rbegin
10005
+ Document-method: Ois::ParamList.rbegin
10006
10006
 
10007
10007
  call-seq:
10008
10008
  rbegin -> reverse_iterator
@@ -10035,7 +10035,7 @@ fail:
10035
10035
 
10036
10036
 
10037
10037
  /*
10038
- Document-method: OIS::ParamList.rend
10038
+ Document-method: Ois::ParamList.rend
10039
10039
 
10040
10040
  call-seq:
10041
10041
  rend -> reverse_iterator
@@ -10068,7 +10068,7 @@ fail:
10068
10068
 
10069
10069
 
10070
10070
  /*
10071
- Document-method: OIS::ParamList.erase
10071
+ Document-method: Ois::ParamList.erase
10072
10072
 
10073
10073
  call-seq:
10074
10074
  erase(x) -> size_type
@@ -10306,7 +10306,7 @@ fail:
10306
10306
 
10307
10307
 
10308
10308
  /*
10309
- Document-method: OIS::ParamList.find
10309
+ Document-method: Ois::ParamList.find
10310
10310
 
10311
10311
  call-seq:
10312
10312
  find(x) -> iterator
@@ -10562,7 +10562,7 @@ swig_class SwigClassComponent;
10562
10562
 
10563
10563
  SWIGINTERN VALUE
10564
10564
  _wrap_new_Component__SWIG_0(int argc, VALUE *argv, VALUE self) {
10565
- const char *classname SWIGUNUSED = "OIS::Component";
10565
+ const char *classname SWIGUNUSED = "Ois::Component";
10566
10566
  OIS::Component *result = 0 ;
10567
10567
 
10568
10568
  if ((argc < 0) || (argc > 0)) {
@@ -10598,7 +10598,7 @@ _wrap_new_Component__SWIG_1(int argc, VALUE *argv, VALUE self) {
10598
10598
  OIS::ComponentType arg1 ;
10599
10599
  int val1 ;
10600
10600
  int ecode1 = 0 ;
10601
- const char *classname SWIGUNUSED = "OIS::Component";
10601
+ const char *classname SWIGUNUSED = "Ois::Component";
10602
10602
  OIS::Component *result = 0 ;
10603
10603
 
10604
10604
  if ((argc < 1) || (argc > 1)) {
@@ -10712,7 +10712,7 @@ swig_class SwigClassButton;
10712
10712
 
10713
10713
  SWIGINTERN VALUE
10714
10714
  _wrap_new_Button__SWIG_0(int argc, VALUE *argv, VALUE self) {
10715
- const char *classname SWIGUNUSED = "OIS::Button";
10715
+ const char *classname SWIGUNUSED = "Ois::Button";
10716
10716
  OIS::Button *result = 0 ;
10717
10717
 
10718
10718
  if ((argc < 0) || (argc > 0)) {
@@ -10748,7 +10748,7 @@ _wrap_new_Button__SWIG_1(int argc, VALUE *argv, VALUE self) {
10748
10748
  bool arg1 ;
10749
10749
  bool val1 ;
10750
10750
  int ecode1 = 0 ;
10751
- const char *classname SWIGUNUSED = "OIS::Button";
10751
+ const char *classname SWIGUNUSED = "Ois::Button";
10752
10752
  OIS::Button *result = 0 ;
10753
10753
 
10754
10754
  if ((argc < 1) || (argc > 1)) {
@@ -10879,7 +10879,7 @@ _wrap_Axis_allocate(VALUE self) {
10879
10879
 
10880
10880
  SWIGINTERN VALUE
10881
10881
  _wrap_new_Axis(int argc, VALUE *argv, VALUE self) {
10882
- const char *classname SWIGUNUSED = "OIS::Axis";
10882
+ const char *classname SWIGUNUSED = "Ois::Axis";
10883
10883
  OIS::Axis *result = 0 ;
10884
10884
 
10885
10885
  if ((argc < 0) || (argc > 0)) {
@@ -11054,7 +11054,7 @@ fail:
11054
11054
 
11055
11055
 
11056
11056
  /*
11057
- Document-method: OIS::Axis.clear
11057
+ Document-method: Ois::Axis.clear
11058
11058
 
11059
11059
  call-seq:
11060
11060
  clear
@@ -11091,7 +11091,7 @@ swig_class SwigClassOisVector3;
11091
11091
 
11092
11092
  SWIGINTERN VALUE
11093
11093
  _wrap_new_OisVector3__SWIG_0(int argc, VALUE *argv, VALUE self) {
11094
- const char *classname SWIGUNUSED = "OIS::OisVector3";
11094
+ const char *classname SWIGUNUSED = "Ois::OisVector3";
11095
11095
  OIS::Vector3 *result = 0 ;
11096
11096
 
11097
11097
  if ((argc < 0) || (argc > 0)) {
@@ -11133,7 +11133,7 @@ _wrap_new_OisVector3__SWIG_1(int argc, VALUE *argv, VALUE self) {
11133
11133
  int ecode2 = 0 ;
11134
11134
  float val3 ;
11135
11135
  int ecode3 = 0 ;
11136
- const char *classname SWIGUNUSED = "OIS::OisVector3";
11136
+ const char *classname SWIGUNUSED = "Ois::OisVector3";
11137
11137
  OIS::Vector3 *result = 0 ;
11138
11138
 
11139
11139
  if ((argc < 3) || (argc > 3)) {
@@ -11368,7 +11368,7 @@ fail:
11368
11368
 
11369
11369
 
11370
11370
  /*
11371
- Document-method: OIS::OisVector3.clear
11371
+ Document-method: Ois::OisVector3.clear
11372
11372
 
11373
11373
  call-seq:
11374
11374
  clear
@@ -11409,7 +11409,7 @@ free_OIS_FactoryCreator(OIS::FactoryCreator *arg1) {
11409
11409
  }
11410
11410
 
11411
11411
  SWIGINTERN VALUE
11412
- _wrap_FactoryCreator_freeDeviceList(int argc, VALUE *argv, VALUE self) {
11412
+ _wrap_FactoryCreator_free_device_list(int argc, VALUE *argv, VALUE self) {
11413
11413
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11414
11414
  void *argp1 = 0 ;
11415
11415
  int res1 = 0 ;
@@ -11433,7 +11433,7 @@ fail:
11433
11433
 
11434
11434
 
11435
11435
  SWIGINTERN VALUE
11436
- _wrap_FactoryCreator_totalDevices(int argc, VALUE *argv, VALUE self) {
11436
+ _wrap_FactoryCreator_total_devices(int argc, VALUE *argv, VALUE self) {
11437
11437
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11438
11438
  OIS::Type arg2 ;
11439
11439
  void *argp1 = 0 ;
@@ -11465,7 +11465,7 @@ fail:
11465
11465
 
11466
11466
 
11467
11467
  SWIGINTERN VALUE
11468
- _wrap_FactoryCreator_freeDevices(int argc, VALUE *argv, VALUE self) {
11468
+ _wrap_FactoryCreator_free_devices(int argc, VALUE *argv, VALUE self) {
11469
11469
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11470
11470
  OIS::Type arg2 ;
11471
11471
  void *argp1 = 0 ;
@@ -11497,7 +11497,7 @@ fail:
11497
11497
 
11498
11498
 
11499
11499
  SWIGINTERN VALUE
11500
- _wrap_FactoryCreator_vendorExist(int argc, VALUE *argv, VALUE self) {
11500
+ _wrap_FactoryCreator_vendor_exist(int argc, VALUE *argv, VALUE self) {
11501
11501
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11502
11502
  OIS::Type arg2 ;
11503
11503
  std::string *arg3 = 0 ;
@@ -11544,7 +11544,7 @@ fail:
11544
11544
 
11545
11545
 
11546
11546
  SWIGINTERN VALUE
11547
- _wrap_FactoryCreator_createObject__SWIG_0(int argc, VALUE *argv, VALUE self) {
11547
+ _wrap_FactoryCreator_create_object__SWIG_0(int argc, VALUE *argv, VALUE self) {
11548
11548
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11549
11549
  OIS::InputManager *arg2 = (OIS::InputManager *) 0 ;
11550
11550
  OIS::Type arg3 ;
@@ -11607,7 +11607,7 @@ fail:
11607
11607
 
11608
11608
 
11609
11609
  SWIGINTERN VALUE
11610
- _wrap_FactoryCreator_createObject__SWIG_1(int argc, VALUE *argv, VALUE self) {
11610
+ _wrap_FactoryCreator_create_object__SWIG_1(int argc, VALUE *argv, VALUE self) {
11611
11611
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11612
11612
  OIS::InputManager *arg2 = (OIS::InputManager *) 0 ;
11613
11613
  OIS::Type arg3 ;
@@ -11654,7 +11654,7 @@ fail:
11654
11654
  }
11655
11655
 
11656
11656
 
11657
- SWIGINTERN VALUE _wrap_FactoryCreator_createObject(int nargs, VALUE *args, VALUE self) {
11657
+ SWIGINTERN VALUE _wrap_FactoryCreator_create_object(int nargs, VALUE *args, VALUE self) {
11658
11658
  int argc;
11659
11659
  VALUE argv[6];
11660
11660
  int ii;
@@ -11685,7 +11685,7 @@ SWIGINTERN VALUE _wrap_FactoryCreator_createObject(int nargs, VALUE *args, VALUE
11685
11685
  _v = SWIG_CheckState(res);
11686
11686
  }
11687
11687
  if (_v) {
11688
- return _wrap_FactoryCreator_createObject__SWIG_1(nargs, args, self);
11688
+ return _wrap_FactoryCreator_create_object__SWIG_1(nargs, args, self);
11689
11689
  }
11690
11690
  }
11691
11691
  }
@@ -11714,7 +11714,7 @@ SWIGINTERN VALUE _wrap_FactoryCreator_createObject(int nargs, VALUE *args, VALUE
11714
11714
  int res = SWIG_AsPtr_std_string(argv[4], (std::string**)(0));
11715
11715
  _v = SWIG_CheckState(res);
11716
11716
  if (_v) {
11717
- return _wrap_FactoryCreator_createObject__SWIG_0(nargs, args, self);
11717
+ return _wrap_FactoryCreator_create_object__SWIG_0(nargs, args, self);
11718
11718
  }
11719
11719
  }
11720
11720
  }
@@ -11723,16 +11723,16 @@ SWIGINTERN VALUE _wrap_FactoryCreator_createObject(int nargs, VALUE *args, VALUE
11723
11723
  }
11724
11724
 
11725
11725
  fail:
11726
- Ruby_Format_OverloadedError( argc, 6, "FactoryCreator.createObject",
11727
- " OIS::Object * FactoryCreator.createObject(OIS::InputManager *creator, OIS::Type iType, bool bufferMode, std::string const &vendor)\n"
11728
- " OIS::Object * FactoryCreator.createObject(OIS::InputManager *creator, OIS::Type iType, bool bufferMode)\n");
11726
+ Ruby_Format_OverloadedError( argc, 6, "FactoryCreator.create_object",
11727
+ " OIS::Object * FactoryCreator.create_object(OIS::InputManager *creator, OIS::Type iType, bool bufferMode, std::string const &vendor)\n"
11728
+ " OIS::Object * FactoryCreator.create_object(OIS::InputManager *creator, OIS::Type iType, bool bufferMode)\n");
11729
11729
 
11730
11730
  return Qnil;
11731
11731
  }
11732
11732
 
11733
11733
 
11734
11734
  SWIGINTERN VALUE
11735
- _wrap_FactoryCreator_destroyObject(int argc, VALUE *argv, VALUE self) {
11735
+ _wrap_FactoryCreator_destroy_object(int argc, VALUE *argv, VALUE self) {
11736
11736
  OIS::FactoryCreator *arg1 = (OIS::FactoryCreator *) 0 ;
11737
11737
  OIS::Object *arg2 = (OIS::Object *) 0 ;
11738
11738
  void *argp1 = 0 ;
@@ -11795,7 +11795,7 @@ _wrap_new_Exception(int argc, VALUE *argv, VALUE self) {
11795
11795
  int res4 ;
11796
11796
  char *buf4 = 0 ;
11797
11797
  int alloc4 = 0 ;
11798
- const char *classname SWIGUNUSED = "OIS::Exception";
11798
+ const char *classname SWIGUNUSED = "Ois::Exception";
11799
11799
  OIS::Exception *result = 0 ;
11800
11800
 
11801
11801
  if ((argc < 4) || (argc > 4)) {
@@ -12058,7 +12058,7 @@ _wrap_Interface_allocate(VALUE self) {
12058
12058
 
12059
12059
  SWIGINTERN VALUE
12060
12060
  _wrap_new_Interface(int argc, VALUE *argv, VALUE self) {
12061
- const char *classname SWIGUNUSED = "OIS::Interface";
12061
+ const char *classname SWIGUNUSED = "Ois::Interface";
12062
12062
  OIS::Interface *result = 0 ;
12063
12063
 
12064
12064
  if ((argc < 0) || (argc > 0)) {
@@ -12152,7 +12152,7 @@ fail:
12152
12152
 
12153
12153
 
12154
12154
  SWIGINTERN VALUE
12155
- _wrap_Object_getCreator(int argc, VALUE *argv, VALUE self) {
12155
+ _wrap_Object_get_creator(int argc, VALUE *argv, VALUE self) {
12156
12156
  OIS::Object *arg1 = (OIS::Object *) 0 ;
12157
12157
  void *argp1 = 0 ;
12158
12158
  int res1 = 0 ;
@@ -12176,7 +12176,7 @@ fail:
12176
12176
 
12177
12177
 
12178
12178
  SWIGINTERN VALUE
12179
- _wrap_Object_setBuffered(int argc, VALUE *argv, VALUE self) {
12179
+ _wrap_Object_set_buffered(int argc, VALUE *argv, VALUE self) {
12180
12180
  OIS::Object *arg1 = (OIS::Object *) 0 ;
12181
12181
  bool arg2 ;
12182
12182
  void *argp1 = 0 ;
@@ -12226,7 +12226,7 @@ fail:
12226
12226
 
12227
12227
 
12228
12228
  SWIGINTERN VALUE
12229
- _wrap_Object_getID(int argc, VALUE *argv, VALUE self) {
12229
+ _wrap_Object_get_id(int argc, VALUE *argv, VALUE self) {
12230
12230
  OIS::Object *arg1 = (OIS::Object *) 0 ;
12231
12231
  void *argp1 = 0 ;
12232
12232
  int res1 = 0 ;
@@ -12250,7 +12250,7 @@ fail:
12250
12250
 
12251
12251
 
12252
12252
  SWIGINTERN VALUE
12253
- _wrap_Object_queryInterface(int argc, VALUE *argv, VALUE self) {
12253
+ _wrap_Object_query_interface(int argc, VALUE *argv, VALUE self) {
12254
12254
  OIS::Object *arg1 = (OIS::Object *) 0 ;
12255
12255
  OIS::Interface::IType arg2 ;
12256
12256
  void *argp1 = 0 ;
@@ -12303,7 +12303,7 @@ fail:
12303
12303
 
12304
12304
 
12305
12305
  SWIGINTERN VALUE
12306
- _wrap_Object_toKeyboard(int argc, VALUE *argv, VALUE self) {
12306
+ _wrap_Object_to_keyboard(int argc, VALUE *argv, VALUE self) {
12307
12307
  OIS::Object *arg1 = (OIS::Object *) 0 ;
12308
12308
  void *argp1 = 0 ;
12309
12309
  int res1 = 0 ;
@@ -12327,7 +12327,7 @@ fail:
12327
12327
 
12328
12328
 
12329
12329
  SWIGINTERN VALUE
12330
- _wrap_Object_toMouse(int argc, VALUE *argv, VALUE self) {
12330
+ _wrap_Object_to_mouse(int argc, VALUE *argv, VALUE self) {
12331
12331
  OIS::Object *arg1 = (OIS::Object *) 0 ;
12332
12332
  void *argp1 = 0 ;
12333
12333
  int res1 = 0 ;
@@ -12353,7 +12353,7 @@ fail:
12353
12353
  swig_class SwigClassEffect;
12354
12354
 
12355
12355
  SWIGINTERN VALUE
12356
- _wrap_Effect_getForceTypeName(int argc, VALUE *argv, VALUE self) {
12356
+ _wrap_Effect_get_force_type_name(int argc, VALUE *argv, VALUE self) {
12357
12357
  OIS::Effect::EForce arg1 ;
12358
12358
  int val1 ;
12359
12359
  int ecode1 = 0 ;
@@ -12377,7 +12377,7 @@ fail:
12377
12377
 
12378
12378
 
12379
12379
  SWIGINTERN VALUE
12380
- _wrap_Effect_getEffectTypeName(int argc, VALUE *argv, VALUE self) {
12380
+ _wrap_Effect_get_effect_type_name(int argc, VALUE *argv, VALUE self) {
12381
12381
  OIS::Effect::EType arg1 ;
12382
12382
  int val1 ;
12383
12383
  int ecode1 = 0 ;
@@ -12401,7 +12401,7 @@ fail:
12401
12401
 
12402
12402
 
12403
12403
  SWIGINTERN VALUE
12404
- _wrap_Effect_getDirectionName(int argc, VALUE *argv, VALUE self) {
12404
+ _wrap_Effect_get_direction_name(int argc, VALUE *argv, VALUE self) {
12405
12405
  OIS::Effect::EDirection arg1 ;
12406
12406
  int val1 ;
12407
12407
  int ecode1 = 0 ;
@@ -12449,7 +12449,7 @@ _wrap_new_Effect(int argc, VALUE *argv, VALUE self) {
12449
12449
  int ecode1 = 0 ;
12450
12450
  int val2 ;
12451
12451
  int ecode2 = 0 ;
12452
- const char *classname SWIGUNUSED = "OIS::Effect";
12452
+ const char *classname SWIGUNUSED = "Ois::Effect";
12453
12453
  OIS::Effect *result = 0 ;
12454
12454
 
12455
12455
  if ((argc < 2) || (argc > 2)) {
@@ -12792,7 +12792,7 @@ fail:
12792
12792
 
12793
12793
 
12794
12794
  SWIGINTERN VALUE
12795
- _wrap_Effect_getForceEffect(int argc, VALUE *argv, VALUE self) {
12795
+ _wrap_Effect_get_force_effect(int argc, VALUE *argv, VALUE self) {
12796
12796
  OIS::Effect *arg1 = (OIS::Effect *) 0 ;
12797
12797
  void *argp1 = 0 ;
12798
12798
  int res1 = 0 ;
@@ -12816,7 +12816,7 @@ fail:
12816
12816
 
12817
12817
 
12818
12818
  SWIGINTERN VALUE
12819
- _wrap_Effect_setNumAxes(int argc, VALUE *argv, VALUE self) {
12819
+ _wrap_Effect_set_num_axes(int argc, VALUE *argv, VALUE self) {
12820
12820
  OIS::Effect *arg1 = (OIS::Effect *) 0 ;
12821
12821
  short arg2 ;
12822
12822
  void *argp1 = 0 ;
@@ -12845,7 +12845,7 @@ fail:
12845
12845
 
12846
12846
 
12847
12847
  SWIGINTERN VALUE
12848
- _wrap_Effect_getNumAxes(int argc, VALUE *argv, VALUE self) {
12848
+ _wrap_Effect_get_num_axes(int argc, VALUE *argv, VALUE self) {
12849
12849
  OIS::Effect *arg1 = (OIS::Effect *) 0 ;
12850
12850
  void *argp1 = 0 ;
12851
12851
  int res1 = 0 ;
@@ -12947,7 +12947,7 @@ _wrap_ForceEffect_allocate(VALUE self) {
12947
12947
 
12948
12948
  SWIGINTERN VALUE
12949
12949
  _wrap_new_ForceEffect(int argc, VALUE *argv, VALUE self) {
12950
- const char *classname SWIGUNUSED = "OIS::ForceEffect";
12950
+ const char *classname SWIGUNUSED = "Ois::ForceEffect";
12951
12951
  OIS::ForceEffect *result = 0 ;
12952
12952
 
12953
12953
  if ((argc < 0) || (argc > 0)) {
@@ -12982,7 +12982,7 @@ _wrap_Envelope_allocate(VALUE self) {
12982
12982
 
12983
12983
  SWIGINTERN VALUE
12984
12984
  _wrap_new_Envelope(int argc, VALUE *argv, VALUE self) {
12985
- const char *classname SWIGUNUSED = "OIS::Envelope";
12985
+ const char *classname SWIGUNUSED = "Ois::Envelope";
12986
12986
  OIS::Envelope *result = 0 ;
12987
12987
 
12988
12988
  if ((argc < 0) || (argc > 0)) {
@@ -12997,7 +12997,7 @@ fail:
12997
12997
 
12998
12998
 
12999
12999
  SWIGINTERN VALUE
13000
- _wrap_Envelope_isUsed(int argc, VALUE *argv, VALUE self) {
13000
+ _wrap_Envelope_is_used(int argc, VALUE *argv, VALUE self) {
13001
13001
  OIS::Envelope *arg1 = (OIS::Envelope *) 0 ;
13002
13002
  void *argp1 = 0 ;
13003
13003
  int res1 = 0 ;
@@ -13258,7 +13258,7 @@ _wrap_ConstantEffect_allocate(VALUE self) {
13258
13258
 
13259
13259
  SWIGINTERN VALUE
13260
13260
  _wrap_new_ConstantEffect(int argc, VALUE *argv, VALUE self) {
13261
- const char *classname SWIGUNUSED = "OIS::ConstantEffect";
13261
+ const char *classname SWIGUNUSED = "Ois::ConstantEffect";
13262
13262
  OIS::ConstantEffect *result = 0 ;
13263
13263
 
13264
13264
  if ((argc < 0) || (argc > 0)) {
@@ -13404,7 +13404,7 @@ _wrap_RampEffect_allocate(VALUE self) {
13404
13404
 
13405
13405
  SWIGINTERN VALUE
13406
13406
  _wrap_new_RampEffect(int argc, VALUE *argv, VALUE self) {
13407
- const char *classname SWIGUNUSED = "OIS::RampEffect";
13407
+ const char *classname SWIGUNUSED = "Ois::RampEffect";
13408
13408
  OIS::RampEffect *result = 0 ;
13409
13409
 
13410
13410
  if ((argc < 0) || (argc > 0)) {
@@ -13603,7 +13603,7 @@ _wrap_PeriodicEffect_allocate(VALUE self) {
13603
13603
 
13604
13604
  SWIGINTERN VALUE
13605
13605
  _wrap_new_PeriodicEffect(int argc, VALUE *argv, VALUE self) {
13606
- const char *classname SWIGUNUSED = "OIS::PeriodicEffect";
13606
+ const char *classname SWIGUNUSED = "Ois::PeriodicEffect";
13607
13607
  OIS::PeriodicEffect *result = 0 ;
13608
13608
 
13609
13609
  if ((argc < 0) || (argc > 0)) {
@@ -13908,7 +13908,7 @@ _wrap_ConditionalEffect_allocate(VALUE self) {
13908
13908
 
13909
13909
  SWIGINTERN VALUE
13910
13910
  _wrap_new_ConditionalEffect(int argc, VALUE *argv, VALUE self) {
13911
- const char *classname SWIGUNUSED = "OIS::ConditionalEffect";
13911
+ const char *classname SWIGUNUSED = "Ois::ConditionalEffect";
13912
13912
  OIS::ConditionalEffect *result = 0 ;
13913
13913
 
13914
13914
  if ((argc < 0) || (argc > 0)) {
@@ -14253,7 +14253,7 @@ free_OIS_ForceFeedback(OIS::ForceFeedback *arg1) {
14253
14253
  }
14254
14254
 
14255
14255
  SWIGINTERN VALUE
14256
- _wrap_ForceFeedback_setMasterGain(int argc, VALUE *argv, VALUE self) {
14256
+ _wrap_ForceFeedback_set_master_gain(int argc, VALUE *argv, VALUE self) {
14257
14257
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14258
14258
  float arg2 ;
14259
14259
  void *argp1 = 0 ;
@@ -14282,7 +14282,7 @@ fail:
14282
14282
 
14283
14283
 
14284
14284
  SWIGINTERN VALUE
14285
- _wrap_ForceFeedback_setAutoCenterMode(int argc, VALUE *argv, VALUE self) {
14285
+ _wrap_ForceFeedback_set_auto_center_mode(int argc, VALUE *argv, VALUE self) {
14286
14286
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14287
14287
  bool arg2 ;
14288
14288
  void *argp1 = 0 ;
@@ -14398,7 +14398,7 @@ fail:
14398
14398
 
14399
14399
 
14400
14400
  SWIGINTERN VALUE
14401
- _wrap_ForceFeedback_getFFAxesNumber(int argc, VALUE *argv, VALUE self) {
14401
+ _wrap_ForceFeedback_get_ffaxes_number(int argc, VALUE *argv, VALUE self) {
14402
14402
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14403
14403
  void *argp1 = 0 ;
14404
14404
  int res1 = 0 ;
@@ -14422,7 +14422,7 @@ fail:
14422
14422
 
14423
14423
 
14424
14424
  SWIGINTERN VALUE
14425
- _wrap_ForceFeedback_getFFMemoryLoad(int argc, VALUE *argv, VALUE self) {
14425
+ _wrap_ForceFeedback_get_ffmemory_load(int argc, VALUE *argv, VALUE self) {
14426
14426
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14427
14427
  void *argp1 = 0 ;
14428
14428
  int res1 = 0 ;
@@ -14446,7 +14446,7 @@ fail:
14446
14446
 
14447
14447
 
14448
14448
  SWIGINTERN VALUE
14449
- _wrap_ForceFeedback_getSupportedEffects(int argc, VALUE *argv, VALUE self) {
14449
+ _wrap_ForceFeedback_get_supported_effects(int argc, VALUE *argv, VALUE self) {
14450
14450
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14451
14451
  void *argp1 = 0 ;
14452
14452
  int res1 = 0 ;
@@ -14470,7 +14470,7 @@ fail:
14470
14470
 
14471
14471
 
14472
14472
  SWIGINTERN VALUE
14473
- _wrap_ForceFeedback_supportsEffect(int argc, VALUE *argv, VALUE self) {
14473
+ _wrap_ForceFeedback_supports_effect(int argc, VALUE *argv, VALUE self) {
14474
14474
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14475
14475
  OIS::Effect::EForce arg2 ;
14476
14476
  OIS::Effect::EType arg3 ;
@@ -14510,7 +14510,7 @@ fail:
14510
14510
 
14511
14511
 
14512
14512
  SWIGINTERN VALUE
14513
- _wrap_ForceFeedback__addEffectTypes(int argc, VALUE *argv, VALUE self) {
14513
+ _wrap_ForceFeedback__add_effect_types(int argc, VALUE *argv, VALUE self) {
14514
14514
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14515
14515
  OIS::Effect::EForce arg2 ;
14516
14516
  OIS::Effect::EType arg3 ;
@@ -14547,7 +14547,7 @@ fail:
14547
14547
 
14548
14548
 
14549
14549
  SWIGINTERN VALUE
14550
- _wrap_ForceFeedback__setGainSupport(int argc, VALUE *argv, VALUE self) {
14550
+ _wrap_ForceFeedback__set_gain_support(int argc, VALUE *argv, VALUE self) {
14551
14551
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14552
14552
  bool arg2 ;
14553
14553
  void *argp1 = 0 ;
@@ -14576,7 +14576,7 @@ fail:
14576
14576
 
14577
14577
 
14578
14578
  SWIGINTERN VALUE
14579
- _wrap_ForceFeedback__setAutoCenterSupport(int argc, VALUE *argv, VALUE self) {
14579
+ _wrap_ForceFeedback__set_auto_center_support(int argc, VALUE *argv, VALUE self) {
14580
14580
  OIS::ForceFeedback *arg1 = (OIS::ForceFeedback *) 0 ;
14581
14581
  bool arg2 ;
14582
14582
  void *argp1 = 0 ;
@@ -14628,7 +14628,7 @@ _wrap_new_EventArg(int argc, VALUE *argv, VALUE self) {
14628
14628
  OIS::Object *arg1 = (OIS::Object *) 0 ;
14629
14629
  void *argp1 = 0 ;
14630
14630
  int res1 = 0 ;
14631
- const char *classname SWIGUNUSED = "OIS::EventArg";
14631
+ const char *classname SWIGUNUSED = "Ois::EventArg";
14632
14632
  OIS::EventArg *result = 0 ;
14633
14633
 
14634
14634
  if ((argc < 1) || (argc > 1)) {
@@ -14726,7 +14726,7 @@ _wrap_Pov_allocate(VALUE self) {
14726
14726
 
14727
14727
  SWIGINTERN VALUE
14728
14728
  _wrap_new_Pov(int argc, VALUE *argv, VALUE self) {
14729
- const char *classname SWIGUNUSED = "OIS::Pov";
14729
+ const char *classname SWIGUNUSED = "Ois::Pov";
14730
14730
  OIS::Pov *result = 0 ;
14731
14731
 
14732
14732
  if ((argc < 0) || (argc > 0)) {
@@ -14819,7 +14819,7 @@ _wrap_Slider_allocate(VALUE self) {
14819
14819
 
14820
14820
  SWIGINTERN VALUE
14821
14821
  _wrap_new_Slider(int argc, VALUE *argv, VALUE self) {
14822
- const char *classname SWIGUNUSED = "OIS::Slider";
14822
+ const char *classname SWIGUNUSED = "Ois::Slider";
14823
14823
  OIS::Slider *result = 0 ;
14824
14824
 
14825
14825
  if ((argc < 0) || (argc > 0)) {
@@ -14965,7 +14965,7 @@ _wrap_JoyStickState_allocate(VALUE self) {
14965
14965
 
14966
14966
  SWIGINTERN VALUE
14967
14967
  _wrap_new_JoyStickState(int argc, VALUE *argv, VALUE self) {
14968
- const char *classname SWIGUNUSED = "OIS::JoyStickState";
14968
+ const char *classname SWIGUNUSED = "Ois::JoyStickState";
14969
14969
  OIS::JoyStickState *result = 0 ;
14970
14970
 
14971
14971
  if ((argc < 0) || (argc > 0)) {
@@ -15266,7 +15266,7 @@ fail:
15266
15266
 
15267
15267
 
15268
15268
  /*
15269
- Document-method: OIS::JoyStickState.clear
15269
+ Document-method: Ois::JoyStickState.clear
15270
15270
 
15271
15271
  call-seq:
15272
15272
  clear
@@ -15326,7 +15326,7 @@ _wrap_new_JoyStickEvent(int argc, VALUE *argv, VALUE self) {
15326
15326
  int res1 = 0 ;
15327
15327
  void *argp2 ;
15328
15328
  int res2 = 0 ;
15329
- const char *classname SWIGUNUSED = "OIS::JoyStickEvent";
15329
+ const char *classname SWIGUNUSED = "Ois::JoyStickEvent";
15330
15330
  OIS::JoyStickEvent *result = 0 ;
15331
15331
 
15332
15332
  if ((argc < 2) || (argc > 2)) {
@@ -15390,7 +15390,7 @@ free_OIS_JoyStickListener(OIS::JoyStickListener *arg1) {
15390
15390
  }
15391
15391
 
15392
15392
  SWIGINTERN VALUE
15393
- _wrap_JoyStickListener_buttonPressed(int argc, VALUE *argv, VALUE self) {
15393
+ _wrap_JoyStickListener_button_pressed(int argc, VALUE *argv, VALUE self) {
15394
15394
  OIS::JoyStickListener *arg1 = (OIS::JoyStickListener *) 0 ;
15395
15395
  OIS::JoyStickEvent *arg2 = 0 ;
15396
15396
  int arg3 ;
@@ -15433,7 +15433,7 @@ fail:
15433
15433
 
15434
15434
 
15435
15435
  SWIGINTERN VALUE
15436
- _wrap_JoyStickListener_buttonReleased(int argc, VALUE *argv, VALUE self) {
15436
+ _wrap_JoyStickListener_button_released(int argc, VALUE *argv, VALUE self) {
15437
15437
  OIS::JoyStickListener *arg1 = (OIS::JoyStickListener *) 0 ;
15438
15438
  OIS::JoyStickEvent *arg2 = 0 ;
15439
15439
  int arg3 ;
@@ -15476,7 +15476,7 @@ fail:
15476
15476
 
15477
15477
 
15478
15478
  SWIGINTERN VALUE
15479
- _wrap_JoyStickListener_axisMoved(int argc, VALUE *argv, VALUE self) {
15479
+ _wrap_JoyStickListener_axis_moved(int argc, VALUE *argv, VALUE self) {
15480
15480
  OIS::JoyStickListener *arg1 = (OIS::JoyStickListener *) 0 ;
15481
15481
  OIS::JoyStickEvent *arg2 = 0 ;
15482
15482
  int arg3 ;
@@ -15519,7 +15519,7 @@ fail:
15519
15519
 
15520
15520
 
15521
15521
  SWIGINTERN VALUE
15522
- _wrap_JoyStickListener_sliderMoved(int argc, VALUE *argv, VALUE self) {
15522
+ _wrap_JoyStickListener_slider_moved(int argc, VALUE *argv, VALUE self) {
15523
15523
  OIS::JoyStickListener *arg1 = (OIS::JoyStickListener *) 0 ;
15524
15524
  OIS::JoyStickEvent *arg2 = 0 ;
15525
15525
  int arg3 ;
@@ -15562,7 +15562,7 @@ fail:
15562
15562
 
15563
15563
 
15564
15564
  SWIGINTERN VALUE
15565
- _wrap_JoyStickListener_povMoved(int argc, VALUE *argv, VALUE self) {
15565
+ _wrap_JoyStickListener_pov_moved(int argc, VALUE *argv, VALUE self) {
15566
15566
  OIS::JoyStickListener *arg1 = (OIS::JoyStickListener *) 0 ;
15567
15567
  OIS::JoyStickEvent *arg2 = 0 ;
15568
15568
  int arg3 ;
@@ -15605,7 +15605,7 @@ fail:
15605
15605
 
15606
15606
 
15607
15607
  SWIGINTERN VALUE
15608
- _wrap_JoyStickListener_vector3Moved(int argc, VALUE *argv, VALUE self) {
15608
+ _wrap_JoyStickListener_vector_3moved(int argc, VALUE *argv, VALUE self) {
15609
15609
  OIS::JoyStickListener *arg1 = (OIS::JoyStickListener *) 0 ;
15610
15610
  OIS::JoyStickEvent *arg2 = 0 ;
15611
15611
  int arg3 ;
@@ -15655,7 +15655,7 @@ free_OIS_JoyStick(OIS::JoyStick *arg1) {
15655
15655
  }
15656
15656
 
15657
15657
  SWIGINTERN VALUE
15658
- _wrap_JoyStick_getNumberOfComponents(int argc, VALUE *argv, VALUE self) {
15658
+ _wrap_JoyStick_get_number_of_components(int argc, VALUE *argv, VALUE self) {
15659
15659
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15660
15660
  OIS::ComponentType arg2 ;
15661
15661
  void *argp1 = 0 ;
@@ -15687,7 +15687,7 @@ fail:
15687
15687
 
15688
15688
 
15689
15689
  SWIGINTERN VALUE
15690
- _wrap_JoyStick_setVector3Sensitivity__SWIG_0(int argc, VALUE *argv, VALUE self) {
15690
+ _wrap_JoyStick_set_vector_3sensitivity__SWIG_0(int argc, VALUE *argv, VALUE self) {
15691
15691
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15692
15692
  float arg2 ;
15693
15693
  void *argp1 = 0 ;
@@ -15716,7 +15716,7 @@ fail:
15716
15716
 
15717
15717
 
15718
15718
  SWIGINTERN VALUE
15719
- _wrap_JoyStick_setVector3Sensitivity__SWIG_1(int argc, VALUE *argv, VALUE self) {
15719
+ _wrap_JoyStick_set_vector_3sensitivity__SWIG_1(int argc, VALUE *argv, VALUE self) {
15720
15720
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15721
15721
  void *argp1 = 0 ;
15722
15722
  int res1 = 0 ;
@@ -15736,7 +15736,7 @@ fail:
15736
15736
  }
15737
15737
 
15738
15738
 
15739
- SWIGINTERN VALUE _wrap_JoyStick_setVector3Sensitivity(int nargs, VALUE *args, VALUE self) {
15739
+ SWIGINTERN VALUE _wrap_JoyStick_set_vector_3sensitivity(int nargs, VALUE *args, VALUE self) {
15740
15740
  int argc;
15741
15741
  VALUE argv[3];
15742
15742
  int ii;
@@ -15753,7 +15753,7 @@ SWIGINTERN VALUE _wrap_JoyStick_setVector3Sensitivity(int nargs, VALUE *args, VA
15753
15753
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_OIS__JoyStick, 0);
15754
15754
  _v = SWIG_CheckState(res);
15755
15755
  if (_v) {
15756
- return _wrap_JoyStick_setVector3Sensitivity__SWIG_1(nargs, args, self);
15756
+ return _wrap_JoyStick_set_vector_3sensitivity__SWIG_1(nargs, args, self);
15757
15757
  }
15758
15758
  }
15759
15759
  if (argc == 2) {
@@ -15767,22 +15767,22 @@ SWIGINTERN VALUE _wrap_JoyStick_setVector3Sensitivity(int nargs, VALUE *args, VA
15767
15767
  _v = SWIG_CheckState(res);
15768
15768
  }
15769
15769
  if (_v) {
15770
- return _wrap_JoyStick_setVector3Sensitivity__SWIG_0(nargs, args, self);
15770
+ return _wrap_JoyStick_set_vector_3sensitivity__SWIG_0(nargs, args, self);
15771
15771
  }
15772
15772
  }
15773
15773
  }
15774
15774
 
15775
15775
  fail:
15776
- Ruby_Format_OverloadedError( argc, 3, "JoyStick.setVector3Sensitivity",
15777
- " void JoyStick.setVector3Sensitivity(float degrees)\n"
15778
- " void JoyStick.setVector3Sensitivity()\n");
15776
+ Ruby_Format_OverloadedError( argc, 3, "JoyStick.set_vector_3sensitivity",
15777
+ " void JoyStick.set_vector_3sensitivity(float degrees)\n"
15778
+ " void JoyStick.set_vector_3sensitivity()\n");
15779
15779
 
15780
15780
  return Qnil;
15781
15781
  }
15782
15782
 
15783
15783
 
15784
15784
  SWIGINTERN VALUE
15785
- _wrap_JoyStick_getVector3Sensitivity(int argc, VALUE *argv, VALUE self) {
15785
+ _wrap_JoyStick_get_vector_3sensitivity(int argc, VALUE *argv, VALUE self) {
15786
15786
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15787
15787
  void *argp1 = 0 ;
15788
15788
  int res1 = 0 ;
@@ -15806,7 +15806,7 @@ fail:
15806
15806
 
15807
15807
 
15808
15808
  SWIGINTERN VALUE
15809
- _wrap_JoyStick_setEventCallback(int argc, VALUE *argv, VALUE self) {
15809
+ _wrap_JoyStick_set_event_callback(int argc, VALUE *argv, VALUE self) {
15810
15810
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15811
15811
  OIS::JoyStickListener *arg2 = (OIS::JoyStickListener *) 0 ;
15812
15812
  void *argp1 = 0 ;
@@ -15835,7 +15835,7 @@ fail:
15835
15835
 
15836
15836
 
15837
15837
  SWIGINTERN VALUE
15838
- _wrap_JoyStick_getEventCallback(int argc, VALUE *argv, VALUE self) {
15838
+ _wrap_JoyStick_get_event_callback(int argc, VALUE *argv, VALUE self) {
15839
15839
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15840
15840
  void *argp1 = 0 ;
15841
15841
  int res1 = 0 ;
@@ -15859,7 +15859,7 @@ fail:
15859
15859
 
15860
15860
 
15861
15861
  SWIGINTERN VALUE
15862
- _wrap_JoyStick_getJoyStickState(int argc, VALUE *argv, VALUE self) {
15862
+ _wrap_JoyStick_get_joy_stick_state(int argc, VALUE *argv, VALUE self) {
15863
15863
  OIS::JoyStick *arg1 = (OIS::JoyStick *) 0 ;
15864
15864
  void *argp1 = 0 ;
15865
15865
  int res1 = 0 ;
@@ -15912,7 +15912,7 @@ _wrap_new_KeyEvent(int argc, VALUE *argv, VALUE self) {
15912
15912
  int ecode2 = 0 ;
15913
15913
  unsigned int val3 ;
15914
15914
  int ecode3 = 0 ;
15915
- const char *classname SWIGUNUSED = "OIS::KeyEvent";
15915
+ const char *classname SWIGUNUSED = "Ois::KeyEvent";
15916
15916
  OIS::KeyEvent *result = 0 ;
15917
15917
 
15918
15918
  if ((argc < 3) || (argc > 3)) {
@@ -16031,7 +16031,7 @@ free_OIS_KeyListener(OIS::KeyListener *arg1) {
16031
16031
  }
16032
16032
 
16033
16033
  SWIGINTERN VALUE
16034
- _wrap_KeyListener_keyPressed(int argc, VALUE *argv, VALUE self) {
16034
+ _wrap_KeyListener_key_pressed(int argc, VALUE *argv, VALUE self) {
16035
16035
  OIS::KeyListener *arg1 = (OIS::KeyListener *) 0 ;
16036
16036
  OIS::KeyEvent *arg2 = 0 ;
16037
16037
  void *argp1 = 0 ;
@@ -16079,7 +16079,7 @@ fail:
16079
16079
 
16080
16080
 
16081
16081
  SWIGINTERN VALUE
16082
- _wrap_KeyListener_keyReleased(int argc, VALUE *argv, VALUE self) {
16082
+ _wrap_KeyListener_key_released(int argc, VALUE *argv, VALUE self) {
16083
16083
  OIS::KeyListener *arg1 = (OIS::KeyListener *) 0 ;
16084
16084
  OIS::KeyEvent *arg2 = 0 ;
16085
16085
  void *argp1 = 0 ;
@@ -16146,7 +16146,7 @@ _wrap_KeyListener_allocate(VALUE self) {
16146
16146
  SWIGINTERN VALUE
16147
16147
  _wrap_new_KeyListener(int argc, VALUE *argv, VALUE self) {
16148
16148
  VALUE arg1 = (VALUE) 0 ;
16149
- const char *classname SWIGUNUSED = "OIS::KeyListener";
16149
+ const char *classname SWIGUNUSED = "Ois::KeyListener";
16150
16150
  OIS::KeyListener *result = 0 ;
16151
16151
 
16152
16152
  if ((argc < 0) || (argc > 0)) {
@@ -16201,7 +16201,7 @@ free_OIS_Keyboard(OIS::Keyboard *arg1) {
16201
16201
  }
16202
16202
 
16203
16203
  SWIGINTERN VALUE
16204
- _wrap_Keyboard_isKeyDown(int argc, VALUE *argv, VALUE self) {
16204
+ _wrap_Keyboard_is_key_down(int argc, VALUE *argv, VALUE self) {
16205
16205
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16206
16206
  OIS::KeyCode arg2 ;
16207
16207
  void *argp1 = 0 ;
@@ -16233,7 +16233,7 @@ fail:
16233
16233
 
16234
16234
 
16235
16235
  SWIGINTERN VALUE
16236
- _wrap_Keyboard_setEventCallback(int argc, VALUE *argv, VALUE self) {
16236
+ _wrap_Keyboard_set_event_callback(int argc, VALUE *argv, VALUE self) {
16237
16237
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16238
16238
  OIS::KeyListener *arg2 = (OIS::KeyListener *) 0 ;
16239
16239
  void *argp1 = 0 ;
@@ -16262,7 +16262,7 @@ fail:
16262
16262
 
16263
16263
 
16264
16264
  SWIGINTERN VALUE
16265
- _wrap_Keyboard_getEventCallback(int argc, VALUE *argv, VALUE self) {
16265
+ _wrap_Keyboard_get_event_callback(int argc, VALUE *argv, VALUE self) {
16266
16266
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16267
16267
  void *argp1 = 0 ;
16268
16268
  int res1 = 0 ;
@@ -16292,7 +16292,7 @@ fail:
16292
16292
 
16293
16293
 
16294
16294
  SWIGINTERN VALUE
16295
- _wrap_Keyboard_setTextTranslation(int argc, VALUE *argv, VALUE self) {
16295
+ _wrap_Keyboard_set_text_translation(int argc, VALUE *argv, VALUE self) {
16296
16296
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16297
16297
  OIS::Keyboard::TextTranslationMode arg2 ;
16298
16298
  void *argp1 = 0 ;
@@ -16321,7 +16321,7 @@ fail:
16321
16321
 
16322
16322
 
16323
16323
  SWIGINTERN VALUE
16324
- _wrap_Keyboard_getTextTranslation(int argc, VALUE *argv, VALUE self) {
16324
+ _wrap_Keyboard_get_text_translation(int argc, VALUE *argv, VALUE self) {
16325
16325
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16326
16326
  void *argp1 = 0 ;
16327
16327
  int res1 = 0 ;
@@ -16345,7 +16345,7 @@ fail:
16345
16345
 
16346
16346
 
16347
16347
  SWIGINTERN VALUE
16348
- _wrap_Keyboard_getAsString(int argc, VALUE *argv, VALUE self) {
16348
+ _wrap_Keyboard_get_as_string(int argc, VALUE *argv, VALUE self) {
16349
16349
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16350
16350
  OIS::KeyCode arg2 ;
16351
16351
  void *argp1 = 0 ;
@@ -16377,7 +16377,7 @@ fail:
16377
16377
 
16378
16378
 
16379
16379
  SWIGINTERN VALUE
16380
- _wrap_Keyboard_isModifierDown(int argc, VALUE *argv, VALUE self) {
16380
+ _wrap_Keyboard_is_modifier_down(int argc, VALUE *argv, VALUE self) {
16381
16381
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16382
16382
  OIS::Keyboard::Modifier arg2 ;
16383
16383
  void *argp1 = 0 ;
@@ -16409,7 +16409,7 @@ fail:
16409
16409
 
16410
16410
 
16411
16411
  SWIGINTERN VALUE
16412
- _wrap_Keyboard_copyKeyStates(int argc, VALUE *argv, VALUE self) {
16412
+ _wrap_Keyboard_copy_key_states(int argc, VALUE *argv, VALUE self) {
16413
16413
  OIS::Keyboard *arg1 = (OIS::Keyboard *) 0 ;
16414
16414
  char *arg2 ;
16415
16415
  void *argp1 = 0 ;
@@ -16458,7 +16458,7 @@ _wrap_MouseState_allocate(VALUE self) {
16458
16458
 
16459
16459
  SWIGINTERN VALUE
16460
16460
  _wrap_new_MouseState(int argc, VALUE *argv, VALUE self) {
16461
- const char *classname SWIGUNUSED = "OIS::MouseState";
16461
+ const char *classname SWIGUNUSED = "Ois::MouseState";
16462
16462
  OIS::MouseState *result = 0 ;
16463
16463
 
16464
16464
  if ((argc < 0) || (argc > 0)) {
@@ -16791,7 +16791,7 @@ fail:
16791
16791
 
16792
16792
 
16793
16793
  SWIGINTERN VALUE
16794
- _wrap_MouseState_buttonDown(int argc, VALUE *argv, VALUE self) {
16794
+ _wrap_MouseState_button_down(int argc, VALUE *argv, VALUE self) {
16795
16795
  OIS::MouseState *arg1 = (OIS::MouseState *) 0 ;
16796
16796
  OIS::MouseButtonID arg2 ;
16797
16797
  void *argp1 = 0 ;
@@ -16824,7 +16824,7 @@ fail:
16824
16824
 
16825
16825
 
16826
16826
  /*
16827
- Document-method: OIS::MouseState.clear
16827
+ Document-method: Ois::MouseState.clear
16828
16828
 
16829
16829
  call-seq:
16830
16830
  clear
@@ -16884,7 +16884,7 @@ _wrap_new_MouseEvent(int argc, VALUE *argv, VALUE self) {
16884
16884
  int res1 = 0 ;
16885
16885
  void *argp2 ;
16886
16886
  int res2 = 0 ;
16887
- const char *classname SWIGUNUSED = "OIS::MouseEvent";
16887
+ const char *classname SWIGUNUSED = "Ois::MouseEvent";
16888
16888
  OIS::MouseEvent *result = 0 ;
16889
16889
 
16890
16890
  if ((argc < 2) || (argc > 2)) {
@@ -16948,7 +16948,7 @@ free_OIS_MouseListener(OIS::MouseListener *arg1) {
16948
16948
  }
16949
16949
 
16950
16950
  SWIGINTERN VALUE
16951
- _wrap_MouseListener_mouseMoved(int argc, VALUE *argv, VALUE self) {
16951
+ _wrap_MouseListener_mouse_moved(int argc, VALUE *argv, VALUE self) {
16952
16952
  OIS::MouseListener *arg1 = (OIS::MouseListener *) 0 ;
16953
16953
  OIS::MouseEvent *arg2 = 0 ;
16954
16954
  void *argp1 = 0 ;
@@ -16996,7 +16996,7 @@ fail:
16996
16996
 
16997
16997
 
16998
16998
  SWIGINTERN VALUE
16999
- _wrap_MouseListener_mousePressed(int argc, VALUE *argv, VALUE self) {
16999
+ _wrap_MouseListener_mouse_pressed(int argc, VALUE *argv, VALUE self) {
17000
17000
  OIS::MouseListener *arg1 = (OIS::MouseListener *) 0 ;
17001
17001
  OIS::MouseEvent *arg2 = 0 ;
17002
17002
  OIS::MouseButtonID arg3 ;
@@ -17052,7 +17052,7 @@ fail:
17052
17052
 
17053
17053
 
17054
17054
  SWIGINTERN VALUE
17055
- _wrap_MouseListener_mouseReleased(int argc, VALUE *argv, VALUE self) {
17055
+ _wrap_MouseListener_mouse_released(int argc, VALUE *argv, VALUE self) {
17056
17056
  OIS::MouseListener *arg1 = (OIS::MouseListener *) 0 ;
17057
17057
  OIS::MouseEvent *arg2 = 0 ;
17058
17058
  OIS::MouseButtonID arg3 ;
@@ -17127,7 +17127,7 @@ _wrap_MouseListener_allocate(VALUE self) {
17127
17127
  SWIGINTERN VALUE
17128
17128
  _wrap_new_MouseListener(int argc, VALUE *argv, VALUE self) {
17129
17129
  VALUE arg1 = (VALUE) 0 ;
17130
- const char *classname SWIGUNUSED = "OIS::MouseListener";
17130
+ const char *classname SWIGUNUSED = "Ois::MouseListener";
17131
17131
  OIS::MouseListener *result = 0 ;
17132
17132
 
17133
17133
  if ((argc < 0) || (argc > 0)) {
@@ -17182,7 +17182,7 @@ free_OIS_Mouse(OIS::Mouse *arg1) {
17182
17182
  }
17183
17183
 
17184
17184
  SWIGINTERN VALUE
17185
- _wrap_Mouse_setEventCallback(int argc, VALUE *argv, VALUE self) {
17185
+ _wrap_Mouse_set_event_callback(int argc, VALUE *argv, VALUE self) {
17186
17186
  OIS::Mouse *arg1 = (OIS::Mouse *) 0 ;
17187
17187
  OIS::MouseListener *arg2 = (OIS::MouseListener *) 0 ;
17188
17188
  void *argp1 = 0 ;
@@ -17211,7 +17211,7 @@ fail:
17211
17211
 
17212
17212
 
17213
17213
  SWIGINTERN VALUE
17214
- _wrap_Mouse_getEventCallback(int argc, VALUE *argv, VALUE self) {
17214
+ _wrap_Mouse_get_event_callback(int argc, VALUE *argv, VALUE self) {
17215
17215
  OIS::Mouse *arg1 = (OIS::Mouse *) 0 ;
17216
17216
  void *argp1 = 0 ;
17217
17217
  int res1 = 0 ;
@@ -17241,7 +17241,7 @@ fail:
17241
17241
 
17242
17242
 
17243
17243
  SWIGINTERN VALUE
17244
- _wrap_Mouse_getMouseState(int argc, VALUE *argv, VALUE self) {
17244
+ _wrap_Mouse_get_mouse_state(int argc, VALUE *argv, VALUE self) {
17245
17245
  OIS::Mouse *arg1 = (OIS::Mouse *) 0 ;
17246
17246
  void *argp1 = 0 ;
17247
17247
  int res1 = 0 ;
@@ -17267,7 +17267,7 @@ fail:
17267
17267
  swig_class SwigClassInputManager;
17268
17268
 
17269
17269
  SWIGINTERN VALUE
17270
- _wrap_InputManager_getVersionNumber(int argc, VALUE *argv, VALUE self) {
17270
+ _wrap_InputManager_get_version_number(int argc, VALUE *argv, VALUE self) {
17271
17271
  unsigned int result;
17272
17272
  VALUE vresult = Qnil;
17273
17273
 
@@ -17283,7 +17283,7 @@ fail:
17283
17283
 
17284
17284
 
17285
17285
  SWIGINTERN VALUE
17286
- _wrap_InputManager_getVersionName(int argc, VALUE *argv, VALUE self) {
17286
+ _wrap_InputManager_get_version_name(int argc, VALUE *argv, VALUE self) {
17287
17287
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17288
17288
  void *argp1 = 0 ;
17289
17289
  int res1 = 0 ;
@@ -17307,7 +17307,7 @@ fail:
17307
17307
 
17308
17308
 
17309
17309
  SWIGINTERN VALUE
17310
- _wrap_InputManager_createInputSystem__SWIG_0(int argc, VALUE *argv, VALUE self) {
17310
+ _wrap_InputManager_create_input_system__SWIG_0(int argc, VALUE *argv, VALUE self) {
17311
17311
  std::size_t arg1 ;
17312
17312
  size_t val1 ;
17313
17313
  int ecode1 = 0 ;
@@ -17331,7 +17331,7 @@ fail:
17331
17331
 
17332
17332
 
17333
17333
  SWIGINTERN VALUE
17334
- _wrap_InputManager_createInputSystem__SWIG_1(int argc, VALUE *argv, VALUE self) {
17334
+ _wrap_InputManager_create_input_system__SWIG_1(int argc, VALUE *argv, VALUE self) {
17335
17335
  OIS::ParamList *arg1 = 0 ;
17336
17336
  void *argp1 = 0 ;
17337
17337
  int res1 = 0 ;
@@ -17357,7 +17357,7 @@ fail:
17357
17357
  }
17358
17358
 
17359
17359
 
17360
- SWIGINTERN VALUE _wrap_InputManager_createInputSystem(int nargs, VALUE *args, VALUE self) {
17360
+ SWIGINTERN VALUE _wrap_InputManager_create_input_system(int nargs, VALUE *args, VALUE self) {
17361
17361
  int argc;
17362
17362
  VALUE argv[1];
17363
17363
  int ii;
@@ -17373,7 +17373,7 @@ SWIGINTERN VALUE _wrap_InputManager_createInputSystem(int nargs, VALUE *args, VA
17373
17373
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_std__multimapT_std__string_std__string_std__lessT_std__string_t_std__allocatorT_std__pairT_std__string_const_std__string_t_t_t, 0);
17374
17374
  _v = SWIG_CheckState(res);
17375
17375
  if (_v) {
17376
- return _wrap_InputManager_createInputSystem__SWIG_1(nargs, args, self);
17376
+ return _wrap_InputManager_create_input_system__SWIG_1(nargs, args, self);
17377
17377
  }
17378
17378
  }
17379
17379
  if (argc == 1) {
@@ -17383,21 +17383,21 @@ SWIGINTERN VALUE _wrap_InputManager_createInputSystem(int nargs, VALUE *args, VA
17383
17383
  _v = SWIG_CheckState(res);
17384
17384
  }
17385
17385
  if (_v) {
17386
- return _wrap_InputManager_createInputSystem__SWIG_0(nargs, args, self);
17386
+ return _wrap_InputManager_create_input_system__SWIG_0(nargs, args, self);
17387
17387
  }
17388
17388
  }
17389
17389
 
17390
17390
  fail:
17391
- Ruby_Format_OverloadedError( argc, 1, "InputManager.createInputSystem",
17392
- " OIS::InputManager * InputManager.createInputSystem(std::size_t winHandle)\n"
17393
- " OIS::InputManager * InputManager.createInputSystem(OIS::ParamList &paramList)\n");
17391
+ Ruby_Format_OverloadedError( argc, 1, "InputManager.create_input_system",
17392
+ " OIS::InputManager * InputManager.create_input_system(std::size_t winHandle)\n"
17393
+ " OIS::InputManager * InputManager.create_input_system(OIS::ParamList &paramList)\n");
17394
17394
 
17395
17395
  return Qnil;
17396
17396
  }
17397
17397
 
17398
17398
 
17399
17399
  SWIGINTERN VALUE
17400
- _wrap_InputManager_destroyInputSystem(int argc, VALUE *argv, VALUE self) {
17400
+ _wrap_InputManager_destroy_input_system(int argc, VALUE *argv, VALUE self) {
17401
17401
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17402
17402
  void *argp1 = 0 ;
17403
17403
  int res1 = 0 ;
@@ -17418,7 +17418,7 @@ fail:
17418
17418
 
17419
17419
 
17420
17420
  SWIGINTERN VALUE
17421
- _wrap_InputManager_inputSystemName(int argc, VALUE *argv, VALUE self) {
17421
+ _wrap_InputManager_input_system_name(int argc, VALUE *argv, VALUE self) {
17422
17422
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17423
17423
  void *argp1 = 0 ;
17424
17424
  int res1 = 0 ;
@@ -17442,7 +17442,7 @@ fail:
17442
17442
 
17443
17443
 
17444
17444
  SWIGINTERN VALUE
17445
- _wrap_InputManager_getNumberOfDevices(int argc, VALUE *argv, VALUE self) {
17445
+ _wrap_InputManager_get_number_of_devices(int argc, VALUE *argv, VALUE self) {
17446
17446
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17447
17447
  OIS::Type arg2 ;
17448
17448
  void *argp1 = 0 ;
@@ -17474,7 +17474,7 @@ fail:
17474
17474
 
17475
17475
 
17476
17476
  SWIGINTERN VALUE
17477
- _wrap_InputManager_listFreeDevices(int argc, VALUE *argv, VALUE self) {
17477
+ _wrap_InputManager_list_free_devices(int argc, VALUE *argv, VALUE self) {
17478
17478
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17479
17479
  void *argp1 = 0 ;
17480
17480
  int res1 = 0 ;
@@ -17498,7 +17498,7 @@ fail:
17498
17498
 
17499
17499
 
17500
17500
  SWIGINTERN VALUE
17501
- _wrap_InputManager_createInputObject__SWIG_0(int argc, VALUE *argv, VALUE self) {
17501
+ _wrap_InputManager_create_input_object__SWIG_0(int argc, VALUE *argv, VALUE self) {
17502
17502
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17503
17503
  OIS::Type arg2 ;
17504
17504
  bool arg3 ;
@@ -17553,7 +17553,7 @@ fail:
17553
17553
 
17554
17554
 
17555
17555
  SWIGINTERN VALUE
17556
- _wrap_InputManager_createInputObject__SWIG_1(int argc, VALUE *argv, VALUE self) {
17556
+ _wrap_InputManager_create_input_object__SWIG_1(int argc, VALUE *argv, VALUE self) {
17557
17557
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17558
17558
  OIS::Type arg2 ;
17559
17559
  bool arg3 ;
@@ -17592,7 +17592,7 @@ fail:
17592
17592
  }
17593
17593
 
17594
17594
 
17595
- SWIGINTERN VALUE _wrap_InputManager_createInputObject(int nargs, VALUE *args, VALUE self) {
17595
+ SWIGINTERN VALUE _wrap_InputManager_create_input_object(int nargs, VALUE *args, VALUE self) {
17596
17596
  int argc;
17597
17597
  VALUE argv[5];
17598
17598
  int ii;
@@ -17619,7 +17619,7 @@ SWIGINTERN VALUE _wrap_InputManager_createInputObject(int nargs, VALUE *args, VA
17619
17619
  _v = SWIG_CheckState(res);
17620
17620
  }
17621
17621
  if (_v) {
17622
- return _wrap_InputManager_createInputObject__SWIG_1(nargs, args, self);
17622
+ return _wrap_InputManager_create_input_object__SWIG_1(nargs, args, self);
17623
17623
  }
17624
17624
  }
17625
17625
  }
@@ -17643,7 +17643,7 @@ SWIGINTERN VALUE _wrap_InputManager_createInputObject(int nargs, VALUE *args, VA
17643
17643
  int res = SWIG_AsPtr_std_string(argv[3], (std::string**)(0));
17644
17644
  _v = SWIG_CheckState(res);
17645
17645
  if (_v) {
17646
- return _wrap_InputManager_createInputObject__SWIG_0(nargs, args, self);
17646
+ return _wrap_InputManager_create_input_object__SWIG_0(nargs, args, self);
17647
17647
  }
17648
17648
  }
17649
17649
  }
@@ -17651,16 +17651,16 @@ SWIGINTERN VALUE _wrap_InputManager_createInputObject(int nargs, VALUE *args, VA
17651
17651
  }
17652
17652
 
17653
17653
  fail:
17654
- Ruby_Format_OverloadedError( argc, 5, "InputManager.createInputObject",
17655
- " OIS::Object * InputManager.createInputObject(OIS::Type iType, bool bufferMode, std::string const &vendor)\n"
17656
- " OIS::Object * InputManager.createInputObject(OIS::Type iType, bool bufferMode)\n");
17654
+ Ruby_Format_OverloadedError( argc, 5, "InputManager.create_input_object",
17655
+ " OIS::Object * InputManager.create_input_object(OIS::Type iType, bool bufferMode, std::string const &vendor)\n"
17656
+ " OIS::Object * InputManager.create_input_object(OIS::Type iType, bool bufferMode)\n");
17657
17657
 
17658
17658
  return Qnil;
17659
17659
  }
17660
17660
 
17661
17661
 
17662
17662
  SWIGINTERN VALUE
17663
- _wrap_InputManager_destroyInputObject(int argc, VALUE *argv, VALUE self) {
17663
+ _wrap_InputManager_destroy_input_object(int argc, VALUE *argv, VALUE self) {
17664
17664
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17665
17665
  OIS::Object *arg2 = (OIS::Object *) 0 ;
17666
17666
  void *argp1 = 0 ;
@@ -17689,7 +17689,7 @@ fail:
17689
17689
 
17690
17690
 
17691
17691
  SWIGINTERN VALUE
17692
- _wrap_InputManager_addFactoryCreator(int argc, VALUE *argv, VALUE self) {
17692
+ _wrap_InputManager_add_factory_creator(int argc, VALUE *argv, VALUE self) {
17693
17693
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17694
17694
  OIS::FactoryCreator *arg2 = (OIS::FactoryCreator *) 0 ;
17695
17695
  void *argp1 = 0 ;
@@ -17718,7 +17718,7 @@ fail:
17718
17718
 
17719
17719
 
17720
17720
  SWIGINTERN VALUE
17721
- _wrap_InputManager_removeFactoryCreator(int argc, VALUE *argv, VALUE self) {
17721
+ _wrap_InputManager_remove_factory_creator(int argc, VALUE *argv, VALUE self) {
17722
17722
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17723
17723
  OIS::FactoryCreator *arg2 = (OIS::FactoryCreator *) 0 ;
17724
17724
  void *argp1 = 0 ;
@@ -17747,7 +17747,7 @@ fail:
17747
17747
 
17748
17748
 
17749
17749
  SWIGINTERN VALUE
17750
- _wrap_InputManager_enableAddOnFactory(int argc, VALUE *argv, VALUE self) {
17750
+ _wrap_InputManager_enable_add_on_factory(int argc, VALUE *argv, VALUE self) {
17751
17751
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17752
17752
  OIS::InputManager::AddOnFactories arg2 ;
17753
17753
  void *argp1 = 0 ;
@@ -17776,7 +17776,7 @@ fail:
17776
17776
 
17777
17777
 
17778
17778
  SWIGINTERN VALUE
17779
- _wrap_InputManager_createKeyboard__SWIG_0(int argc, VALUE *argv, VALUE self) {
17779
+ _wrap_InputManager_create_keyboard__SWIG_0(int argc, VALUE *argv, VALUE self) {
17780
17780
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17781
17781
  bool arg2 ;
17782
17782
  std::string *arg3 = 0 ;
@@ -17823,7 +17823,7 @@ fail:
17823
17823
 
17824
17824
 
17825
17825
  SWIGINTERN VALUE
17826
- _wrap_InputManager_createKeyboard__SWIG_1(int argc, VALUE *argv, VALUE self) {
17826
+ _wrap_InputManager_create_keyboard__SWIG_1(int argc, VALUE *argv, VALUE self) {
17827
17827
  OIS::InputManager *arg1 = (OIS::InputManager *) 0 ;
17828
17828
  bool arg2 ;
17829
17829
  void *argp1 = 0 ;
@@ -17854,7 +17854,7 @@ fail:
17854
17854
  }
17855
17855
 
17856
17856
 
17857
- SWIGINTERN VALUE _wrap_InputManager_createKeyboard(int nargs, VALUE *args, VALUE self) {
17857
+ SWIGINTERN VALUE _wrap_InputManager_create_keyboard(int nargs, VALUE *args, VALUE self) {
17858
17858
  int argc;
17859
17859
  VALUE argv[4];
17860
17860
  int ii;
@@ -17876,7 +17876,7 @@ SWIGINTERN VALUE _wrap_InputManager_createKeyboard(int nargs, VALUE *args, VALUE
17876
17876
  _v = SWIG_CheckState(res);
17877
17877
  }
17878
17878
  if (_v) {
17879
- return _wrap_InputManager_createKeyboard__SWIG_1(nargs, args, self);
17879
+ return _wrap_InputManager_create_keyboard__SWIG_1(nargs, args, self);
17880
17880
  }
17881
17881
  }
17882
17882
  }
@@ -17894,16 +17894,16 @@ SWIGINTERN VALUE _wrap_InputManager_createKeyboard(int nargs, VALUE *args, VALUE
17894
17894
  int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0));
17895
17895
  _v = SWIG_CheckState(res);
17896
17896
  if (_v) {
17897
- return _wrap_InputManager_createKeyboard__SWIG_0(nargs, args, self);
17897
+ return _wrap_InputManager_create_keyboard__SWIG_0(nargs, args, self);
17898
17898
  }
17899
17899
  }
17900
17900
  }
17901
17901
  }
17902
17902
 
17903
17903
  fail:
17904
- Ruby_Format_OverloadedError( argc, 4, "createKeyboard",
17905
- " OIS::Keyboard * createKeyboard(bool bufferMode, std::string const &vendor)\n"
17906
- " OIS::Keyboard * createKeyboard(bool bufferMode)\n");
17904
+ Ruby_Format_OverloadedError( argc, 4, "create_keyboard",
17905
+ " OIS::Keyboard * create_keyboard(bool bufferMode, std::string const &vendor)\n"
17906
+ " OIS::Keyboard * create_keyboard(bool bufferMode)\n");
17907
17907
 
17908
17908
  return Qnil;
17909
17909
  }
@@ -18483,11 +18483,11 @@ SWIG_PropagateClientData(void) {
18483
18483
  #ifdef __cplusplus
18484
18484
  extern "C"
18485
18485
  #endif
18486
- SWIGEXPORT void Init_OIS(void) {
18486
+ SWIGEXPORT void Init_ois(void) {
18487
18487
  size_t i;
18488
18488
 
18489
18489
  SWIG_InitRuntime();
18490
- mOIS = rb_define_module("OIS");
18490
+ mOis = rb_define_module("Ois");
18491
18491
 
18492
18492
  SWIG_InitializeModule(0);
18493
18493
  for (i = 0; i < swig_module.size; i++) {
@@ -18496,18 +18496,18 @@ SWIGEXPORT void Init_OIS(void) {
18496
18496
 
18497
18497
  SWIG_RubyInitializeTrackings();
18498
18498
 
18499
- SwigClassGC_VALUE.klass = rb_define_class_under(mOIS, "GC_VALUE", rb_cObject);
18500
- SWIG_TypeClientData(SWIGTYPE_p_swig__GC_VALUE, (void *) &SwigClassGC_VALUE);
18501
- rb_undef_alloc_func(SwigClassGC_VALUE.klass);
18502
- rb_define_method(SwigClassGC_VALUE.klass, "inspect", VALUEFUNC(_wrap_GC_VALUE_inspect), -1);
18503
- rb_define_method(SwigClassGC_VALUE.klass, "to_s", VALUEFUNC(_wrap_GC_VALUE_to_s), -1);
18504
- SwigClassGC_VALUE.mark = 0;
18505
- SwigClassGC_VALUE.trackObjects = 0;
18499
+ SwigClassGCVALUE.klass = rb_define_class_under(mOis, "GCVALUE", rb_cObject);
18500
+ SWIG_TypeClientData(SWIGTYPE_p_swig__GC_VALUE, (void *) &SwigClassGCVALUE);
18501
+ rb_undef_alloc_func(SwigClassGCVALUE.klass);
18502
+ rb_define_method(SwigClassGCVALUE.klass, "inspect", VALUEFUNC(_wrap_GCVALUE_inspect), -1);
18503
+ rb_define_method(SwigClassGCVALUE.klass, "to_s", VALUEFUNC(_wrap_GCVALUE_to_s), -1);
18504
+ SwigClassGCVALUE.mark = 0;
18505
+ SwigClassGCVALUE.trackObjects = 0;
18506
18506
 
18507
18507
  swig::GC_VALUE::initialize();
18508
18508
 
18509
18509
 
18510
- SwigClassConstIterator.klass = rb_define_class_under(mOIS, "ConstIterator", rb_cObject);
18510
+ SwigClassConstIterator.klass = rb_define_class_under(mOis, "ConstIterator", rb_cObject);
18511
18511
  SWIG_TypeClientData(SWIGTYPE_p_swig__ConstIterator, (void *) &SwigClassConstIterator);
18512
18512
  rb_undef_alloc_func(SwigClassConstIterator.klass);
18513
18513
  rb_define_method(SwigClassConstIterator.klass, "value", VALUEFUNC(_wrap_ConstIterator_value), -1);
@@ -18523,7 +18523,7 @@ SWIGEXPORT void Init_OIS(void) {
18523
18523
  SwigClassConstIterator.destroy = (void (*)(void *)) free_swig_ConstIterator;
18524
18524
  SwigClassConstIterator.trackObjects = 0;
18525
18525
 
18526
- SwigClassIterator.klass = rb_define_class_under(mOIS, "Iterator", ((swig_class *) SWIGTYPE_p_swig__ConstIterator->clientdata)->klass);
18526
+ SwigClassIterator.klass = rb_define_class_under(mOis, "Iterator", ((swig_class *) SWIGTYPE_p_swig__ConstIterator->clientdata)->klass);
18527
18527
  SWIG_TypeClientData(SWIGTYPE_p_swig__Iterator, (void *) &SwigClassIterator);
18528
18528
  rb_undef_alloc_func(SwigClassIterator.klass);
18529
18529
  rb_define_method(SwigClassIterator.klass, "value=", VALUEFUNC(_wrap_Iterator_valuee___), -1);
@@ -18539,7 +18539,7 @@ SWIGEXPORT void Init_OIS(void) {
18539
18539
  SwigClassIterator.destroy = (void (*)(void *)) free_swig_Iterator;
18540
18540
  SwigClassIterator.trackObjects = 0;
18541
18541
 
18542
- SwigClassPairStrings.klass = rb_define_class_under(mOIS, "PairStrings", rb_cObject);
18542
+ SwigClassPairStrings.klass = rb_define_class_under(mOis, "PairStrings", rb_cObject);
18543
18543
  SWIG_TypeClientData(SWIGTYPE_p_std__pairT_std__string_std__string_t, (void *) &SwigClassPairStrings);
18544
18544
  rb_define_alloc_func(SwigClassPairStrings.klass, _wrap_PairStrings_allocate);
18545
18545
  rb_define_method(SwigClassPairStrings.klass, "initialize", VALUEFUNC(_wrap_new_PairStrings), -1);
@@ -18555,14 +18555,14 @@ SWIGEXPORT void Init_OIS(void) {
18555
18555
  SwigClassPairStrings.destroy = (void (*)(void *)) free_std_pair_Sl_std_string_Sc_std_string_Sg_;
18556
18556
  SwigClassPairStrings.trackObjects = 0;
18557
18557
 
18558
- SwigClassMapStrings.klass = rb_define_class_under(mOIS, "MapStrings", rb_cObject);
18558
+ SwigClassMapStrings.klass = rb_define_class_under(mOis, "MapStrings", rb_cObject);
18559
18559
  SWIG_TypeClientData(SWIGTYPE_p_std__mapT_std__string_std__string_std__lessT_std__string_t_std__allocatorT_std__pairT_std__string_const_std__string_t_t_t, (void *) &SwigClassMapStrings);
18560
18560
  rb_include_module(SwigClassMapStrings.klass, rb_eval_string("Enumerable"));
18561
18561
  rb_define_alloc_func(SwigClassMapStrings.klass, _wrap_MapStrings_allocate);
18562
18562
  rb_define_method(SwigClassMapStrings.klass, "initialize", VALUEFUNC(_wrap_new_MapStrings), -1);
18563
18563
  rb_define_method(SwigClassMapStrings.klass, "dup", VALUEFUNC(_wrap_MapStrings_dup), -1);
18564
- rb_define_method(SwigClassMapStrings.klass, "delete", VALUEFUNC(_wrap_MapStrings_delete), -1);
18565
- rb_define_method(SwigClassMapStrings.klass, "has_key?", VALUEFUNC(_wrap_MapStrings_has_keyq___), -1);
18564
+ rb_define_method(SwigClassMapStrings.klass, "__delete__", VALUEFUNC(_wrap_MapStrings___delete__), -1);
18565
+ rb_define_method(SwigClassMapStrings.klass, "has_key", VALUEFUNC(_wrap_MapStrings_has_key), -1);
18566
18566
  rb_define_method(SwigClassMapStrings.klass, "keys", VALUEFUNC(_wrap_MapStrings_keys), -1);
18567
18567
  rb_define_method(SwigClassMapStrings.klass, "each", VALUEFUNC(_wrap_MapStrings_each), -1);
18568
18568
  rb_define_method(SwigClassMapStrings.klass, "select", VALUEFUNC(_wrap_MapStrings_select), -1);
@@ -18571,7 +18571,7 @@ SWIGEXPORT void Init_OIS(void) {
18571
18571
  rb_define_method(SwigClassMapStrings.klass, "values", VALUEFUNC(_wrap_MapStrings_values), -1);
18572
18572
  rb_define_method(SwigClassMapStrings.klass, "each_value", VALUEFUNC(_wrap_MapStrings_each_value), -1);
18573
18573
  rb_define_method(SwigClassMapStrings.klass, "entries", VALUEFUNC(_wrap_MapStrings_entries), -1);
18574
- rb_define_method(SwigClassMapStrings.klass, "include?", VALUEFUNC(_wrap_MapStrings_includeq___), -1);
18574
+ rb_define_method(SwigClassMapStrings.klass, "__contains__", VALUEFUNC(_wrap_MapStrings___contains__), -1);
18575
18575
  rb_define_method(SwigClassMapStrings.klass, "key_iterator", VALUEFUNC(_wrap_MapStrings_key_iterator), -1);
18576
18576
  rb_define_method(SwigClassMapStrings.klass, "value_iterator", VALUEFUNC(_wrap_MapStrings_value_iterator), -1);
18577
18577
  rb_define_method(SwigClassMapStrings.klass, "[]", VALUEFUNC(_wrap_MapStrings___getitem__), -1);
@@ -18579,7 +18579,7 @@ SWIGEXPORT void Init_OIS(void) {
18579
18579
  rb_define_method(SwigClassMapStrings.klass, "inspect", VALUEFUNC(_wrap_MapStrings_inspect), -1);
18580
18580
  rb_define_method(SwigClassMapStrings.klass, "to_a", VALUEFUNC(_wrap_MapStrings_to_a), -1);
18581
18581
  rb_define_method(SwigClassMapStrings.klass, "to_s", VALUEFUNC(_wrap_MapStrings_to_s), -1);
18582
- rb_define_method(SwigClassMapStrings.klass, "empty?", VALUEFUNC(_wrap_MapStrings_emptyq___), -1);
18582
+ rb_define_method(SwigClassMapStrings.klass, "empty", VALUEFUNC(_wrap_MapStrings_empty), -1);
18583
18583
  rb_define_method(SwigClassMapStrings.klass, "size", VALUEFUNC(_wrap_MapStrings_size), -1);
18584
18584
  rb_define_method(SwigClassMapStrings.klass, "clear", VALUEFUNC(_wrap_MapStrings_clear), -1);
18585
18585
  rb_define_method(SwigClassMapStrings.klass, "swap", VALUEFUNC(_wrap_MapStrings_swap), -1);
@@ -18597,14 +18597,14 @@ SWIGEXPORT void Init_OIS(void) {
18597
18597
  SwigClassMapStrings.destroy = (void (*)(void *)) free_std_map_Sl_std_string_Sc_std_string_Sg_;
18598
18598
  SwigClassMapStrings.trackObjects = 0;
18599
18599
 
18600
- SwigClassParamList.klass = rb_define_class_under(mOIS, "ParamList", rb_cObject);
18600
+ SwigClassParamList.klass = rb_define_class_under(mOis, "ParamList", rb_cObject);
18601
18601
  SWIG_TypeClientData(SWIGTYPE_p_std__multimapT_std__string_std__string_std__lessT_std__string_t_std__allocatorT_std__pairT_std__string_const_std__string_t_t_t, (void *) &SwigClassParamList);
18602
18602
  rb_include_module(SwigClassParamList.klass, rb_eval_string("Enumerable"));
18603
18603
  rb_define_alloc_func(SwigClassParamList.klass, _wrap_ParamList_allocate);
18604
18604
  rb_define_method(SwigClassParamList.klass, "initialize", VALUEFUNC(_wrap_new_ParamList), -1);
18605
18605
  rb_define_method(SwigClassParamList.klass, "dup", VALUEFUNC(_wrap_ParamList_dup), -1);
18606
- rb_define_method(SwigClassParamList.klass, "delete", VALUEFUNC(_wrap_ParamList_delete), -1);
18607
- rb_define_method(SwigClassParamList.klass, "has_key?", VALUEFUNC(_wrap_ParamList_has_keyq___), -1);
18606
+ rb_define_method(SwigClassParamList.klass, "__delete__", VALUEFUNC(_wrap_ParamList___delete__), -1);
18607
+ rb_define_method(SwigClassParamList.klass, "has_key", VALUEFUNC(_wrap_ParamList_has_key), -1);
18608
18608
  rb_define_method(SwigClassParamList.klass, "keys", VALUEFUNC(_wrap_ParamList_keys), -1);
18609
18609
  rb_define_method(SwigClassParamList.klass, "each", VALUEFUNC(_wrap_ParamList_each), -1);
18610
18610
  rb_define_method(SwigClassParamList.klass, "select", VALUEFUNC(_wrap_ParamList_select), -1);
@@ -18613,7 +18613,7 @@ SWIGEXPORT void Init_OIS(void) {
18613
18613
  rb_define_method(SwigClassParamList.klass, "values", VALUEFUNC(_wrap_ParamList_values), -1);
18614
18614
  rb_define_method(SwigClassParamList.klass, "each_value", VALUEFUNC(_wrap_ParamList_each_value), -1);
18615
18615
  rb_define_method(SwigClassParamList.klass, "entries", VALUEFUNC(_wrap_ParamList_entries), -1);
18616
- rb_define_method(SwigClassParamList.klass, "include?", VALUEFUNC(_wrap_ParamList_includeq___), -1);
18616
+ rb_define_method(SwigClassParamList.klass, "__contains__", VALUEFUNC(_wrap_ParamList___contains__), -1);
18617
18617
  rb_define_method(SwigClassParamList.klass, "key_iterator", VALUEFUNC(_wrap_ParamList_key_iterator), -1);
18618
18618
  rb_define_method(SwigClassParamList.klass, "value_iterator", VALUEFUNC(_wrap_ParamList_value_iterator), -1);
18619
18619
  rb_define_method(SwigClassParamList.klass, "[]", VALUEFUNC(_wrap_ParamList___getitem__), -1);
@@ -18621,7 +18621,7 @@ SWIGEXPORT void Init_OIS(void) {
18621
18621
  rb_define_method(SwigClassParamList.klass, "inspect", VALUEFUNC(_wrap_ParamList_inspect), -1);
18622
18622
  rb_define_method(SwigClassParamList.klass, "to_a", VALUEFUNC(_wrap_ParamList_to_a), -1);
18623
18623
  rb_define_method(SwigClassParamList.klass, "to_s", VALUEFUNC(_wrap_ParamList_to_s), -1);
18624
- rb_define_method(SwigClassParamList.klass, "empty?", VALUEFUNC(_wrap_ParamList_emptyq___), -1);
18624
+ rb_define_method(SwigClassParamList.klass, "empty", VALUEFUNC(_wrap_ParamList_empty), -1);
18625
18625
  rb_define_method(SwigClassParamList.klass, "size", VALUEFUNC(_wrap_ParamList_size), -1);
18626
18626
  rb_define_method(SwigClassParamList.klass, "clear", VALUEFUNC(_wrap_ParamList_clear), -1);
18627
18627
  rb_define_method(SwigClassParamList.klass, "swap", VALUEFUNC(_wrap_ParamList_swap), -1);
@@ -18639,25 +18639,25 @@ SWIGEXPORT void Init_OIS(void) {
18639
18639
  SwigClassParamList.mark = 0;
18640
18640
  SwigClassParamList.destroy = (void (*)(void *)) free_std_multimap_Sl_std_string_Sc_std_string_Sg_;
18641
18641
  SwigClassParamList.trackObjects = 0;
18642
- rb_define_const(mOIS, "OIS_VERSION_MAJOR", SWIG_From_int(static_cast< int >(1)));
18643
- rb_define_const(mOIS, "OIS_VERSION_MINOR", SWIG_From_int(static_cast< int >(3)));
18644
- rb_define_const(mOIS, "OIS_VERSION_PATCH", SWIG_From_int(static_cast< int >(0)));
18645
- rb_define_const(mOIS, "OIS_VERSION_NAME", SWIG_FromCharPtr("1.3.0"));
18646
- rb_define_const(mOIS, "OIS_VERSION", SWIG_From_int(static_cast< int >(((1 << 16)|(3 << 8)|0))));
18647
- rb_define_const(mOIS, "OISUnknown", SWIG_From_int(static_cast< int >(OIS::OISUnknown)));
18648
- rb_define_const(mOIS, "OISKeyboard", SWIG_From_int(static_cast< int >(OIS::OISKeyboard)));
18649
- rb_define_const(mOIS, "OISMouse", SWIG_From_int(static_cast< int >(OIS::OISMouse)));
18650
- rb_define_const(mOIS, "OISJoyStick", SWIG_From_int(static_cast< int >(OIS::OISJoyStick)));
18651
- rb_define_const(mOIS, "OISTablet", SWIG_From_int(static_cast< int >(OIS::OISTablet)));
18652
- rb_define_const(mOIS, "OISMultiTouch", SWIG_From_int(static_cast< int >(OIS::OISMultiTouch)));
18653
- rb_define_const(mOIS, "OIS_Unknown", SWIG_From_int(static_cast< int >(OIS::OIS_Unknown)));
18654
- rb_define_const(mOIS, "OIS_Button", SWIG_From_int(static_cast< int >(OIS::OIS_Button)));
18655
- rb_define_const(mOIS, "OIS_Axis", SWIG_From_int(static_cast< int >(OIS::OIS_Axis)));
18656
- rb_define_const(mOIS, "OIS_Slider", SWIG_From_int(static_cast< int >(OIS::OIS_Slider)));
18657
- rb_define_const(mOIS, "OIS_POV", SWIG_From_int(static_cast< int >(OIS::OIS_POV)));
18658
- rb_define_const(mOIS, "OIS_Vector3", SWIG_From_int(static_cast< int >(OIS::OIS_Vector3)));
18659
-
18660
- SwigClassComponent.klass = rb_define_class_under(mOIS, "Component", rb_cObject);
18642
+ rb_define_const(mOis, "OIS_VERSION_MAJOR", SWIG_From_int(static_cast< int >(1)));
18643
+ rb_define_const(mOis, "OIS_VERSION_MINOR", SWIG_From_int(static_cast< int >(3)));
18644
+ rb_define_const(mOis, "OIS_VERSION_PATCH", SWIG_From_int(static_cast< int >(0)));
18645
+ rb_define_const(mOis, "OIS_VERSION_NAME", SWIG_FromCharPtr("1.3.0"));
18646
+ rb_define_const(mOis, "OIS_VERSION", SWIG_From_int(static_cast< int >(((1 << 16)|(3 << 8)|0))));
18647
+ rb_define_const(mOis, "OISUnknown", SWIG_From_int(static_cast< int >(OIS::OISUnknown)));
18648
+ rb_define_const(mOis, "OISKeyboard", SWIG_From_int(static_cast< int >(OIS::OISKeyboard)));
18649
+ rb_define_const(mOis, "OISMouse", SWIG_From_int(static_cast< int >(OIS::OISMouse)));
18650
+ rb_define_const(mOis, "OISJoyStick", SWIG_From_int(static_cast< int >(OIS::OISJoyStick)));
18651
+ rb_define_const(mOis, "OISTablet", SWIG_From_int(static_cast< int >(OIS::OISTablet)));
18652
+ rb_define_const(mOis, "OISMultiTouch", SWIG_From_int(static_cast< int >(OIS::OISMultiTouch)));
18653
+ rb_define_const(mOis, "OIS_Unknown", SWIG_From_int(static_cast< int >(OIS::OIS_Unknown)));
18654
+ rb_define_const(mOis, "OIS_Button", SWIG_From_int(static_cast< int >(OIS::OIS_Button)));
18655
+ rb_define_const(mOis, "OIS_Axis", SWIG_From_int(static_cast< int >(OIS::OIS_Axis)));
18656
+ rb_define_const(mOis, "OIS_Slider", SWIG_From_int(static_cast< int >(OIS::OIS_Slider)));
18657
+ rb_define_const(mOis, "OIS_POV", SWIG_From_int(static_cast< int >(OIS::OIS_POV)));
18658
+ rb_define_const(mOis, "OIS_Vector3", SWIG_From_int(static_cast< int >(OIS::OIS_Vector3)));
18659
+
18660
+ SwigClassComponent.klass = rb_define_class_under(mOis, "Component", rb_cObject);
18661
18661
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Component, (void *) &SwigClassComponent);
18662
18662
  rb_define_alloc_func(SwigClassComponent.klass, _wrap_Component_allocate);
18663
18663
  rb_define_method(SwigClassComponent.klass, "initialize", VALUEFUNC(_wrap_new_Component), -1);
@@ -18667,7 +18667,7 @@ SWIGEXPORT void Init_OIS(void) {
18667
18667
  SwigClassComponent.destroy = (void (*)(void *)) free_OIS_Component;
18668
18668
  SwigClassComponent.trackObjects = 0;
18669
18669
 
18670
- SwigClassButton.klass = rb_define_class_under(mOIS, "Button", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18670
+ SwigClassButton.klass = rb_define_class_under(mOis, "Button", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18671
18671
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Button, (void *) &SwigClassButton);
18672
18672
  rb_define_alloc_func(SwigClassButton.klass, _wrap_Button_allocate);
18673
18673
  rb_define_method(SwigClassButton.klass, "initialize", VALUEFUNC(_wrap_new_Button), -1);
@@ -18677,7 +18677,7 @@ SWIGEXPORT void Init_OIS(void) {
18677
18677
  SwigClassButton.destroy = (void (*)(void *)) free_OIS_Button;
18678
18678
  SwigClassButton.trackObjects = 0;
18679
18679
 
18680
- SwigClassAxis.klass = rb_define_class_under(mOIS, "Axis", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18680
+ SwigClassAxis.klass = rb_define_class_under(mOis, "Axis", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18681
18681
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Axis, (void *) &SwigClassAxis);
18682
18682
  rb_define_alloc_func(SwigClassAxis.klass, _wrap_Axis_allocate);
18683
18683
  rb_define_method(SwigClassAxis.klass, "initialize", VALUEFUNC(_wrap_new_Axis), -1);
@@ -18692,7 +18692,7 @@ SWIGEXPORT void Init_OIS(void) {
18692
18692
  SwigClassAxis.destroy = (void (*)(void *)) free_OIS_Axis;
18693
18693
  SwigClassAxis.trackObjects = 0;
18694
18694
 
18695
- SwigClassOisVector3.klass = rb_define_class_under(mOIS, "OisVector3", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18695
+ SwigClassOisVector3.klass = rb_define_class_under(mOis, "OisVector3", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18696
18696
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Vector3, (void *) &SwigClassOisVector3);
18697
18697
  rb_define_alloc_func(SwigClassOisVector3.klass, _wrap_OisVector3_allocate);
18698
18698
  rb_define_method(SwigClassOisVector3.klass, "initialize", VALUEFUNC(_wrap_new_OisVector3), -1);
@@ -18707,29 +18707,29 @@ SWIGEXPORT void Init_OIS(void) {
18707
18707
  SwigClassOisVector3.destroy = (void (*)(void *)) free_OIS_Vector3;
18708
18708
  SwigClassOisVector3.trackObjects = 0;
18709
18709
 
18710
- SwigClassFactoryCreator.klass = rb_define_class_under(mOIS, "FactoryCreator", rb_cObject);
18710
+ SwigClassFactoryCreator.klass = rb_define_class_under(mOis, "FactoryCreator", rb_cObject);
18711
18711
  SWIG_TypeClientData(SWIGTYPE_p_OIS__FactoryCreator, (void *) &SwigClassFactoryCreator);
18712
18712
  rb_undef_alloc_func(SwigClassFactoryCreator.klass);
18713
- rb_define_method(SwigClassFactoryCreator.klass, "freeDeviceList", VALUEFUNC(_wrap_FactoryCreator_freeDeviceList), -1);
18714
- rb_define_method(SwigClassFactoryCreator.klass, "totalDevices", VALUEFUNC(_wrap_FactoryCreator_totalDevices), -1);
18715
- rb_define_method(SwigClassFactoryCreator.klass, "freeDevices", VALUEFUNC(_wrap_FactoryCreator_freeDevices), -1);
18716
- rb_define_method(SwigClassFactoryCreator.klass, "vendorExist", VALUEFUNC(_wrap_FactoryCreator_vendorExist), -1);
18717
- rb_define_method(SwigClassFactoryCreator.klass, "createObject", VALUEFUNC(_wrap_FactoryCreator_createObject), -1);
18718
- rb_define_method(SwigClassFactoryCreator.klass, "destroyObject", VALUEFUNC(_wrap_FactoryCreator_destroyObject), -1);
18713
+ rb_define_method(SwigClassFactoryCreator.klass, "free_device_list", VALUEFUNC(_wrap_FactoryCreator_free_device_list), -1);
18714
+ rb_define_method(SwigClassFactoryCreator.klass, "total_devices", VALUEFUNC(_wrap_FactoryCreator_total_devices), -1);
18715
+ rb_define_method(SwigClassFactoryCreator.klass, "free_devices", VALUEFUNC(_wrap_FactoryCreator_free_devices), -1);
18716
+ rb_define_method(SwigClassFactoryCreator.klass, "vendor_exist", VALUEFUNC(_wrap_FactoryCreator_vendor_exist), -1);
18717
+ rb_define_method(SwigClassFactoryCreator.klass, "create_object", VALUEFUNC(_wrap_FactoryCreator_create_object), -1);
18718
+ rb_define_method(SwigClassFactoryCreator.klass, "destroy_object", VALUEFUNC(_wrap_FactoryCreator_destroy_object), -1);
18719
18719
  SwigClassFactoryCreator.mark = 0;
18720
18720
  SwigClassFactoryCreator.destroy = (void (*)(void *)) free_OIS_FactoryCreator;
18721
18721
  SwigClassFactoryCreator.trackObjects = 0;
18722
- rb_define_const(mOIS, "E_InputDisconnected", SWIG_From_int(static_cast< int >(OIS::E_InputDisconnected)));
18723
- rb_define_const(mOIS, "E_InputDeviceNonExistant", SWIG_From_int(static_cast< int >(OIS::E_InputDeviceNonExistant)));
18724
- rb_define_const(mOIS, "E_InputDeviceNotSupported", SWIG_From_int(static_cast< int >(OIS::E_InputDeviceNotSupported)));
18725
- rb_define_const(mOIS, "E_DeviceFull", SWIG_From_int(static_cast< int >(OIS::E_DeviceFull)));
18726
- rb_define_const(mOIS, "E_NotSupported", SWIG_From_int(static_cast< int >(OIS::E_NotSupported)));
18727
- rb_define_const(mOIS, "E_NotImplemented", SWIG_From_int(static_cast< int >(OIS::E_NotImplemented)));
18728
- rb_define_const(mOIS, "E_Duplicate", SWIG_From_int(static_cast< int >(OIS::E_Duplicate)));
18729
- rb_define_const(mOIS, "E_InvalidParam", SWIG_From_int(static_cast< int >(OIS::E_InvalidParam)));
18730
- rb_define_const(mOIS, "E_General", SWIG_From_int(static_cast< int >(OIS::E_General)));
18731
-
18732
- SwigClassException.klass = rb_define_class_under(mOIS, "Exception", rb_cObject);
18722
+ rb_define_const(mOis, "E_InputDisconnected", SWIG_From_int(static_cast< int >(OIS::E_InputDisconnected)));
18723
+ rb_define_const(mOis, "E_InputDeviceNonExistant", SWIG_From_int(static_cast< int >(OIS::E_InputDeviceNonExistant)));
18724
+ rb_define_const(mOis, "E_InputDeviceNotSupported", SWIG_From_int(static_cast< int >(OIS::E_InputDeviceNotSupported)));
18725
+ rb_define_const(mOis, "E_DeviceFull", SWIG_From_int(static_cast< int >(OIS::E_DeviceFull)));
18726
+ rb_define_const(mOis, "E_NotSupported", SWIG_From_int(static_cast< int >(OIS::E_NotSupported)));
18727
+ rb_define_const(mOis, "E_NotImplemented", SWIG_From_int(static_cast< int >(OIS::E_NotImplemented)));
18728
+ rb_define_const(mOis, "E_Duplicate", SWIG_From_int(static_cast< int >(OIS::E_Duplicate)));
18729
+ rb_define_const(mOis, "E_InvalidParam", SWIG_From_int(static_cast< int >(OIS::E_InvalidParam)));
18730
+ rb_define_const(mOis, "E_General", SWIG_From_int(static_cast< int >(OIS::E_General)));
18731
+
18732
+ SwigClassException.klass = rb_define_class_under(mOis, "Exception", rb_cObject);
18733
18733
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Exception, (void *) &SwigClassException);
18734
18734
  rb_define_alloc_func(SwigClassException.klass, _wrap_Exception_allocate);
18735
18735
  rb_define_method(SwigClassException.klass, "initialize", VALUEFUNC(_wrap_new_Exception), -1);
@@ -18744,7 +18744,7 @@ SWIGEXPORT void Init_OIS(void) {
18744
18744
  SwigClassException.destroy = (void (*)(void *)) free_OIS_Exception;
18745
18745
  SwigClassException.trackObjects = 0;
18746
18746
 
18747
- SwigClassInterface.klass = rb_define_class_under(mOIS, "Interface", rb_cObject);
18747
+ SwigClassInterface.klass = rb_define_class_under(mOis, "Interface", rb_cObject);
18748
18748
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Interface, (void *) &SwigClassInterface);
18749
18749
  rb_define_alloc_func(SwigClassInterface.klass, _wrap_Interface_allocate);
18750
18750
  rb_define_method(SwigClassInterface.klass, "initialize", VALUEFUNC(_wrap_new_Interface), -1);
@@ -18754,25 +18754,25 @@ SWIGEXPORT void Init_OIS(void) {
18754
18754
  SwigClassInterface.destroy = (void (*)(void *)) free_OIS_Interface;
18755
18755
  SwigClassInterface.trackObjects = 0;
18756
18756
 
18757
- SwigClassObject.klass = rb_define_class_under(mOIS, "Object", rb_cObject);
18757
+ SwigClassObject.klass = rb_define_class_under(mOis, "Object", rb_cObject);
18758
18758
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Object, (void *) &SwigClassObject);
18759
18759
  rb_undef_alloc_func(SwigClassObject.klass);
18760
18760
  rb_define_method(SwigClassObject.klass, "type", VALUEFUNC(_wrap_Object_type), -1);
18761
18761
  rb_define_method(SwigClassObject.klass, "vendor", VALUEFUNC(_wrap_Object_vendor), -1);
18762
18762
  rb_define_method(SwigClassObject.klass, "buffered", VALUEFUNC(_wrap_Object_buffered), -1);
18763
- rb_define_method(SwigClassObject.klass, "getCreator", VALUEFUNC(_wrap_Object_getCreator), -1);
18764
- rb_define_method(SwigClassObject.klass, "setBuffered", VALUEFUNC(_wrap_Object_setBuffered), -1);
18763
+ rb_define_method(SwigClassObject.klass, "get_creator", VALUEFUNC(_wrap_Object_get_creator), -1);
18764
+ rb_define_method(SwigClassObject.klass, "set_buffered", VALUEFUNC(_wrap_Object_set_buffered), -1);
18765
18765
  rb_define_method(SwigClassObject.klass, "capture", VALUEFUNC(_wrap_Object_capture), -1);
18766
- rb_define_method(SwigClassObject.klass, "getID", VALUEFUNC(_wrap_Object_getID), -1);
18767
- rb_define_method(SwigClassObject.klass, "queryInterface", VALUEFUNC(_wrap_Object_queryInterface), -1);
18766
+ rb_define_method(SwigClassObject.klass, "get_id", VALUEFUNC(_wrap_Object_get_id), -1);
18767
+ rb_define_method(SwigClassObject.klass, "query_interface", VALUEFUNC(_wrap_Object_query_interface), -1);
18768
18768
  rb_define_method(SwigClassObject.klass, "_initialize", VALUEFUNC(_wrap_Object__initialize), -1);
18769
- rb_define_method(SwigClassObject.klass, "toKeyboard", VALUEFUNC(_wrap_Object_toKeyboard), -1);
18770
- rb_define_method(SwigClassObject.klass, "toMouse", VALUEFUNC(_wrap_Object_toMouse), -1);
18769
+ rb_define_method(SwigClassObject.klass, "to_keyboard", VALUEFUNC(_wrap_Object_to_keyboard), -1);
18770
+ rb_define_method(SwigClassObject.klass, "to_mouse", VALUEFUNC(_wrap_Object_to_mouse), -1);
18771
18771
  SwigClassObject.mark = 0;
18772
18772
  SwigClassObject.destroy = (void (*)(void *)) free_OIS_Object;
18773
18773
  SwigClassObject.trackObjects = 0;
18774
18774
 
18775
- SwigClassEffect.klass = rb_define_class_under(mOIS, "Effect", rb_cObject);
18775
+ SwigClassEffect.klass = rb_define_class_under(mOis, "Effect", rb_cObject);
18776
18776
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Effect, (void *) &SwigClassEffect);
18777
18777
  rb_define_alloc_func(SwigClassEffect.klass, _wrap_Effect_allocate);
18778
18778
  rb_define_method(SwigClassEffect.klass, "initialize", VALUEFUNC(_wrap_new_Effect), -1);
@@ -18783,7 +18783,7 @@ SWIGEXPORT void Init_OIS(void) {
18783
18783
  rb_define_const(SwigClassEffect.klass, "ConditionalForce", SWIG_From_int(static_cast< int >(OIS::Effect::ConditionalForce)));
18784
18784
  rb_define_const(SwigClassEffect.klass, "CustomForce", SWIG_From_int(static_cast< int >(OIS::Effect::CustomForce)));
18785
18785
  rb_define_const(SwigClassEffect.klass, "_ForcesNumber", SWIG_From_int(static_cast< int >(OIS::Effect::_ForcesNumber)));
18786
- rb_define_singleton_method(SwigClassEffect.klass, "getForceTypeName", VALUEFUNC(_wrap_Effect_getForceTypeName), -1);
18786
+ rb_define_singleton_method(SwigClassEffect.klass, "get_force_type_name", VALUEFUNC(_wrap_Effect_get_force_type_name), -1);
18787
18787
  rb_define_const(SwigClassEffect.klass, "Unknown", SWIG_From_int(static_cast< int >(OIS::Effect::Unknown)));
18788
18788
  rb_define_const(SwigClassEffect.klass, "Constant", SWIG_From_int(static_cast< int >(OIS::Effect::Constant)));
18789
18789
  rb_define_const(SwigClassEffect.klass, "Ramp", SWIG_From_int(static_cast< int >(OIS::Effect::Ramp)));
@@ -18798,7 +18798,7 @@ SWIGEXPORT void Init_OIS(void) {
18798
18798
  rb_define_const(SwigClassEffect.klass, "Spring", SWIG_From_int(static_cast< int >(OIS::Effect::Spring)));
18799
18799
  rb_define_const(SwigClassEffect.klass, "Custom", SWIG_From_int(static_cast< int >(OIS::Effect::Custom)));
18800
18800
  rb_define_const(SwigClassEffect.klass, "_TypesNumber", SWIG_From_int(static_cast< int >(OIS::Effect::_TypesNumber)));
18801
- rb_define_singleton_method(SwigClassEffect.klass, "getEffectTypeName", VALUEFUNC(_wrap_Effect_getEffectTypeName), -1);
18801
+ rb_define_singleton_method(SwigClassEffect.klass, "get_effect_type_name", VALUEFUNC(_wrap_Effect_get_effect_type_name), -1);
18802
18802
  rb_define_const(SwigClassEffect.klass, "NorthWest", SWIG_From_int(static_cast< int >(OIS::Effect::NorthWest)));
18803
18803
  rb_define_const(SwigClassEffect.klass, "North", SWIG_From_int(static_cast< int >(OIS::Effect::North)));
18804
18804
  rb_define_const(SwigClassEffect.klass, "NorthEast", SWIG_From_int(static_cast< int >(OIS::Effect::NorthEast)));
@@ -18808,7 +18808,7 @@ SWIGEXPORT void Init_OIS(void) {
18808
18808
  rb_define_const(SwigClassEffect.klass, "SouthWest", SWIG_From_int(static_cast< int >(OIS::Effect::SouthWest)));
18809
18809
  rb_define_const(SwigClassEffect.klass, "West", SWIG_From_int(static_cast< int >(OIS::Effect::West)));
18810
18810
  rb_define_const(SwigClassEffect.klass, "_DirectionsNumber", SWIG_From_int(static_cast< int >(OIS::Effect::_DirectionsNumber)));
18811
- rb_define_singleton_method(SwigClassEffect.klass, "getDirectionName", VALUEFUNC(_wrap_Effect_getDirectionName), -1);
18811
+ rb_define_singleton_method(SwigClassEffect.klass, "get_direction_name", VALUEFUNC(_wrap_Effect_get_direction_name), -1);
18812
18812
  rb_define_method(SwigClassEffect.klass, "force", VALUEFUNC(_wrap_Effect_force_get), -1);
18813
18813
  rb_define_method(SwigClassEffect.klass, "type", VALUEFUNC(_wrap_Effect_type_get), -1);
18814
18814
  rb_define_const(SwigClassEffect.klass, "OIS_INFINITE", SWIG_From_unsigned_SS_int(static_cast< unsigned int >(OIS::Effect::OIS_INFINITE)));
@@ -18822,16 +18822,16 @@ SWIGEXPORT void Init_OIS(void) {
18822
18822
  rb_define_method(SwigClassEffect.klass, "replay_length", VALUEFUNC(_wrap_Effect_replay_length_get), -1);
18823
18823
  rb_define_method(SwigClassEffect.klass, "replay_delay=", VALUEFUNC(_wrap_Effect_replay_delay_set), -1);
18824
18824
  rb_define_method(SwigClassEffect.klass, "replay_delay", VALUEFUNC(_wrap_Effect_replay_delay_get), -1);
18825
- rb_define_method(SwigClassEffect.klass, "getForceEffect", VALUEFUNC(_wrap_Effect_getForceEffect), -1);
18826
- rb_define_method(SwigClassEffect.klass, "setNumAxes", VALUEFUNC(_wrap_Effect_setNumAxes), -1);
18827
- rb_define_method(SwigClassEffect.klass, "getNumAxes", VALUEFUNC(_wrap_Effect_getNumAxes), -1);
18825
+ rb_define_method(SwigClassEffect.klass, "get_force_effect", VALUEFUNC(_wrap_Effect_get_force_effect), -1);
18826
+ rb_define_method(SwigClassEffect.klass, "set_num_axes", VALUEFUNC(_wrap_Effect_set_num_axes), -1);
18827
+ rb_define_method(SwigClassEffect.klass, "get_num_axes", VALUEFUNC(_wrap_Effect_get_num_axes), -1);
18828
18828
  rb_define_method(SwigClassEffect.klass, "_handle=", VALUEFUNC(_wrap_Effect__handle_set), -1);
18829
18829
  rb_define_method(SwigClassEffect.klass, "_handle", VALUEFUNC(_wrap_Effect__handle_get), -1);
18830
18830
  SwigClassEffect.mark = 0;
18831
18831
  SwigClassEffect.destroy = (void (*)(void *)) free_OIS_Effect;
18832
18832
  SwigClassEffect.trackObjects = 0;
18833
18833
 
18834
- SwigClassForceEffect.klass = rb_define_class_under(mOIS, "ForceEffect", rb_cObject);
18834
+ SwigClassForceEffect.klass = rb_define_class_under(mOis, "ForceEffect", rb_cObject);
18835
18835
  SWIG_TypeClientData(SWIGTYPE_p_OIS__ForceEffect, (void *) &SwigClassForceEffect);
18836
18836
  rb_define_alloc_func(SwigClassForceEffect.klass, _wrap_ForceEffect_allocate);
18837
18837
  rb_define_method(SwigClassForceEffect.klass, "initialize", VALUEFUNC(_wrap_new_ForceEffect), -1);
@@ -18839,11 +18839,11 @@ SWIGEXPORT void Init_OIS(void) {
18839
18839
  SwigClassForceEffect.destroy = (void (*)(void *)) free_OIS_ForceEffect;
18840
18840
  SwigClassForceEffect.trackObjects = 0;
18841
18841
 
18842
- SwigClassEnvelope.klass = rb_define_class_under(mOIS, "Envelope", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18842
+ SwigClassEnvelope.klass = rb_define_class_under(mOis, "Envelope", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18843
18843
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Envelope, (void *) &SwigClassEnvelope);
18844
18844
  rb_define_alloc_func(SwigClassEnvelope.klass, _wrap_Envelope_allocate);
18845
18845
  rb_define_method(SwigClassEnvelope.klass, "initialize", VALUEFUNC(_wrap_new_Envelope), -1);
18846
- rb_define_method(SwigClassEnvelope.klass, "isUsed", VALUEFUNC(_wrap_Envelope_isUsed), -1);
18846
+ rb_define_method(SwigClassEnvelope.klass, "is_used", VALUEFUNC(_wrap_Envelope_is_used), -1);
18847
18847
  rb_define_method(SwigClassEnvelope.klass, "attackLength=", VALUEFUNC(_wrap_Envelope_attackLength_set), -1);
18848
18848
  rb_define_method(SwigClassEnvelope.klass, "attackLength", VALUEFUNC(_wrap_Envelope_attackLength_get), -1);
18849
18849
  rb_define_method(SwigClassEnvelope.klass, "attackLevel=", VALUEFUNC(_wrap_Envelope_attackLevel_set), -1);
@@ -18856,7 +18856,7 @@ SWIGEXPORT void Init_OIS(void) {
18856
18856
  SwigClassEnvelope.destroy = (void (*)(void *)) free_OIS_Envelope;
18857
18857
  SwigClassEnvelope.trackObjects = 0;
18858
18858
 
18859
- SwigClassConstantEffect.klass = rb_define_class_under(mOIS, "ConstantEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18859
+ SwigClassConstantEffect.klass = rb_define_class_under(mOis, "ConstantEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18860
18860
  SWIG_TypeClientData(SWIGTYPE_p_OIS__ConstantEffect, (void *) &SwigClassConstantEffect);
18861
18861
  rb_define_alloc_func(SwigClassConstantEffect.klass, _wrap_ConstantEffect_allocate);
18862
18862
  rb_define_method(SwigClassConstantEffect.klass, "initialize", VALUEFUNC(_wrap_new_ConstantEffect), -1);
@@ -18868,7 +18868,7 @@ SWIGEXPORT void Init_OIS(void) {
18868
18868
  SwigClassConstantEffect.destroy = (void (*)(void *)) free_OIS_ConstantEffect;
18869
18869
  SwigClassConstantEffect.trackObjects = 0;
18870
18870
 
18871
- SwigClassRampEffect.klass = rb_define_class_under(mOIS, "RampEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18871
+ SwigClassRampEffect.klass = rb_define_class_under(mOis, "RampEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18872
18872
  SWIG_TypeClientData(SWIGTYPE_p_OIS__RampEffect, (void *) &SwigClassRampEffect);
18873
18873
  rb_define_alloc_func(SwigClassRampEffect.klass, _wrap_RampEffect_allocate);
18874
18874
  rb_define_method(SwigClassRampEffect.klass, "initialize", VALUEFUNC(_wrap_new_RampEffect), -1);
@@ -18882,7 +18882,7 @@ SWIGEXPORT void Init_OIS(void) {
18882
18882
  SwigClassRampEffect.destroy = (void (*)(void *)) free_OIS_RampEffect;
18883
18883
  SwigClassRampEffect.trackObjects = 0;
18884
18884
 
18885
- SwigClassPeriodicEffect.klass = rb_define_class_under(mOIS, "PeriodicEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18885
+ SwigClassPeriodicEffect.klass = rb_define_class_under(mOis, "PeriodicEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18886
18886
  SWIG_TypeClientData(SWIGTYPE_p_OIS__PeriodicEffect, (void *) &SwigClassPeriodicEffect);
18887
18887
  rb_define_alloc_func(SwigClassPeriodicEffect.klass, _wrap_PeriodicEffect_allocate);
18888
18888
  rb_define_method(SwigClassPeriodicEffect.klass, "initialize", VALUEFUNC(_wrap_new_PeriodicEffect), -1);
@@ -18900,7 +18900,7 @@ SWIGEXPORT void Init_OIS(void) {
18900
18900
  SwigClassPeriodicEffect.destroy = (void (*)(void *)) free_OIS_PeriodicEffect;
18901
18901
  SwigClassPeriodicEffect.trackObjects = 0;
18902
18902
 
18903
- SwigClassConditionalEffect.klass = rb_define_class_under(mOIS, "ConditionalEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18903
+ SwigClassConditionalEffect.klass = rb_define_class_under(mOis, "ConditionalEffect", ((swig_class *) SWIGTYPE_p_OIS__ForceEffect->clientdata)->klass);
18904
18904
  SWIG_TypeClientData(SWIGTYPE_p_OIS__ConditionalEffect, (void *) &SwigClassConditionalEffect);
18905
18905
  rb_define_alloc_func(SwigClassConditionalEffect.klass, _wrap_ConditionalEffect_allocate);
18906
18906
  rb_define_method(SwigClassConditionalEffect.klass, "initialize", VALUEFUNC(_wrap_new_ConditionalEffect), -1);
@@ -18920,26 +18920,26 @@ SWIGEXPORT void Init_OIS(void) {
18920
18920
  SwigClassConditionalEffect.destroy = (void (*)(void *)) free_OIS_ConditionalEffect;
18921
18921
  SwigClassConditionalEffect.trackObjects = 0;
18922
18922
 
18923
- SwigClassForceFeedback.klass = rb_define_class_under(mOIS, "ForceFeedback", ((swig_class *) SWIGTYPE_p_OIS__Interface->clientdata)->klass);
18923
+ SwigClassForceFeedback.klass = rb_define_class_under(mOis, "ForceFeedback", ((swig_class *) SWIGTYPE_p_OIS__Interface->clientdata)->klass);
18924
18924
  SWIG_TypeClientData(SWIGTYPE_p_OIS__ForceFeedback, (void *) &SwigClassForceFeedback);
18925
18925
  rb_undef_alloc_func(SwigClassForceFeedback.klass);
18926
- rb_define_method(SwigClassForceFeedback.klass, "setMasterGain", VALUEFUNC(_wrap_ForceFeedback_setMasterGain), -1);
18927
- rb_define_method(SwigClassForceFeedback.klass, "setAutoCenterMode", VALUEFUNC(_wrap_ForceFeedback_setAutoCenterMode), -1);
18926
+ rb_define_method(SwigClassForceFeedback.klass, "set_master_gain", VALUEFUNC(_wrap_ForceFeedback_set_master_gain), -1);
18927
+ rb_define_method(SwigClassForceFeedback.klass, "set_auto_center_mode", VALUEFUNC(_wrap_ForceFeedback_set_auto_center_mode), -1);
18928
18928
  rb_define_method(SwigClassForceFeedback.klass, "upload", VALUEFUNC(_wrap_ForceFeedback_upload), -1);
18929
18929
  rb_define_method(SwigClassForceFeedback.klass, "modify", VALUEFUNC(_wrap_ForceFeedback_modify), -1);
18930
18930
  rb_define_method(SwigClassForceFeedback.klass, "remove", VALUEFUNC(_wrap_ForceFeedback_remove), -1);
18931
- rb_define_method(SwigClassForceFeedback.klass, "getFFAxesNumber", VALUEFUNC(_wrap_ForceFeedback_getFFAxesNumber), -1);
18932
- rb_define_method(SwigClassForceFeedback.klass, "getFFMemoryLoad", VALUEFUNC(_wrap_ForceFeedback_getFFMemoryLoad), -1);
18933
- rb_define_method(SwigClassForceFeedback.klass, "getSupportedEffects", VALUEFUNC(_wrap_ForceFeedback_getSupportedEffects), -1);
18934
- rb_define_method(SwigClassForceFeedback.klass, "supportsEffect", VALUEFUNC(_wrap_ForceFeedback_supportsEffect), -1);
18935
- rb_define_method(SwigClassForceFeedback.klass, "_addEffectTypes", VALUEFUNC(_wrap_ForceFeedback__addEffectTypes), -1);
18936
- rb_define_method(SwigClassForceFeedback.klass, "_setGainSupport", VALUEFUNC(_wrap_ForceFeedback__setGainSupport), -1);
18937
- rb_define_method(SwigClassForceFeedback.klass, "_setAutoCenterSupport", VALUEFUNC(_wrap_ForceFeedback__setAutoCenterSupport), -1);
18931
+ rb_define_method(SwigClassForceFeedback.klass, "get_ffaxes_number", VALUEFUNC(_wrap_ForceFeedback_get_ffaxes_number), -1);
18932
+ rb_define_method(SwigClassForceFeedback.klass, "get_ffmemory_load", VALUEFUNC(_wrap_ForceFeedback_get_ffmemory_load), -1);
18933
+ rb_define_method(SwigClassForceFeedback.klass, "get_supported_effects", VALUEFUNC(_wrap_ForceFeedback_get_supported_effects), -1);
18934
+ rb_define_method(SwigClassForceFeedback.klass, "supports_effect", VALUEFUNC(_wrap_ForceFeedback_supports_effect), -1);
18935
+ rb_define_method(SwigClassForceFeedback.klass, "_add_effect_types", VALUEFUNC(_wrap_ForceFeedback__add_effect_types), -1);
18936
+ rb_define_method(SwigClassForceFeedback.klass, "_set_gain_support", VALUEFUNC(_wrap_ForceFeedback__set_gain_support), -1);
18937
+ rb_define_method(SwigClassForceFeedback.klass, "_set_auto_center_support", VALUEFUNC(_wrap_ForceFeedback__set_auto_center_support), -1);
18938
18938
  SwigClassForceFeedback.mark = 0;
18939
18939
  SwigClassForceFeedback.destroy = (void (*)(void *)) free_OIS_ForceFeedback;
18940
18940
  SwigClassForceFeedback.trackObjects = 0;
18941
18941
 
18942
- SwigClassEventArg.klass = rb_define_class_under(mOIS, "EventArg", rb_cObject);
18942
+ SwigClassEventArg.klass = rb_define_class_under(mOis, "EventArg", rb_cObject);
18943
18943
  SWIG_TypeClientData(SWIGTYPE_p_OIS__EventArg, (void *) &SwigClassEventArg);
18944
18944
  rb_define_alloc_func(SwigClassEventArg.klass, _wrap_EventArg_allocate);
18945
18945
  rb_define_method(SwigClassEventArg.klass, "initialize", VALUEFUNC(_wrap_new_EventArg), -1);
@@ -18948,28 +18948,28 @@ SWIGEXPORT void Init_OIS(void) {
18948
18948
  SwigClassEventArg.mark = 0;
18949
18949
  SwigClassEventArg.destroy = (void (*)(void *)) free_OIS_EventArg;
18950
18950
  SwigClassEventArg.trackObjects = 0;
18951
- rb_define_const(mOIS, "OIS_JOYSTICK_VECTOR3_DEFAULT", SWIG_From_double(static_cast< double >(2.28)));
18951
+ rb_define_const(mOis, "OIS_JOYSTICK_VECTOR3_DEFAULT", SWIG_From_double(static_cast< double >(2.28)));
18952
18952
 
18953
- SwigClassPov.klass = rb_define_class_under(mOIS, "Pov", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18953
+ SwigClassPov.klass = rb_define_class_under(mOis, "Pov", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18954
18954
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Pov, (void *) &SwigClassPov);
18955
18955
  rb_define_alloc_func(SwigClassPov.klass, _wrap_Pov_allocate);
18956
18956
  rb_define_method(SwigClassPov.klass, "initialize", VALUEFUNC(_wrap_new_Pov), -1);
18957
- rb_define_const(SwigClassPov.klass, "Centered", SWIG_From_int(static_cast< int >(OIS::Pov::Centered)));
18958
- rb_define_const(SwigClassPov.klass, "North", SWIG_From_int(static_cast< int >(OIS::Pov::North)));
18959
- rb_define_const(SwigClassPov.klass, "South", SWIG_From_int(static_cast< int >(OIS::Pov::South)));
18960
- rb_define_const(SwigClassPov.klass, "East", SWIG_From_int(static_cast< int >(OIS::Pov::East)));
18961
- rb_define_const(SwigClassPov.klass, "West", SWIG_From_int(static_cast< int >(OIS::Pov::West)));
18962
- rb_define_const(SwigClassPov.klass, "NorthEast", SWIG_From_int(static_cast< int >(OIS::Pov::NorthEast)));
18963
- rb_define_const(SwigClassPov.klass, "SouthEast", SWIG_From_int(static_cast< int >(OIS::Pov::SouthEast)));
18964
- rb_define_const(SwigClassPov.klass, "NorthWest", SWIG_From_int(static_cast< int >(OIS::Pov::NorthWest)));
18965
- rb_define_const(SwigClassPov.klass, "SouthWest", SWIG_From_int(static_cast< int >(OIS::Pov::SouthWest)));
18957
+ rb_define_const(SwigClassPov.klass, "CENTERED", SWIG_From_int(static_cast< int >(OIS::Pov::Centered)));
18958
+ rb_define_const(SwigClassPov.klass, "NORTH", SWIG_From_int(static_cast< int >(OIS::Pov::North)));
18959
+ rb_define_const(SwigClassPov.klass, "SOUTH", SWIG_From_int(static_cast< int >(OIS::Pov::South)));
18960
+ rb_define_const(SwigClassPov.klass, "EAST", SWIG_From_int(static_cast< int >(OIS::Pov::East)));
18961
+ rb_define_const(SwigClassPov.klass, "WEST", SWIG_From_int(static_cast< int >(OIS::Pov::West)));
18962
+ rb_define_const(SwigClassPov.klass, "NORTHEAST", SWIG_From_int(static_cast< int >(OIS::Pov::NorthEast)));
18963
+ rb_define_const(SwigClassPov.klass, "SOUTHEAST", SWIG_From_int(static_cast< int >(OIS::Pov::SouthEast)));
18964
+ rb_define_const(SwigClassPov.klass, "NORTHWEST", SWIG_From_int(static_cast< int >(OIS::Pov::NorthWest)));
18965
+ rb_define_const(SwigClassPov.klass, "SOUTHWEST", SWIG_From_int(static_cast< int >(OIS::Pov::SouthWest)));
18966
18966
  rb_define_method(SwigClassPov.klass, "direction=", VALUEFUNC(_wrap_Pov_direction_set), -1);
18967
18967
  rb_define_method(SwigClassPov.klass, "direction", VALUEFUNC(_wrap_Pov_direction_get), -1);
18968
18968
  SwigClassPov.mark = 0;
18969
18969
  SwigClassPov.destroy = (void (*)(void *)) free_OIS_Pov;
18970
18970
  SwigClassPov.trackObjects = 0;
18971
18971
 
18972
- SwigClassSlider.klass = rb_define_class_under(mOIS, "Slider", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18972
+ SwigClassSlider.klass = rb_define_class_under(mOis, "Slider", ((swig_class *) SWIGTYPE_p_OIS__Component->clientdata)->klass);
18973
18973
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Slider, (void *) &SwigClassSlider);
18974
18974
  rb_define_alloc_func(SwigClassSlider.klass, _wrap_Slider_allocate);
18975
18975
  rb_define_method(SwigClassSlider.klass, "initialize", VALUEFUNC(_wrap_new_Slider), -1);
@@ -18981,7 +18981,7 @@ SWIGEXPORT void Init_OIS(void) {
18981
18981
  SwigClassSlider.destroy = (void (*)(void *)) free_OIS_Slider;
18982
18982
  SwigClassSlider.trackObjects = 0;
18983
18983
 
18984
- SwigClassJoyStickState.klass = rb_define_class_under(mOIS, "JoyStickState", rb_cObject);
18984
+ SwigClassJoyStickState.klass = rb_define_class_under(mOis, "JoyStickState", rb_cObject);
18985
18985
  SWIG_TypeClientData(SWIGTYPE_p_OIS__JoyStickState, (void *) &SwigClassJoyStickState);
18986
18986
  rb_define_alloc_func(SwigClassJoyStickState.klass, _wrap_JoyStickState_allocate);
18987
18987
  rb_define_method(SwigClassJoyStickState.klass, "initialize", VALUEFUNC(_wrap_new_JoyStickState), -1);
@@ -19000,7 +19000,7 @@ SWIGEXPORT void Init_OIS(void) {
19000
19000
  SwigClassJoyStickState.destroy = (void (*)(void *)) free_OIS_JoyStickState;
19001
19001
  SwigClassJoyStickState.trackObjects = 0;
19002
19002
 
19003
- SwigClassJoyStickEvent.klass = rb_define_class_under(mOIS, "JoyStickEvent", ((swig_class *) SWIGTYPE_p_OIS__EventArg->clientdata)->klass);
19003
+ SwigClassJoyStickEvent.klass = rb_define_class_under(mOis, "JoyStickEvent", ((swig_class *) SWIGTYPE_p_OIS__EventArg->clientdata)->klass);
19004
19004
  SWIG_TypeClientData(SWIGTYPE_p_OIS__JoyStickEvent, (void *) &SwigClassJoyStickEvent);
19005
19005
  rb_define_alloc_func(SwigClassJoyStickEvent.klass, _wrap_JoyStickEvent_allocate);
19006
19006
  rb_define_method(SwigClassJoyStickEvent.klass, "initialize", VALUEFUNC(_wrap_new_JoyStickEvent), -1);
@@ -19009,180 +19009,180 @@ SWIGEXPORT void Init_OIS(void) {
19009
19009
  SwigClassJoyStickEvent.destroy = (void (*)(void *)) free_OIS_JoyStickEvent;
19010
19010
  SwigClassJoyStickEvent.trackObjects = 0;
19011
19011
 
19012
- SwigClassJoyStickListener.klass = rb_define_class_under(mOIS, "JoyStickListener", rb_cObject);
19012
+ SwigClassJoyStickListener.klass = rb_define_class_under(mOis, "JoyStickListener", rb_cObject);
19013
19013
  SWIG_TypeClientData(SWIGTYPE_p_OIS__JoyStickListener, (void *) &SwigClassJoyStickListener);
19014
19014
  rb_undef_alloc_func(SwigClassJoyStickListener.klass);
19015
- rb_define_method(SwigClassJoyStickListener.klass, "buttonPressed", VALUEFUNC(_wrap_JoyStickListener_buttonPressed), -1);
19016
- rb_define_method(SwigClassJoyStickListener.klass, "buttonReleased", VALUEFUNC(_wrap_JoyStickListener_buttonReleased), -1);
19017
- rb_define_method(SwigClassJoyStickListener.klass, "axisMoved", VALUEFUNC(_wrap_JoyStickListener_axisMoved), -1);
19018
- rb_define_method(SwigClassJoyStickListener.klass, "sliderMoved", VALUEFUNC(_wrap_JoyStickListener_sliderMoved), -1);
19019
- rb_define_method(SwigClassJoyStickListener.klass, "povMoved", VALUEFUNC(_wrap_JoyStickListener_povMoved), -1);
19020
- rb_define_method(SwigClassJoyStickListener.klass, "vector3Moved", VALUEFUNC(_wrap_JoyStickListener_vector3Moved), -1);
19015
+ rb_define_method(SwigClassJoyStickListener.klass, "button_pressed", VALUEFUNC(_wrap_JoyStickListener_button_pressed), -1);
19016
+ rb_define_method(SwigClassJoyStickListener.klass, "button_released", VALUEFUNC(_wrap_JoyStickListener_button_released), -1);
19017
+ rb_define_method(SwigClassJoyStickListener.klass, "axis_moved", VALUEFUNC(_wrap_JoyStickListener_axis_moved), -1);
19018
+ rb_define_method(SwigClassJoyStickListener.klass, "slider_moved", VALUEFUNC(_wrap_JoyStickListener_slider_moved), -1);
19019
+ rb_define_method(SwigClassJoyStickListener.klass, "pov_moved", VALUEFUNC(_wrap_JoyStickListener_pov_moved), -1);
19020
+ rb_define_method(SwigClassJoyStickListener.klass, "vector_3moved", VALUEFUNC(_wrap_JoyStickListener_vector_3moved), -1);
19021
19021
  SwigClassJoyStickListener.mark = 0;
19022
19022
  SwigClassJoyStickListener.destroy = (void (*)(void *)) free_OIS_JoyStickListener;
19023
19023
  SwigClassJoyStickListener.trackObjects = 0;
19024
19024
 
19025
- SwigClassJoyStick.klass = rb_define_class_under(mOIS, "JoyStick", ((swig_class *) SWIGTYPE_p_OIS__Object->clientdata)->klass);
19025
+ SwigClassJoyStick.klass = rb_define_class_under(mOis, "JoyStick", ((swig_class *) SWIGTYPE_p_OIS__Object->clientdata)->klass);
19026
19026
  SWIG_TypeClientData(SWIGTYPE_p_OIS__JoyStick, (void *) &SwigClassJoyStick);
19027
19027
  rb_undef_alloc_func(SwigClassJoyStick.klass);
19028
- rb_define_method(SwigClassJoyStick.klass, "getNumberOfComponents", VALUEFUNC(_wrap_JoyStick_getNumberOfComponents), -1);
19029
- rb_define_method(SwigClassJoyStick.klass, "setVector3Sensitivity", VALUEFUNC(_wrap_JoyStick_setVector3Sensitivity), -1);
19030
- rb_define_method(SwigClassJoyStick.klass, "getVector3Sensitivity", VALUEFUNC(_wrap_JoyStick_getVector3Sensitivity), -1);
19031
- rb_define_method(SwigClassJoyStick.klass, "setEventCallback", VALUEFUNC(_wrap_JoyStick_setEventCallback), -1);
19032
- rb_define_method(SwigClassJoyStick.klass, "getEventCallback", VALUEFUNC(_wrap_JoyStick_getEventCallback), -1);
19033
- rb_define_method(SwigClassJoyStick.klass, "getJoyStickState", VALUEFUNC(_wrap_JoyStick_getJoyStickState), -1);
19028
+ rb_define_method(SwigClassJoyStick.klass, "get_number_of_components", VALUEFUNC(_wrap_JoyStick_get_number_of_components), -1);
19029
+ rb_define_method(SwigClassJoyStick.klass, "set_vector_3sensitivity", VALUEFUNC(_wrap_JoyStick_set_vector_3sensitivity), -1);
19030
+ rb_define_method(SwigClassJoyStick.klass, "get_vector_3sensitivity", VALUEFUNC(_wrap_JoyStick_get_vector_3sensitivity), -1);
19031
+ rb_define_method(SwigClassJoyStick.klass, "set_event_callback", VALUEFUNC(_wrap_JoyStick_set_event_callback), -1);
19032
+ rb_define_method(SwigClassJoyStick.klass, "get_event_callback", VALUEFUNC(_wrap_JoyStick_get_event_callback), -1);
19033
+ rb_define_method(SwigClassJoyStick.klass, "get_joy_stick_state", VALUEFUNC(_wrap_JoyStick_get_joy_stick_state), -1);
19034
19034
  rb_define_const(SwigClassJoyStick.klass, "MIN_AXIS", SWIG_From_int(static_cast< int >(OIS::JoyStick::MIN_AXIS)));
19035
19035
  rb_define_const(SwigClassJoyStick.klass, "MAX_AXIS", SWIG_From_int(static_cast< int >(OIS::JoyStick::MAX_AXIS)));
19036
19036
  SwigClassJoyStick.mark = 0;
19037
19037
  SwigClassJoyStick.destroy = (void (*)(void *)) free_OIS_JoyStick;
19038
19038
  SwigClassJoyStick.trackObjects = 0;
19039
- rb_define_const(mOIS, "KC_UNASSIGNED", SWIG_From_int(static_cast< int >(OIS::KC_UNASSIGNED)));
19040
- rb_define_const(mOIS, "KC_ESCAPE", SWIG_From_int(static_cast< int >(OIS::KC_ESCAPE)));
19041
- rb_define_const(mOIS, "KC_1", SWIG_From_int(static_cast< int >(OIS::KC_1)));
19042
- rb_define_const(mOIS, "KC_2", SWIG_From_int(static_cast< int >(OIS::KC_2)));
19043
- rb_define_const(mOIS, "KC_3", SWIG_From_int(static_cast< int >(OIS::KC_3)));
19044
- rb_define_const(mOIS, "KC_4", SWIG_From_int(static_cast< int >(OIS::KC_4)));
19045
- rb_define_const(mOIS, "KC_5", SWIG_From_int(static_cast< int >(OIS::KC_5)));
19046
- rb_define_const(mOIS, "KC_6", SWIG_From_int(static_cast< int >(OIS::KC_6)));
19047
- rb_define_const(mOIS, "KC_7", SWIG_From_int(static_cast< int >(OIS::KC_7)));
19048
- rb_define_const(mOIS, "KC_8", SWIG_From_int(static_cast< int >(OIS::KC_8)));
19049
- rb_define_const(mOIS, "KC_9", SWIG_From_int(static_cast< int >(OIS::KC_9)));
19050
- rb_define_const(mOIS, "KC_0", SWIG_From_int(static_cast< int >(OIS::KC_0)));
19051
- rb_define_const(mOIS, "KC_MINUS", SWIG_From_int(static_cast< int >(OIS::KC_MINUS)));
19052
- rb_define_const(mOIS, "KC_EQUALS", SWIG_From_int(static_cast< int >(OIS::KC_EQUALS)));
19053
- rb_define_const(mOIS, "KC_BACK", SWIG_From_int(static_cast< int >(OIS::KC_BACK)));
19054
- rb_define_const(mOIS, "KC_TAB", SWIG_From_int(static_cast< int >(OIS::KC_TAB)));
19055
- rb_define_const(mOIS, "KC_Q", SWIG_From_int(static_cast< int >(OIS::KC_Q)));
19056
- rb_define_const(mOIS, "KC_W", SWIG_From_int(static_cast< int >(OIS::KC_W)));
19057
- rb_define_const(mOIS, "KC_E", SWIG_From_int(static_cast< int >(OIS::KC_E)));
19058
- rb_define_const(mOIS, "KC_R", SWIG_From_int(static_cast< int >(OIS::KC_R)));
19059
- rb_define_const(mOIS, "KC_T", SWIG_From_int(static_cast< int >(OIS::KC_T)));
19060
- rb_define_const(mOIS, "KC_Y", SWIG_From_int(static_cast< int >(OIS::KC_Y)));
19061
- rb_define_const(mOIS, "KC_U", SWIG_From_int(static_cast< int >(OIS::KC_U)));
19062
- rb_define_const(mOIS, "KC_I", SWIG_From_int(static_cast< int >(OIS::KC_I)));
19063
- rb_define_const(mOIS, "KC_O", SWIG_From_int(static_cast< int >(OIS::KC_O)));
19064
- rb_define_const(mOIS, "KC_P", SWIG_From_int(static_cast< int >(OIS::KC_P)));
19065
- rb_define_const(mOIS, "KC_LBRACKET", SWIG_From_int(static_cast< int >(OIS::KC_LBRACKET)));
19066
- rb_define_const(mOIS, "KC_RBRACKET", SWIG_From_int(static_cast< int >(OIS::KC_RBRACKET)));
19067
- rb_define_const(mOIS, "KC_RETURN", SWIG_From_int(static_cast< int >(OIS::KC_RETURN)));
19068
- rb_define_const(mOIS, "KC_LCONTROL", SWIG_From_int(static_cast< int >(OIS::KC_LCONTROL)));
19069
- rb_define_const(mOIS, "KC_A", SWIG_From_int(static_cast< int >(OIS::KC_A)));
19070
- rb_define_const(mOIS, "KC_S", SWIG_From_int(static_cast< int >(OIS::KC_S)));
19071
- rb_define_const(mOIS, "KC_D", SWIG_From_int(static_cast< int >(OIS::KC_D)));
19072
- rb_define_const(mOIS, "KC_F", SWIG_From_int(static_cast< int >(OIS::KC_F)));
19073
- rb_define_const(mOIS, "KC_G", SWIG_From_int(static_cast< int >(OIS::KC_G)));
19074
- rb_define_const(mOIS, "KC_H", SWIG_From_int(static_cast< int >(OIS::KC_H)));
19075
- rb_define_const(mOIS, "KC_J", SWIG_From_int(static_cast< int >(OIS::KC_J)));
19076
- rb_define_const(mOIS, "KC_K", SWIG_From_int(static_cast< int >(OIS::KC_K)));
19077
- rb_define_const(mOIS, "KC_L", SWIG_From_int(static_cast< int >(OIS::KC_L)));
19078
- rb_define_const(mOIS, "KC_SEMICOLON", SWIG_From_int(static_cast< int >(OIS::KC_SEMICOLON)));
19079
- rb_define_const(mOIS, "KC_APOSTROPHE", SWIG_From_int(static_cast< int >(OIS::KC_APOSTROPHE)));
19080
- rb_define_const(mOIS, "KC_GRAVE", SWIG_From_int(static_cast< int >(OIS::KC_GRAVE)));
19081
- rb_define_const(mOIS, "KC_LSHIFT", SWIG_From_int(static_cast< int >(OIS::KC_LSHIFT)));
19082
- rb_define_const(mOIS, "KC_BACKSLASH", SWIG_From_int(static_cast< int >(OIS::KC_BACKSLASH)));
19083
- rb_define_const(mOIS, "KC_Z", SWIG_From_int(static_cast< int >(OIS::KC_Z)));
19084
- rb_define_const(mOIS, "KC_X", SWIG_From_int(static_cast< int >(OIS::KC_X)));
19085
- rb_define_const(mOIS, "KC_C", SWIG_From_int(static_cast< int >(OIS::KC_C)));
19086
- rb_define_const(mOIS, "KC_V", SWIG_From_int(static_cast< int >(OIS::KC_V)));
19087
- rb_define_const(mOIS, "KC_B", SWIG_From_int(static_cast< int >(OIS::KC_B)));
19088
- rb_define_const(mOIS, "KC_N", SWIG_From_int(static_cast< int >(OIS::KC_N)));
19089
- rb_define_const(mOIS, "KC_M", SWIG_From_int(static_cast< int >(OIS::KC_M)));
19090
- rb_define_const(mOIS, "KC_COMMA", SWIG_From_int(static_cast< int >(OIS::KC_COMMA)));
19091
- rb_define_const(mOIS, "KC_PERIOD", SWIG_From_int(static_cast< int >(OIS::KC_PERIOD)));
19092
- rb_define_const(mOIS, "KC_SLASH", SWIG_From_int(static_cast< int >(OIS::KC_SLASH)));
19093
- rb_define_const(mOIS, "KC_RSHIFT", SWIG_From_int(static_cast< int >(OIS::KC_RSHIFT)));
19094
- rb_define_const(mOIS, "KC_MULTIPLY", SWIG_From_int(static_cast< int >(OIS::KC_MULTIPLY)));
19095
- rb_define_const(mOIS, "KC_LMENU", SWIG_From_int(static_cast< int >(OIS::KC_LMENU)));
19096
- rb_define_const(mOIS, "KC_SPACE", SWIG_From_int(static_cast< int >(OIS::KC_SPACE)));
19097
- rb_define_const(mOIS, "KC_CAPITAL", SWIG_From_int(static_cast< int >(OIS::KC_CAPITAL)));
19098
- rb_define_const(mOIS, "KC_F1", SWIG_From_int(static_cast< int >(OIS::KC_F1)));
19099
- rb_define_const(mOIS, "KC_F2", SWIG_From_int(static_cast< int >(OIS::KC_F2)));
19100
- rb_define_const(mOIS, "KC_F3", SWIG_From_int(static_cast< int >(OIS::KC_F3)));
19101
- rb_define_const(mOIS, "KC_F4", SWIG_From_int(static_cast< int >(OIS::KC_F4)));
19102
- rb_define_const(mOIS, "KC_F5", SWIG_From_int(static_cast< int >(OIS::KC_F5)));
19103
- rb_define_const(mOIS, "KC_F6", SWIG_From_int(static_cast< int >(OIS::KC_F6)));
19104
- rb_define_const(mOIS, "KC_F7", SWIG_From_int(static_cast< int >(OIS::KC_F7)));
19105
- rb_define_const(mOIS, "KC_F8", SWIG_From_int(static_cast< int >(OIS::KC_F8)));
19106
- rb_define_const(mOIS, "KC_F9", SWIG_From_int(static_cast< int >(OIS::KC_F9)));
19107
- rb_define_const(mOIS, "KC_F10", SWIG_From_int(static_cast< int >(OIS::KC_F10)));
19108
- rb_define_const(mOIS, "KC_NUMLOCK", SWIG_From_int(static_cast< int >(OIS::KC_NUMLOCK)));
19109
- rb_define_const(mOIS, "KC_SCROLL", SWIG_From_int(static_cast< int >(OIS::KC_SCROLL)));
19110
- rb_define_const(mOIS, "KC_NUMPAD7", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD7)));
19111
- rb_define_const(mOIS, "KC_NUMPAD8", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD8)));
19112
- rb_define_const(mOIS, "KC_NUMPAD9", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD9)));
19113
- rb_define_const(mOIS, "KC_SUBTRACT", SWIG_From_int(static_cast< int >(OIS::KC_SUBTRACT)));
19114
- rb_define_const(mOIS, "KC_NUMPAD4", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD4)));
19115
- rb_define_const(mOIS, "KC_NUMPAD5", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD5)));
19116
- rb_define_const(mOIS, "KC_NUMPAD6", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD6)));
19117
- rb_define_const(mOIS, "KC_ADD", SWIG_From_int(static_cast< int >(OIS::KC_ADD)));
19118
- rb_define_const(mOIS, "KC_NUMPAD1", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD1)));
19119
- rb_define_const(mOIS, "KC_NUMPAD2", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD2)));
19120
- rb_define_const(mOIS, "KC_NUMPAD3", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD3)));
19121
- rb_define_const(mOIS, "KC_NUMPAD0", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD0)));
19122
- rb_define_const(mOIS, "KC_DECIMAL", SWIG_From_int(static_cast< int >(OIS::KC_DECIMAL)));
19123
- rb_define_const(mOIS, "KC_OEM_102", SWIG_From_int(static_cast< int >(OIS::KC_OEM_102)));
19124
- rb_define_const(mOIS, "KC_F11", SWIG_From_int(static_cast< int >(OIS::KC_F11)));
19125
- rb_define_const(mOIS, "KC_F12", SWIG_From_int(static_cast< int >(OIS::KC_F12)));
19126
- rb_define_const(mOIS, "KC_F13", SWIG_From_int(static_cast< int >(OIS::KC_F13)));
19127
- rb_define_const(mOIS, "KC_F14", SWIG_From_int(static_cast< int >(OIS::KC_F14)));
19128
- rb_define_const(mOIS, "KC_F15", SWIG_From_int(static_cast< int >(OIS::KC_F15)));
19129
- rb_define_const(mOIS, "KC_KANA", SWIG_From_int(static_cast< int >(OIS::KC_KANA)));
19130
- rb_define_const(mOIS, "KC_ABNT_C1", SWIG_From_int(static_cast< int >(OIS::KC_ABNT_C1)));
19131
- rb_define_const(mOIS, "KC_CONVERT", SWIG_From_int(static_cast< int >(OIS::KC_CONVERT)));
19132
- rb_define_const(mOIS, "KC_NOCONVERT", SWIG_From_int(static_cast< int >(OIS::KC_NOCONVERT)));
19133
- rb_define_const(mOIS, "KC_YEN", SWIG_From_int(static_cast< int >(OIS::KC_YEN)));
19134
- rb_define_const(mOIS, "KC_ABNT_C2", SWIG_From_int(static_cast< int >(OIS::KC_ABNT_C2)));
19135
- rb_define_const(mOIS, "KC_NUMPADEQUALS", SWIG_From_int(static_cast< int >(OIS::KC_NUMPADEQUALS)));
19136
- rb_define_const(mOIS, "KC_PREVTRACK", SWIG_From_int(static_cast< int >(OIS::KC_PREVTRACK)));
19137
- rb_define_const(mOIS, "KC_AT", SWIG_From_int(static_cast< int >(OIS::KC_AT)));
19138
- rb_define_const(mOIS, "KC_COLON", SWIG_From_int(static_cast< int >(OIS::KC_COLON)));
19139
- rb_define_const(mOIS, "KC_UNDERLINE", SWIG_From_int(static_cast< int >(OIS::KC_UNDERLINE)));
19140
- rb_define_const(mOIS, "KC_KANJI", SWIG_From_int(static_cast< int >(OIS::KC_KANJI)));
19141
- rb_define_const(mOIS, "KC_STOP", SWIG_From_int(static_cast< int >(OIS::KC_STOP)));
19142
- rb_define_const(mOIS, "KC_AX", SWIG_From_int(static_cast< int >(OIS::KC_AX)));
19143
- rb_define_const(mOIS, "KC_UNLABELED", SWIG_From_int(static_cast< int >(OIS::KC_UNLABELED)));
19144
- rb_define_const(mOIS, "KC_NEXTTRACK", SWIG_From_int(static_cast< int >(OIS::KC_NEXTTRACK)));
19145
- rb_define_const(mOIS, "KC_NUMPADENTER", SWIG_From_int(static_cast< int >(OIS::KC_NUMPADENTER)));
19146
- rb_define_const(mOIS, "KC_RCONTROL", SWIG_From_int(static_cast< int >(OIS::KC_RCONTROL)));
19147
- rb_define_const(mOIS, "KC_MUTE", SWIG_From_int(static_cast< int >(OIS::KC_MUTE)));
19148
- rb_define_const(mOIS, "KC_CALCULATOR", SWIG_From_int(static_cast< int >(OIS::KC_CALCULATOR)));
19149
- rb_define_const(mOIS, "KC_PLAYPAUSE", SWIG_From_int(static_cast< int >(OIS::KC_PLAYPAUSE)));
19150
- rb_define_const(mOIS, "KC_MEDIASTOP", SWIG_From_int(static_cast< int >(OIS::KC_MEDIASTOP)));
19151
- rb_define_const(mOIS, "KC_VOLUMEDOWN", SWIG_From_int(static_cast< int >(OIS::KC_VOLUMEDOWN)));
19152
- rb_define_const(mOIS, "KC_VOLUMEUP", SWIG_From_int(static_cast< int >(OIS::KC_VOLUMEUP)));
19153
- rb_define_const(mOIS, "KC_WEBHOME", SWIG_From_int(static_cast< int >(OIS::KC_WEBHOME)));
19154
- rb_define_const(mOIS, "KC_NUMPADCOMMA", SWIG_From_int(static_cast< int >(OIS::KC_NUMPADCOMMA)));
19155
- rb_define_const(mOIS, "KC_DIVIDE", SWIG_From_int(static_cast< int >(OIS::KC_DIVIDE)));
19156
- rb_define_const(mOIS, "KC_SYSRQ", SWIG_From_int(static_cast< int >(OIS::KC_SYSRQ)));
19157
- rb_define_const(mOIS, "KC_RMENU", SWIG_From_int(static_cast< int >(OIS::KC_RMENU)));
19158
- rb_define_const(mOIS, "KC_PAUSE", SWIG_From_int(static_cast< int >(OIS::KC_PAUSE)));
19159
- rb_define_const(mOIS, "KC_HOME", SWIG_From_int(static_cast< int >(OIS::KC_HOME)));
19160
- rb_define_const(mOIS, "KC_UP", SWIG_From_int(static_cast< int >(OIS::KC_UP)));
19161
- rb_define_const(mOIS, "KC_PGUP", SWIG_From_int(static_cast< int >(OIS::KC_PGUP)));
19162
- rb_define_const(mOIS, "KC_LEFT", SWIG_From_int(static_cast< int >(OIS::KC_LEFT)));
19163
- rb_define_const(mOIS, "KC_RIGHT", SWIG_From_int(static_cast< int >(OIS::KC_RIGHT)));
19164
- rb_define_const(mOIS, "KC_END", SWIG_From_int(static_cast< int >(OIS::KC_END)));
19165
- rb_define_const(mOIS, "KC_DOWN", SWIG_From_int(static_cast< int >(OIS::KC_DOWN)));
19166
- rb_define_const(mOIS, "KC_PGDOWN", SWIG_From_int(static_cast< int >(OIS::KC_PGDOWN)));
19167
- rb_define_const(mOIS, "KC_INSERT", SWIG_From_int(static_cast< int >(OIS::KC_INSERT)));
19168
- rb_define_const(mOIS, "KC_DELETE", SWIG_From_int(static_cast< int >(OIS::KC_DELETE)));
19169
- rb_define_const(mOIS, "KC_LWIN", SWIG_From_int(static_cast< int >(OIS::KC_LWIN)));
19170
- rb_define_const(mOIS, "KC_RWIN", SWIG_From_int(static_cast< int >(OIS::KC_RWIN)));
19171
- rb_define_const(mOIS, "KC_APPS", SWIG_From_int(static_cast< int >(OIS::KC_APPS)));
19172
- rb_define_const(mOIS, "KC_POWER", SWIG_From_int(static_cast< int >(OIS::KC_POWER)));
19173
- rb_define_const(mOIS, "KC_SLEEP", SWIG_From_int(static_cast< int >(OIS::KC_SLEEP)));
19174
- rb_define_const(mOIS, "KC_WAKE", SWIG_From_int(static_cast< int >(OIS::KC_WAKE)));
19175
- rb_define_const(mOIS, "KC_WEBSEARCH", SWIG_From_int(static_cast< int >(OIS::KC_WEBSEARCH)));
19176
- rb_define_const(mOIS, "KC_WEBFAVORITES", SWIG_From_int(static_cast< int >(OIS::KC_WEBFAVORITES)));
19177
- rb_define_const(mOIS, "KC_WEBREFRESH", SWIG_From_int(static_cast< int >(OIS::KC_WEBREFRESH)));
19178
- rb_define_const(mOIS, "KC_WEBSTOP", SWIG_From_int(static_cast< int >(OIS::KC_WEBSTOP)));
19179
- rb_define_const(mOIS, "KC_WEBFORWARD", SWIG_From_int(static_cast< int >(OIS::KC_WEBFORWARD)));
19180
- rb_define_const(mOIS, "KC_WEBBACK", SWIG_From_int(static_cast< int >(OIS::KC_WEBBACK)));
19181
- rb_define_const(mOIS, "KC_MYCOMPUTER", SWIG_From_int(static_cast< int >(OIS::KC_MYCOMPUTER)));
19182
- rb_define_const(mOIS, "KC_MAIL", SWIG_From_int(static_cast< int >(OIS::KC_MAIL)));
19183
- rb_define_const(mOIS, "KC_MEDIASELECT", SWIG_From_int(static_cast< int >(OIS::KC_MEDIASELECT)));
19184
-
19185
- SwigClassKeyEvent.klass = rb_define_class_under(mOIS, "KeyEvent", ((swig_class *) SWIGTYPE_p_OIS__EventArg->clientdata)->klass);
19039
+ rb_define_const(mOis, "KC_UNASSIGNED", SWIG_From_int(static_cast< int >(OIS::KC_UNASSIGNED)));
19040
+ rb_define_const(mOis, "KC_ESCAPE", SWIG_From_int(static_cast< int >(OIS::KC_ESCAPE)));
19041
+ rb_define_const(mOis, "KC_1", SWIG_From_int(static_cast< int >(OIS::KC_1)));
19042
+ rb_define_const(mOis, "KC_2", SWIG_From_int(static_cast< int >(OIS::KC_2)));
19043
+ rb_define_const(mOis, "KC_3", SWIG_From_int(static_cast< int >(OIS::KC_3)));
19044
+ rb_define_const(mOis, "KC_4", SWIG_From_int(static_cast< int >(OIS::KC_4)));
19045
+ rb_define_const(mOis, "KC_5", SWIG_From_int(static_cast< int >(OIS::KC_5)));
19046
+ rb_define_const(mOis, "KC_6", SWIG_From_int(static_cast< int >(OIS::KC_6)));
19047
+ rb_define_const(mOis, "KC_7", SWIG_From_int(static_cast< int >(OIS::KC_7)));
19048
+ rb_define_const(mOis, "KC_8", SWIG_From_int(static_cast< int >(OIS::KC_8)));
19049
+ rb_define_const(mOis, "KC_9", SWIG_From_int(static_cast< int >(OIS::KC_9)));
19050
+ rb_define_const(mOis, "KC_0", SWIG_From_int(static_cast< int >(OIS::KC_0)));
19051
+ rb_define_const(mOis, "KC_MINUS", SWIG_From_int(static_cast< int >(OIS::KC_MINUS)));
19052
+ rb_define_const(mOis, "KC_EQUALS", SWIG_From_int(static_cast< int >(OIS::KC_EQUALS)));
19053
+ rb_define_const(mOis, "KC_BACK", SWIG_From_int(static_cast< int >(OIS::KC_BACK)));
19054
+ rb_define_const(mOis, "KC_TAB", SWIG_From_int(static_cast< int >(OIS::KC_TAB)));
19055
+ rb_define_const(mOis, "KC_Q", SWIG_From_int(static_cast< int >(OIS::KC_Q)));
19056
+ rb_define_const(mOis, "KC_W", SWIG_From_int(static_cast< int >(OIS::KC_W)));
19057
+ rb_define_const(mOis, "KC_E", SWIG_From_int(static_cast< int >(OIS::KC_E)));
19058
+ rb_define_const(mOis, "KC_R", SWIG_From_int(static_cast< int >(OIS::KC_R)));
19059
+ rb_define_const(mOis, "KC_T", SWIG_From_int(static_cast< int >(OIS::KC_T)));
19060
+ rb_define_const(mOis, "KC_Y", SWIG_From_int(static_cast< int >(OIS::KC_Y)));
19061
+ rb_define_const(mOis, "KC_U", SWIG_From_int(static_cast< int >(OIS::KC_U)));
19062
+ rb_define_const(mOis, "KC_I", SWIG_From_int(static_cast< int >(OIS::KC_I)));
19063
+ rb_define_const(mOis, "KC_O", SWIG_From_int(static_cast< int >(OIS::KC_O)));
19064
+ rb_define_const(mOis, "KC_P", SWIG_From_int(static_cast< int >(OIS::KC_P)));
19065
+ rb_define_const(mOis, "KC_LBRACKET", SWIG_From_int(static_cast< int >(OIS::KC_LBRACKET)));
19066
+ rb_define_const(mOis, "KC_RBRACKET", SWIG_From_int(static_cast< int >(OIS::KC_RBRACKET)));
19067
+ rb_define_const(mOis, "KC_RETURN", SWIG_From_int(static_cast< int >(OIS::KC_RETURN)));
19068
+ rb_define_const(mOis, "KC_LCONTROL", SWIG_From_int(static_cast< int >(OIS::KC_LCONTROL)));
19069
+ rb_define_const(mOis, "KC_A", SWIG_From_int(static_cast< int >(OIS::KC_A)));
19070
+ rb_define_const(mOis, "KC_S", SWIG_From_int(static_cast< int >(OIS::KC_S)));
19071
+ rb_define_const(mOis, "KC_D", SWIG_From_int(static_cast< int >(OIS::KC_D)));
19072
+ rb_define_const(mOis, "KC_F", SWIG_From_int(static_cast< int >(OIS::KC_F)));
19073
+ rb_define_const(mOis, "KC_G", SWIG_From_int(static_cast< int >(OIS::KC_G)));
19074
+ rb_define_const(mOis, "KC_H", SWIG_From_int(static_cast< int >(OIS::KC_H)));
19075
+ rb_define_const(mOis, "KC_J", SWIG_From_int(static_cast< int >(OIS::KC_J)));
19076
+ rb_define_const(mOis, "KC_K", SWIG_From_int(static_cast< int >(OIS::KC_K)));
19077
+ rb_define_const(mOis, "KC_L", SWIG_From_int(static_cast< int >(OIS::KC_L)));
19078
+ rb_define_const(mOis, "KC_SEMICOLON", SWIG_From_int(static_cast< int >(OIS::KC_SEMICOLON)));
19079
+ rb_define_const(mOis, "KC_APOSTROPHE", SWIG_From_int(static_cast< int >(OIS::KC_APOSTROPHE)));
19080
+ rb_define_const(mOis, "KC_GRAVE", SWIG_From_int(static_cast< int >(OIS::KC_GRAVE)));
19081
+ rb_define_const(mOis, "KC_LSHIFT", SWIG_From_int(static_cast< int >(OIS::KC_LSHIFT)));
19082
+ rb_define_const(mOis, "KC_BACKSLASH", SWIG_From_int(static_cast< int >(OIS::KC_BACKSLASH)));
19083
+ rb_define_const(mOis, "KC_Z", SWIG_From_int(static_cast< int >(OIS::KC_Z)));
19084
+ rb_define_const(mOis, "KC_X", SWIG_From_int(static_cast< int >(OIS::KC_X)));
19085
+ rb_define_const(mOis, "KC_C", SWIG_From_int(static_cast< int >(OIS::KC_C)));
19086
+ rb_define_const(mOis, "KC_V", SWIG_From_int(static_cast< int >(OIS::KC_V)));
19087
+ rb_define_const(mOis, "KC_B", SWIG_From_int(static_cast< int >(OIS::KC_B)));
19088
+ rb_define_const(mOis, "KC_N", SWIG_From_int(static_cast< int >(OIS::KC_N)));
19089
+ rb_define_const(mOis, "KC_M", SWIG_From_int(static_cast< int >(OIS::KC_M)));
19090
+ rb_define_const(mOis, "KC_COMMA", SWIG_From_int(static_cast< int >(OIS::KC_COMMA)));
19091
+ rb_define_const(mOis, "KC_PERIOD", SWIG_From_int(static_cast< int >(OIS::KC_PERIOD)));
19092
+ rb_define_const(mOis, "KC_SLASH", SWIG_From_int(static_cast< int >(OIS::KC_SLASH)));
19093
+ rb_define_const(mOis, "KC_RSHIFT", SWIG_From_int(static_cast< int >(OIS::KC_RSHIFT)));
19094
+ rb_define_const(mOis, "KC_MULTIPLY", SWIG_From_int(static_cast< int >(OIS::KC_MULTIPLY)));
19095
+ rb_define_const(mOis, "KC_LMENU", SWIG_From_int(static_cast< int >(OIS::KC_LMENU)));
19096
+ rb_define_const(mOis, "KC_SPACE", SWIG_From_int(static_cast< int >(OIS::KC_SPACE)));
19097
+ rb_define_const(mOis, "KC_CAPITAL", SWIG_From_int(static_cast< int >(OIS::KC_CAPITAL)));
19098
+ rb_define_const(mOis, "KC_F1", SWIG_From_int(static_cast< int >(OIS::KC_F1)));
19099
+ rb_define_const(mOis, "KC_F2", SWIG_From_int(static_cast< int >(OIS::KC_F2)));
19100
+ rb_define_const(mOis, "KC_F3", SWIG_From_int(static_cast< int >(OIS::KC_F3)));
19101
+ rb_define_const(mOis, "KC_F4", SWIG_From_int(static_cast< int >(OIS::KC_F4)));
19102
+ rb_define_const(mOis, "KC_F5", SWIG_From_int(static_cast< int >(OIS::KC_F5)));
19103
+ rb_define_const(mOis, "KC_F6", SWIG_From_int(static_cast< int >(OIS::KC_F6)));
19104
+ rb_define_const(mOis, "KC_F7", SWIG_From_int(static_cast< int >(OIS::KC_F7)));
19105
+ rb_define_const(mOis, "KC_F8", SWIG_From_int(static_cast< int >(OIS::KC_F8)));
19106
+ rb_define_const(mOis, "KC_F9", SWIG_From_int(static_cast< int >(OIS::KC_F9)));
19107
+ rb_define_const(mOis, "KC_F10", SWIG_From_int(static_cast< int >(OIS::KC_F10)));
19108
+ rb_define_const(mOis, "KC_NUMLOCK", SWIG_From_int(static_cast< int >(OIS::KC_NUMLOCK)));
19109
+ rb_define_const(mOis, "KC_SCROLL", SWIG_From_int(static_cast< int >(OIS::KC_SCROLL)));
19110
+ rb_define_const(mOis, "KC_NUMPAD7", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD7)));
19111
+ rb_define_const(mOis, "KC_NUMPAD8", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD8)));
19112
+ rb_define_const(mOis, "KC_NUMPAD9", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD9)));
19113
+ rb_define_const(mOis, "KC_SUBTRACT", SWIG_From_int(static_cast< int >(OIS::KC_SUBTRACT)));
19114
+ rb_define_const(mOis, "KC_NUMPAD4", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD4)));
19115
+ rb_define_const(mOis, "KC_NUMPAD5", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD5)));
19116
+ rb_define_const(mOis, "KC_NUMPAD6", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD6)));
19117
+ rb_define_const(mOis, "KC_ADD", SWIG_From_int(static_cast< int >(OIS::KC_ADD)));
19118
+ rb_define_const(mOis, "KC_NUMPAD1", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD1)));
19119
+ rb_define_const(mOis, "KC_NUMPAD2", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD2)));
19120
+ rb_define_const(mOis, "KC_NUMPAD3", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD3)));
19121
+ rb_define_const(mOis, "KC_NUMPAD0", SWIG_From_int(static_cast< int >(OIS::KC_NUMPAD0)));
19122
+ rb_define_const(mOis, "KC_DECIMAL", SWIG_From_int(static_cast< int >(OIS::KC_DECIMAL)));
19123
+ rb_define_const(mOis, "KC_OEM_102", SWIG_From_int(static_cast< int >(OIS::KC_OEM_102)));
19124
+ rb_define_const(mOis, "KC_F11", SWIG_From_int(static_cast< int >(OIS::KC_F11)));
19125
+ rb_define_const(mOis, "KC_F12", SWIG_From_int(static_cast< int >(OIS::KC_F12)));
19126
+ rb_define_const(mOis, "KC_F13", SWIG_From_int(static_cast< int >(OIS::KC_F13)));
19127
+ rb_define_const(mOis, "KC_F14", SWIG_From_int(static_cast< int >(OIS::KC_F14)));
19128
+ rb_define_const(mOis, "KC_F15", SWIG_From_int(static_cast< int >(OIS::KC_F15)));
19129
+ rb_define_const(mOis, "KC_KANA", SWIG_From_int(static_cast< int >(OIS::KC_KANA)));
19130
+ rb_define_const(mOis, "KC_ABNT_C1", SWIG_From_int(static_cast< int >(OIS::KC_ABNT_C1)));
19131
+ rb_define_const(mOis, "KC_CONVERT", SWIG_From_int(static_cast< int >(OIS::KC_CONVERT)));
19132
+ rb_define_const(mOis, "KC_NOCONVERT", SWIG_From_int(static_cast< int >(OIS::KC_NOCONVERT)));
19133
+ rb_define_const(mOis, "KC_YEN", SWIG_From_int(static_cast< int >(OIS::KC_YEN)));
19134
+ rb_define_const(mOis, "KC_ABNT_C2", SWIG_From_int(static_cast< int >(OIS::KC_ABNT_C2)));
19135
+ rb_define_const(mOis, "KC_NUMPADEQUALS", SWIG_From_int(static_cast< int >(OIS::KC_NUMPADEQUALS)));
19136
+ rb_define_const(mOis, "KC_PREVTRACK", SWIG_From_int(static_cast< int >(OIS::KC_PREVTRACK)));
19137
+ rb_define_const(mOis, "KC_AT", SWIG_From_int(static_cast< int >(OIS::KC_AT)));
19138
+ rb_define_const(mOis, "KC_COLON", SWIG_From_int(static_cast< int >(OIS::KC_COLON)));
19139
+ rb_define_const(mOis, "KC_UNDERLINE", SWIG_From_int(static_cast< int >(OIS::KC_UNDERLINE)));
19140
+ rb_define_const(mOis, "KC_KANJI", SWIG_From_int(static_cast< int >(OIS::KC_KANJI)));
19141
+ rb_define_const(mOis, "KC_STOP", SWIG_From_int(static_cast< int >(OIS::KC_STOP)));
19142
+ rb_define_const(mOis, "KC_AX", SWIG_From_int(static_cast< int >(OIS::KC_AX)));
19143
+ rb_define_const(mOis, "KC_UNLABELED", SWIG_From_int(static_cast< int >(OIS::KC_UNLABELED)));
19144
+ rb_define_const(mOis, "KC_NEXTTRACK", SWIG_From_int(static_cast< int >(OIS::KC_NEXTTRACK)));
19145
+ rb_define_const(mOis, "KC_NUMPADENTER", SWIG_From_int(static_cast< int >(OIS::KC_NUMPADENTER)));
19146
+ rb_define_const(mOis, "KC_RCONTROL", SWIG_From_int(static_cast< int >(OIS::KC_RCONTROL)));
19147
+ rb_define_const(mOis, "KC_MUTE", SWIG_From_int(static_cast< int >(OIS::KC_MUTE)));
19148
+ rb_define_const(mOis, "KC_CALCULATOR", SWIG_From_int(static_cast< int >(OIS::KC_CALCULATOR)));
19149
+ rb_define_const(mOis, "KC_PLAYPAUSE", SWIG_From_int(static_cast< int >(OIS::KC_PLAYPAUSE)));
19150
+ rb_define_const(mOis, "KC_MEDIASTOP", SWIG_From_int(static_cast< int >(OIS::KC_MEDIASTOP)));
19151
+ rb_define_const(mOis, "KC_VOLUMEDOWN", SWIG_From_int(static_cast< int >(OIS::KC_VOLUMEDOWN)));
19152
+ rb_define_const(mOis, "KC_VOLUMEUP", SWIG_From_int(static_cast< int >(OIS::KC_VOLUMEUP)));
19153
+ rb_define_const(mOis, "KC_WEBHOME", SWIG_From_int(static_cast< int >(OIS::KC_WEBHOME)));
19154
+ rb_define_const(mOis, "KC_NUMPADCOMMA", SWIG_From_int(static_cast< int >(OIS::KC_NUMPADCOMMA)));
19155
+ rb_define_const(mOis, "KC_DIVIDE", SWIG_From_int(static_cast< int >(OIS::KC_DIVIDE)));
19156
+ rb_define_const(mOis, "KC_SYSRQ", SWIG_From_int(static_cast< int >(OIS::KC_SYSRQ)));
19157
+ rb_define_const(mOis, "KC_RMENU", SWIG_From_int(static_cast< int >(OIS::KC_RMENU)));
19158
+ rb_define_const(mOis, "KC_PAUSE", SWIG_From_int(static_cast< int >(OIS::KC_PAUSE)));
19159
+ rb_define_const(mOis, "KC_HOME", SWIG_From_int(static_cast< int >(OIS::KC_HOME)));
19160
+ rb_define_const(mOis, "KC_UP", SWIG_From_int(static_cast< int >(OIS::KC_UP)));
19161
+ rb_define_const(mOis, "KC_PGUP", SWIG_From_int(static_cast< int >(OIS::KC_PGUP)));
19162
+ rb_define_const(mOis, "KC_LEFT", SWIG_From_int(static_cast< int >(OIS::KC_LEFT)));
19163
+ rb_define_const(mOis, "KC_RIGHT", SWIG_From_int(static_cast< int >(OIS::KC_RIGHT)));
19164
+ rb_define_const(mOis, "KC_END", SWIG_From_int(static_cast< int >(OIS::KC_END)));
19165
+ rb_define_const(mOis, "KC_DOWN", SWIG_From_int(static_cast< int >(OIS::KC_DOWN)));
19166
+ rb_define_const(mOis, "KC_PGDOWN", SWIG_From_int(static_cast< int >(OIS::KC_PGDOWN)));
19167
+ rb_define_const(mOis, "KC_INSERT", SWIG_From_int(static_cast< int >(OIS::KC_INSERT)));
19168
+ rb_define_const(mOis, "KC_DELETE", SWIG_From_int(static_cast< int >(OIS::KC_DELETE)));
19169
+ rb_define_const(mOis, "KC_LWIN", SWIG_From_int(static_cast< int >(OIS::KC_LWIN)));
19170
+ rb_define_const(mOis, "KC_RWIN", SWIG_From_int(static_cast< int >(OIS::KC_RWIN)));
19171
+ rb_define_const(mOis, "KC_APPS", SWIG_From_int(static_cast< int >(OIS::KC_APPS)));
19172
+ rb_define_const(mOis, "KC_POWER", SWIG_From_int(static_cast< int >(OIS::KC_POWER)));
19173
+ rb_define_const(mOis, "KC_SLEEP", SWIG_From_int(static_cast< int >(OIS::KC_SLEEP)));
19174
+ rb_define_const(mOis, "KC_WAKE", SWIG_From_int(static_cast< int >(OIS::KC_WAKE)));
19175
+ rb_define_const(mOis, "KC_WEBSEARCH", SWIG_From_int(static_cast< int >(OIS::KC_WEBSEARCH)));
19176
+ rb_define_const(mOis, "KC_WEBFAVORITES", SWIG_From_int(static_cast< int >(OIS::KC_WEBFAVORITES)));
19177
+ rb_define_const(mOis, "KC_WEBREFRESH", SWIG_From_int(static_cast< int >(OIS::KC_WEBREFRESH)));
19178
+ rb_define_const(mOis, "KC_WEBSTOP", SWIG_From_int(static_cast< int >(OIS::KC_WEBSTOP)));
19179
+ rb_define_const(mOis, "KC_WEBFORWARD", SWIG_From_int(static_cast< int >(OIS::KC_WEBFORWARD)));
19180
+ rb_define_const(mOis, "KC_WEBBACK", SWIG_From_int(static_cast< int >(OIS::KC_WEBBACK)));
19181
+ rb_define_const(mOis, "KC_MYCOMPUTER", SWIG_From_int(static_cast< int >(OIS::KC_MYCOMPUTER)));
19182
+ rb_define_const(mOis, "KC_MAIL", SWIG_From_int(static_cast< int >(OIS::KC_MAIL)));
19183
+ rb_define_const(mOis, "KC_MEDIASELECT", SWIG_From_int(static_cast< int >(OIS::KC_MEDIASELECT)));
19184
+
19185
+ SwigClassKeyEvent.klass = rb_define_class_under(mOis, "KeyEvent", ((swig_class *) SWIGTYPE_p_OIS__EventArg->clientdata)->klass);
19186
19186
  SWIG_TypeClientData(SWIGTYPE_p_OIS__KeyEvent, (void *) &SwigClassKeyEvent);
19187
19187
  rb_define_alloc_func(SwigClassKeyEvent.klass, _wrap_KeyEvent_allocate);
19188
19188
  rb_define_method(SwigClassKeyEvent.klass, "initialize", VALUEFUNC(_wrap_new_KeyEvent), -1);
@@ -19192,48 +19192,48 @@ SWIGEXPORT void Init_OIS(void) {
19192
19192
  SwigClassKeyEvent.mark = 0;
19193
19193
  SwigClassKeyEvent.destroy = (void (*)(void *)) free_OIS_KeyEvent;
19194
19194
  SwigClassKeyEvent.trackObjects = 0;
19195
- rb_define_module_function(mOIS, "disown_KeyListener", VALUEFUNC(_wrap_disown_KeyListener), -1);
19195
+ rb_define_module_function(mOis, "disown_KeyListener", VALUEFUNC(_wrap_disown_KeyListener), -1);
19196
19196
 
19197
- SwigClassKeyListener.klass = rb_define_class_under(mOIS, "KeyListener", rb_cObject);
19197
+ SwigClassKeyListener.klass = rb_define_class_under(mOis, "KeyListener", rb_cObject);
19198
19198
  SWIG_TypeClientData(SWIGTYPE_p_OIS__KeyListener, (void *) &SwigClassKeyListener);
19199
19199
  rb_define_alloc_func(SwigClassKeyListener.klass, _wrap_KeyListener_allocate);
19200
19200
  rb_define_method(SwigClassKeyListener.klass, "initialize", VALUEFUNC(_wrap_new_KeyListener), -1);
19201
- rb_define_method(SwigClassKeyListener.klass, "keyPressed", VALUEFUNC(_wrap_KeyListener_keyPressed), -1);
19202
- rb_define_method(SwigClassKeyListener.klass, "keyReleased", VALUEFUNC(_wrap_KeyListener_keyReleased), -1);
19201
+ rb_define_method(SwigClassKeyListener.klass, "key_pressed", VALUEFUNC(_wrap_KeyListener_key_pressed), -1);
19202
+ rb_define_method(SwigClassKeyListener.klass, "key_released", VALUEFUNC(_wrap_KeyListener_key_released), -1);
19203
19203
  SwigClassKeyListener.mark = 0;
19204
19204
  SwigClassKeyListener.destroy = (void (*)(void *)) free_OIS_KeyListener;
19205
19205
  SwigClassKeyListener.trackObjects = 0;
19206
19206
 
19207
- SwigClassKeyboard.klass = rb_define_class_under(mOIS, "Keyboard", ((swig_class *) SWIGTYPE_p_OIS__Object->clientdata)->klass);
19207
+ SwigClassKeyboard.klass = rb_define_class_under(mOis, "Keyboard", ((swig_class *) SWIGTYPE_p_OIS__Object->clientdata)->klass);
19208
19208
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Keyboard, (void *) &SwigClassKeyboard);
19209
19209
  rb_undef_alloc_func(SwigClassKeyboard.klass);
19210
- rb_define_method(SwigClassKeyboard.klass, "isKeyDown", VALUEFUNC(_wrap_Keyboard_isKeyDown), -1);
19211
- rb_define_method(SwigClassKeyboard.klass, "setEventCallback", VALUEFUNC(_wrap_Keyboard_setEventCallback), -1);
19212
- rb_define_method(SwigClassKeyboard.klass, "getEventCallback", VALUEFUNC(_wrap_Keyboard_getEventCallback), -1);
19210
+ rb_define_method(SwigClassKeyboard.klass, "is_key_down", VALUEFUNC(_wrap_Keyboard_is_key_down), -1);
19211
+ rb_define_method(SwigClassKeyboard.klass, "set_event_callback", VALUEFUNC(_wrap_Keyboard_set_event_callback), -1);
19212
+ rb_define_method(SwigClassKeyboard.klass, "get_event_callback", VALUEFUNC(_wrap_Keyboard_get_event_callback), -1);
19213
19213
  rb_define_const(SwigClassKeyboard.klass, "Off", SWIG_From_int(static_cast< int >(OIS::Keyboard::Off)));
19214
19214
  rb_define_const(SwigClassKeyboard.klass, "Unicode", SWIG_From_int(static_cast< int >(OIS::Keyboard::Unicode)));
19215
19215
  rb_define_const(SwigClassKeyboard.klass, "Ascii", SWIG_From_int(static_cast< int >(OIS::Keyboard::Ascii)));
19216
- rb_define_method(SwigClassKeyboard.klass, "setTextTranslation", VALUEFUNC(_wrap_Keyboard_setTextTranslation), -1);
19217
- rb_define_method(SwigClassKeyboard.klass, "getTextTranslation", VALUEFUNC(_wrap_Keyboard_getTextTranslation), -1);
19218
- rb_define_method(SwigClassKeyboard.klass, "getAsString", VALUEFUNC(_wrap_Keyboard_getAsString), -1);
19216
+ rb_define_method(SwigClassKeyboard.klass, "set_text_translation", VALUEFUNC(_wrap_Keyboard_set_text_translation), -1);
19217
+ rb_define_method(SwigClassKeyboard.klass, "get_text_translation", VALUEFUNC(_wrap_Keyboard_get_text_translation), -1);
19218
+ rb_define_method(SwigClassKeyboard.klass, "get_as_string", VALUEFUNC(_wrap_Keyboard_get_as_string), -1);
19219
19219
  rb_define_const(SwigClassKeyboard.klass, "Shift", SWIG_From_int(static_cast< int >(OIS::Keyboard::Shift)));
19220
19220
  rb_define_const(SwigClassKeyboard.klass, "Ctrl", SWIG_From_int(static_cast< int >(OIS::Keyboard::Ctrl)));
19221
19221
  rb_define_const(SwigClassKeyboard.klass, "Alt", SWIG_From_int(static_cast< int >(OIS::Keyboard::Alt)));
19222
- rb_define_method(SwigClassKeyboard.klass, "isModifierDown", VALUEFUNC(_wrap_Keyboard_isModifierDown), -1);
19223
- rb_define_method(SwigClassKeyboard.klass, "copyKeyStates", VALUEFUNC(_wrap_Keyboard_copyKeyStates), -1);
19222
+ rb_define_method(SwigClassKeyboard.klass, "is_modifier_down", VALUEFUNC(_wrap_Keyboard_is_modifier_down), -1);
19223
+ rb_define_method(SwigClassKeyboard.klass, "copy_key_states", VALUEFUNC(_wrap_Keyboard_copy_key_states), -1);
19224
19224
  SwigClassKeyboard.mark = 0;
19225
19225
  SwigClassKeyboard.destroy = (void (*)(void *)) free_OIS_Keyboard;
19226
19226
  SwigClassKeyboard.trackObjects = 0;
19227
- rb_define_const(mOIS, "MB_Left", SWIG_From_int(static_cast< int >(OIS::MB_Left)));
19228
- rb_define_const(mOIS, "MB_Right", SWIG_From_int(static_cast< int >(OIS::MB_Right)));
19229
- rb_define_const(mOIS, "MB_Middle", SWIG_From_int(static_cast< int >(OIS::MB_Middle)));
19230
- rb_define_const(mOIS, "MB_Button3", SWIG_From_int(static_cast< int >(OIS::MB_Button3)));
19231
- rb_define_const(mOIS, "MB_Button4", SWIG_From_int(static_cast< int >(OIS::MB_Button4)));
19232
- rb_define_const(mOIS, "MB_Button5", SWIG_From_int(static_cast< int >(OIS::MB_Button5)));
19233
- rb_define_const(mOIS, "MB_Button6", SWIG_From_int(static_cast< int >(OIS::MB_Button6)));
19234
- rb_define_const(mOIS, "MB_Button7", SWIG_From_int(static_cast< int >(OIS::MB_Button7)));
19235
-
19236
- SwigClassMouseState.klass = rb_define_class_under(mOIS, "MouseState", rb_cObject);
19227
+ rb_define_const(mOis, "MB_Left", SWIG_From_int(static_cast< int >(OIS::MB_Left)));
19228
+ rb_define_const(mOis, "MB_Right", SWIG_From_int(static_cast< int >(OIS::MB_Right)));
19229
+ rb_define_const(mOis, "MB_Middle", SWIG_From_int(static_cast< int >(OIS::MB_Middle)));
19230
+ rb_define_const(mOis, "MB_Button3", SWIG_From_int(static_cast< int >(OIS::MB_Button3)));
19231
+ rb_define_const(mOis, "MB_Button4", SWIG_From_int(static_cast< int >(OIS::MB_Button4)));
19232
+ rb_define_const(mOis, "MB_Button5", SWIG_From_int(static_cast< int >(OIS::MB_Button5)));
19233
+ rb_define_const(mOis, "MB_Button6", SWIG_From_int(static_cast< int >(OIS::MB_Button6)));
19234
+ rb_define_const(mOis, "MB_Button7", SWIG_From_int(static_cast< int >(OIS::MB_Button7)));
19235
+
19236
+ SwigClassMouseState.klass = rb_define_class_under(mOis, "MouseState", rb_cObject);
19237
19237
  SWIG_TypeClientData(SWIGTYPE_p_OIS__MouseState, (void *) &SwigClassMouseState);
19238
19238
  rb_define_alloc_func(SwigClassMouseState.klass, _wrap_MouseState_allocate);
19239
19239
  rb_define_method(SwigClassMouseState.klass, "initialize", VALUEFUNC(_wrap_new_MouseState), -1);
@@ -19249,13 +19249,13 @@ SWIGEXPORT void Init_OIS(void) {
19249
19249
  rb_define_method(SwigClassMouseState.klass, "Z", VALUEFUNC(_wrap_MouseState_Z_get), -1);
19250
19250
  rb_define_method(SwigClassMouseState.klass, "buttons=", VALUEFUNC(_wrap_MouseState_buttons_set), -1);
19251
19251
  rb_define_method(SwigClassMouseState.klass, "buttons", VALUEFUNC(_wrap_MouseState_buttons_get), -1);
19252
- rb_define_method(SwigClassMouseState.klass, "buttonDown", VALUEFUNC(_wrap_MouseState_buttonDown), -1);
19252
+ rb_define_method(SwigClassMouseState.klass, "button_down", VALUEFUNC(_wrap_MouseState_button_down), -1);
19253
19253
  rb_define_method(SwigClassMouseState.klass, "clear", VALUEFUNC(_wrap_MouseState_clear), -1);
19254
19254
  SwigClassMouseState.mark = 0;
19255
19255
  SwigClassMouseState.destroy = (void (*)(void *)) free_OIS_MouseState;
19256
19256
  SwigClassMouseState.trackObjects = 0;
19257
19257
 
19258
- SwigClassMouseEvent.klass = rb_define_class_under(mOIS, "MouseEvent", ((swig_class *) SWIGTYPE_p_OIS__EventArg->clientdata)->klass);
19258
+ SwigClassMouseEvent.klass = rb_define_class_under(mOis, "MouseEvent", ((swig_class *) SWIGTYPE_p_OIS__EventArg->clientdata)->klass);
19259
19259
  SWIG_TypeClientData(SWIGTYPE_p_OIS__MouseEvent, (void *) &SwigClassMouseEvent);
19260
19260
  rb_define_alloc_func(SwigClassMouseEvent.klass, _wrap_MouseEvent_allocate);
19261
19261
  rb_define_method(SwigClassMouseEvent.klass, "initialize", VALUEFUNC(_wrap_new_MouseEvent), -1);
@@ -19263,48 +19263,48 @@ SWIGEXPORT void Init_OIS(void) {
19263
19263
  SwigClassMouseEvent.mark = 0;
19264
19264
  SwigClassMouseEvent.destroy = (void (*)(void *)) free_OIS_MouseEvent;
19265
19265
  SwigClassMouseEvent.trackObjects = 0;
19266
- rb_define_module_function(mOIS, "disown_MouseListener", VALUEFUNC(_wrap_disown_MouseListener), -1);
19266
+ rb_define_module_function(mOis, "disown_MouseListener", VALUEFUNC(_wrap_disown_MouseListener), -1);
19267
19267
 
19268
- SwigClassMouseListener.klass = rb_define_class_under(mOIS, "MouseListener", rb_cObject);
19268
+ SwigClassMouseListener.klass = rb_define_class_under(mOis, "MouseListener", rb_cObject);
19269
19269
  SWIG_TypeClientData(SWIGTYPE_p_OIS__MouseListener, (void *) &SwigClassMouseListener);
19270
19270
  rb_define_alloc_func(SwigClassMouseListener.klass, _wrap_MouseListener_allocate);
19271
19271
  rb_define_method(SwigClassMouseListener.klass, "initialize", VALUEFUNC(_wrap_new_MouseListener), -1);
19272
- rb_define_method(SwigClassMouseListener.klass, "mouseMoved", VALUEFUNC(_wrap_MouseListener_mouseMoved), -1);
19273
- rb_define_method(SwigClassMouseListener.klass, "mousePressed", VALUEFUNC(_wrap_MouseListener_mousePressed), -1);
19274
- rb_define_method(SwigClassMouseListener.klass, "mouseReleased", VALUEFUNC(_wrap_MouseListener_mouseReleased), -1);
19272
+ rb_define_method(SwigClassMouseListener.klass, "mouse_moved", VALUEFUNC(_wrap_MouseListener_mouse_moved), -1);
19273
+ rb_define_method(SwigClassMouseListener.klass, "mouse_pressed", VALUEFUNC(_wrap_MouseListener_mouse_pressed), -1);
19274
+ rb_define_method(SwigClassMouseListener.klass, "mouse_released", VALUEFUNC(_wrap_MouseListener_mouse_released), -1);
19275
19275
  SwigClassMouseListener.mark = 0;
19276
19276
  SwigClassMouseListener.destroy = (void (*)(void *)) free_OIS_MouseListener;
19277
19277
  SwigClassMouseListener.trackObjects = 0;
19278
19278
 
19279
- SwigClassMouse.klass = rb_define_class_under(mOIS, "Mouse", ((swig_class *) SWIGTYPE_p_OIS__Object->clientdata)->klass);
19279
+ SwigClassMouse.klass = rb_define_class_under(mOis, "Mouse", ((swig_class *) SWIGTYPE_p_OIS__Object->clientdata)->klass);
19280
19280
  SWIG_TypeClientData(SWIGTYPE_p_OIS__Mouse, (void *) &SwigClassMouse);
19281
19281
  rb_undef_alloc_func(SwigClassMouse.klass);
19282
- rb_define_method(SwigClassMouse.klass, "setEventCallback", VALUEFUNC(_wrap_Mouse_setEventCallback), -1);
19283
- rb_define_method(SwigClassMouse.klass, "getEventCallback", VALUEFUNC(_wrap_Mouse_getEventCallback), -1);
19284
- rb_define_method(SwigClassMouse.klass, "getMouseState", VALUEFUNC(_wrap_Mouse_getMouseState), -1);
19282
+ rb_define_method(SwigClassMouse.klass, "set_event_callback", VALUEFUNC(_wrap_Mouse_set_event_callback), -1);
19283
+ rb_define_method(SwigClassMouse.klass, "get_event_callback", VALUEFUNC(_wrap_Mouse_get_event_callback), -1);
19284
+ rb_define_method(SwigClassMouse.klass, "get_mouse_state", VALUEFUNC(_wrap_Mouse_get_mouse_state), -1);
19285
19285
  SwigClassMouse.mark = 0;
19286
19286
  SwigClassMouse.destroy = (void (*)(void *)) free_OIS_Mouse;
19287
19287
  SwigClassMouse.trackObjects = 0;
19288
19288
 
19289
- SwigClassInputManager.klass = rb_define_class_under(mOIS, "InputManager", rb_cObject);
19289
+ SwigClassInputManager.klass = rb_define_class_under(mOis, "InputManager", rb_cObject);
19290
19290
  SWIG_TypeClientData(SWIGTYPE_p_OIS__InputManager, (void *) &SwigClassInputManager);
19291
19291
  rb_undef_alloc_func(SwigClassInputManager.klass);
19292
- rb_define_singleton_method(SwigClassInputManager.klass, "getVersionNumber", VALUEFUNC(_wrap_InputManager_getVersionNumber), -1);
19293
- rb_define_method(SwigClassInputManager.klass, "getVersionName", VALUEFUNC(_wrap_InputManager_getVersionName), -1);
19294
- rb_define_singleton_method(SwigClassInputManager.klass, "createInputSystem", VALUEFUNC(_wrap_InputManager_createInputSystem), -1);
19295
- rb_define_singleton_method(SwigClassInputManager.klass, "destroyInputSystem", VALUEFUNC(_wrap_InputManager_destroyInputSystem), -1);
19296
- rb_define_method(SwigClassInputManager.klass, "inputSystemName", VALUEFUNC(_wrap_InputManager_inputSystemName), -1);
19297
- rb_define_method(SwigClassInputManager.klass, "getNumberOfDevices", VALUEFUNC(_wrap_InputManager_getNumberOfDevices), -1);
19298
- rb_define_method(SwigClassInputManager.klass, "listFreeDevices", VALUEFUNC(_wrap_InputManager_listFreeDevices), -1);
19299
- rb_define_method(SwigClassInputManager.klass, "createInputObject", VALUEFUNC(_wrap_InputManager_createInputObject), -1);
19300
- rb_define_method(SwigClassInputManager.klass, "destroyInputObject", VALUEFUNC(_wrap_InputManager_destroyInputObject), -1);
19301
- rb_define_method(SwigClassInputManager.klass, "addFactoryCreator", VALUEFUNC(_wrap_InputManager_addFactoryCreator), -1);
19302
- rb_define_method(SwigClassInputManager.klass, "removeFactoryCreator", VALUEFUNC(_wrap_InputManager_removeFactoryCreator), -1);
19292
+ rb_define_singleton_method(SwigClassInputManager.klass, "get_version_number", VALUEFUNC(_wrap_InputManager_get_version_number), -1);
19293
+ rb_define_method(SwigClassInputManager.klass, "get_version_name", VALUEFUNC(_wrap_InputManager_get_version_name), -1);
19294
+ rb_define_singleton_method(SwigClassInputManager.klass, "create_input_system", VALUEFUNC(_wrap_InputManager_create_input_system), -1);
19295
+ rb_define_singleton_method(SwigClassInputManager.klass, "destroy_input_system", VALUEFUNC(_wrap_InputManager_destroy_input_system), -1);
19296
+ rb_define_method(SwigClassInputManager.klass, "input_system_name", VALUEFUNC(_wrap_InputManager_input_system_name), -1);
19297
+ rb_define_method(SwigClassInputManager.klass, "get_number_of_devices", VALUEFUNC(_wrap_InputManager_get_number_of_devices), -1);
19298
+ rb_define_method(SwigClassInputManager.klass, "list_free_devices", VALUEFUNC(_wrap_InputManager_list_free_devices), -1);
19299
+ rb_define_method(SwigClassInputManager.klass, "create_input_object", VALUEFUNC(_wrap_InputManager_create_input_object), -1);
19300
+ rb_define_method(SwigClassInputManager.klass, "destroy_input_object", VALUEFUNC(_wrap_InputManager_destroy_input_object), -1);
19301
+ rb_define_method(SwigClassInputManager.klass, "add_factory_creator", VALUEFUNC(_wrap_InputManager_add_factory_creator), -1);
19302
+ rb_define_method(SwigClassInputManager.klass, "remove_factory_creator", VALUEFUNC(_wrap_InputManager_remove_factory_creator), -1);
19303
19303
  rb_define_const(SwigClassInputManager.klass, "AddOn_All", SWIG_From_int(static_cast< int >(OIS::InputManager::AddOn_All)));
19304
19304
  rb_define_const(SwigClassInputManager.klass, "AddOn_LIRC", SWIG_From_int(static_cast< int >(OIS::InputManager::AddOn_LIRC)));
19305
19305
  rb_define_const(SwigClassInputManager.klass, "AddOn_WiiMote", SWIG_From_int(static_cast< int >(OIS::InputManager::AddOn_WiiMote)));
19306
- rb_define_method(SwigClassInputManager.klass, "enableAddOnFactory", VALUEFUNC(_wrap_InputManager_enableAddOnFactory), -1);
19307
- rb_define_method(SwigClassInputManager.klass, "createKeyboard", VALUEFUNC(_wrap_InputManager_createKeyboard), -1);
19306
+ rb_define_method(SwigClassInputManager.klass, "enable_add_on_factory", VALUEFUNC(_wrap_InputManager_enable_add_on_factory), -1);
19307
+ rb_define_method(SwigClassInputManager.klass, "create_keyboard", VALUEFUNC(_wrap_InputManager_create_keyboard), -1);
19308
19308
  SwigClassInputManager.mark = 0;
19309
19309
  SwigClassInputManager.trackObjects = 0;
19310
19310
  }