Class: ProconBypassMan::ButtonsSettingConfiguration::Layer
- Inherits:
-
Object
- Object
- ProconBypassMan::ButtonsSettingConfiguration::Layer
- Defined in:
- lib/procon_bypass_man/buttons_setting_configuration/layer.rb
Instance Attribute Summary collapse
-
#disable_macros ⇒ Object
Returns the value of attribute disable_macros.
-
#disables ⇒ Object
Returns the value of attribute disables.
-
#flips ⇒ Object
Returns the value of attribute flips.
-
#left_analog_stick_caps ⇒ Object
Returns the value of attribute left_analog_stick_caps.
-
#macros ⇒ Object
Returns the value of attribute macros.
-
#mode ⇒ Object
Returns the value of attribute mode.
-
#remaps ⇒ Object
Returns the value of attribute remaps.
Instance Method Summary collapse
- #disable(button) ⇒ Object
- #disable_macro(name, if_pressed: nil) ⇒ Object
- #flip(button, if_pressed: false, force_neutral: nil, flip_interval: nil) ⇒ Object
- #flip_buttons ⇒ Array
-
#initialize(context, mode: :manual) ⇒ Layer
constructor
A new instance of Layer.
- #left_analog_stick_cap(cap: nil, if_pressed: nil, force_neutral: nil, combined_press_is_pressed: nil) ⇒ Object
- #macro(name, if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) ⇒ Object
-
#open_macro(name, steps: [], if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) ⇒ Object
設定ファイルに直接マクロを打ち込める @paramh macroの本体.
- #remap(button, to:) ⇒ Object
- #to_hash ⇒ Hash
- #to_json ⇒ String
Constructor Details
#initialize(context, mode: :manual) ⇒ Layer
Returns a new instance of Layer.
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 6 def initialize(context, mode: :manual) @context = context self.mode = mode self.flips = {} self.macros = {} self.disable_macros = [] self.remaps = {} self.left_analog_stick_caps = [] self.disables = [] end |
Instance Attribute Details
#disable_macros ⇒ Object
Returns the value of attribute disable_macros.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def disable_macros @disable_macros end |
#disables ⇒ Object
Returns the value of attribute disables.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def disables @disables end |
#flips ⇒ Object
Returns the value of attribute flips.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def flips @flips end |
#left_analog_stick_caps ⇒ Object
Returns the value of attribute left_analog_stick_caps.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def left_analog_stick_caps @left_analog_stick_caps end |
#macros ⇒ Object
Returns the value of attribute macros.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def macros @macros end |
#mode ⇒ Object
Returns the value of attribute mode.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def mode @mode end |
#remaps ⇒ Object
Returns the value of attribute remaps.
4 5 6 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 4 def remaps @remaps end |
Instance Method Details
#disable(button) ⇒ Object
219 220 221 222 223 224 225 226 227 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 219 def disable() ParamNormalizer::ButtonList.new().to_value!.each do |disable| disables << disable end disables.uniq! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. disableにはボタンを渡してください." return end |
#disable_macro(name, if_pressed: nil) ⇒ Object
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 141 def disable_macro(name, if_pressed: nil) if name.nil? Kernel.warn "設定ファイルに記述ミスがあります. disable_macroのnameにはmacro nameかクラス名の名前を渡してください." return end hash = { name: name.to_s.to_sym, if_pressed: [] } begin if(if_pressed = ParamNormalizer::DisableMacroIfPressed.new(if_pressed).to_value!) hash[:if_pressed] = if_pressed end rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. disable_macroのif_pressedにはボタンを渡してください." return end disable_macros << hash end |
#flip(button, if_pressed: false, force_neutral: nil, flip_interval: nil) ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 18 def flip(, if_pressed: false, force_neutral: nil, flip_interval: nil) begin = ParamNormalizer::Button.new().to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. flipの第一引数にはボタンを渡してください." return end begin if_pressed = ParamNormalizer::FlipIfPressed.new(if_pressed, button: ).to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. flipのif_pressedにはボタンを渡してください." return end hash = { if_pressed: if_pressed } begin if(force_neutral = ParamNormalizer::ForceNeutral.new(force_neutral).to_value!) hash[:force_neutral] = force_neutral end rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. flipのforce_neutralにはボタンを渡してください." return end if flip_interval if /\A(\d+)F\z/i =~ flip_interval interval = ((frame = $1.to_i) / 60.0).floor(2) else raise "8F みたいなフォーマットで入力してください" end hash[:flip_interval] = interval end self.flips[] = hash end |
#flip_buttons ⇒ Array
230 231 232 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 230 def flips end |
#left_analog_stick_cap(cap: nil, if_pressed: nil, force_neutral: nil, combined_press_is_pressed: nil) ⇒ Object
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 176 def left_analog_stick_cap(cap: nil, if_pressed: nil, force_neutral: nil, combined_press_is_pressed: nil) case cap when Integer # OK when Float cap = cap.to_i else Kernel.warn "設定ファイルに記述ミスがあります. left_analog_stick_capのcapで未対応の値を受け取りました." return end hash = { cap: cap } begin if(if_pressed = ParamNormalizer::IfPressedAllowsFalsy.new(if_pressed).to_value!) hash[:if_pressed] = if_pressed end rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. left_analog_stick_capのif_pressedにはボタンを渡してください." return end begin if(force_neutral = ParamNormalizer::ForceNeutral.new(force_neutral).to_value!) hash[:force_neutral] = force_neutral end rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. left_analog_stick_capのforce_neutralにはボタンを渡してください." return end begin if(combined_press_is_pressed = ParamNormalizer::IfPressedAllowsFalsy.new(combined_press_is_pressed).to_value!) hash[:combined_press_is_pressed] = combined_press_is_pressed end rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. left_analog_stick_capのcombined_press_is_pressedにはボタンを渡してください." return end left_analog_stick_caps << hash end |
#macro(name, if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 58 def macro(name, if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) case if_tilted_left_stick when Integer, String, Symbol, Array warn "macro #{name}のif_tilted_left_stickで想定外の値です" if_tilted_left_stick = nil when TrueClass, NilClass, FalseClass, Hash # OK else Kernel.warn "設定ファイルに記述ミスがあります. 未対応の値を受け取りました." return end begin if(fn = ParamNormalizer::ForceNeutral.new(force_neutral).to_value!) force_neutral = fn end rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. macroのforce_neutralにはボタンを渡してください." return end begin if_pressed = ParamNormalizer::IfPressed.new(if_pressed).to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. macroのif_pressedにはボタンを渡してください." return end macro_name = name.to_s.to_sym if @context.macro_registry.plugins[macro_name] self.macros[macro_name] = { if_pressed: if_pressed, if_tilted_left_stick: if_tilted_left_stick, force_neutral: force_neutral }.compact else warn "#{macro_name}マクロがinstallされていません" end end |
#open_macro(name, steps: [], if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) ⇒ Object
設定ファイルに直接マクロを打ち込める @paramh macroの本体. ボタンの配列
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 98 def open_macro(name, steps: [], if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) if name.nil? Kernel.warn "設定ファイルに記述ミスがあります. open_macroのnameには一意になる名前を渡してください." return end begin steps = ParamNormalizer::OpenMacroSteps.new(steps).to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. open_macroのstepsには文字列の配列を渡してください." return end case if_tilted_left_stick when Integer, String, Symbol, Array warn "open_macro #{name}のif_tilted_left_stickで想定外の値です" if_tilted_left_stick = nil when TrueClass, NilClass, FalseClass, Hash # OK else Kernel.warn "設定ファイルに記述ミスがあります. 未対応の値を受け取りました." return end begin force_neutral = ParamNormalizer::ForceNeutral.new(force_neutral).to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. open_macroのforce_neutralにはボタンを渡してください." return end begin if_pressed = ParamNormalizer::IfPressed.new(if_pressed).to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. open_macroのif_pressedにはボタンを渡してください." return end macro_name = name || "OpenMacro-#{steps.join}".to_sym @context.macro_registry.install_plugin(macro_name, steps: steps) self.macros[macro_name] = { if_pressed: if_pressed, if_tilted_left_stick: if_tilted_left_stick, force_neutral: force_neutral }.compact end |
#remap(button, to:) ⇒ Object
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 160 def remap(, to: ) begin = ParamNormalizer::Button.new().to_value! rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. remapにはボタンを渡してください." return end begin self.remaps[] = { to: ParamNormalizer::ButtonList.new(to).to_value! } rescue ParamNormalizer::UnSupportValueError Kernel.warn "設定ファイルに記述ミスがあります. remapのtoにはボタンを渡してください." return end end |
#to_hash ⇒ Hash
240 241 242 243 244 245 246 247 248 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 240 def to_hash { mode: mode, flips: flips, macros: macros, remaps: remaps, disables: disables, left_analog_stick_caps: left_analog_stick_caps, } end |
#to_json ⇒ String
235 236 237 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/layer.rb', line 235 def to_json(*) to_hash.to_json end |