Class: ProconBypassMan::Procon
- Inherits:
-
Object
- Object
- ProconBypassMan::Procon
show all
- Defined in:
- lib/procon_bypass_man/procon.rb,
lib/procon_bypass_man/procon/flip_cache.rb,
lib/procon_bypass_man/procon/macro_plugin_map.rb
Defined Under Namespace
Modules: PerformanceMeasurement
Classes: AnalogStick, AnalogStickCap, AnalogStickManipulator, Button, ButtonCollection, FlipCache, LayerChanger, Macro, MacroBuilder, MacroPluginMap, MacroRegistry2, ModeRegistry2, Rumbler, UserOperation
Constant Summary
collapse
- RECENT_LEFT_STICK_POSITIONS_LIMIT =
5
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(binary) ⇒ Procon
Returns a new instance of Procon.
Instance Attribute Details
#user_operation ⇒ Object
Returns the value of attribute user_operation.
26
27
28
|
# File 'lib/procon_bypass_man/procon.rb', line 26
def user_operation
@user_operation
end
|
Class Method Details
.reset! ⇒ Object
28
29
30
31
32
33
34
35
36
|
# File 'lib/procon_bypass_man/procon.rb', line 28
def self.reset!
@@status = {
ongoing_macro: ProconBypassMan.buttons_setting_configuration.macro_registry.load(:null),
ongoing_mode: ProconBypassMan.buttons_setting_configuration.mode_registry.load(:manual), }
BlueGreenProcess::SharedVariable.instance.data["buttons"] = {}
BlueGreenProcess::SharedVariable.instance.data["current_layer_key"] = :up
BlueGreenProcess::SharedVariable.instance.data["recent_left_stick_hypotenuses"] = []
end
|
Instance Method Details
#add_recent_left_stick_hypotenuses(left_stick_hypotenuses) ⇒ void
This method returns an undefined value.
61
62
63
64
65
66
|
# File 'lib/procon_bypass_man/procon.rb', line 61
def add_recent_left_stick_hypotenuses(left_stick_hypotenuses)
if (overflowed_size = recent_left_stick_hypotenuses.size - RECENT_LEFT_STICK_POSITIONS_LIMIT)
overflowed_size.times { recent_left_stick_hypotenuses.shift }
end
recent_left_stick_hypotenuses << left_stick_hypotenuses
end
|
#apply! ⇒ Object
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
# File 'lib/procon_bypass_man/procon.rb', line 80
def apply!
layer_changer = ProconBypassMan::Procon::LayerChanger.new(binary: user_operation.binary)
if layer_changer.change_layer?
if layer_changer.pressed_next_layer?
self.current_layer_key = layer_changer.next_layer_key
ProconBypassMan::Procon::Rumbler.rumble!
end
user_operation.set_no_action!
return
end
analog_stick = ProconBypassMan::Procon::AnalogStick.new(binary: user_operation.binary.raw)
add_recent_left_stick_hypotenuses(analog_stick.relative_hypotenuse)
dumped_tilting_power = @left_stick_tilting_power_scaler.calculate(recent_left_stick_hypotenuses)
enable_all_macro = true
enable_macro_map = Hash.new {|h,k| h[k] = true }
current_layer.disable_macros.each do |disable_macro|
if (disable_macro[:if_pressed] == [true] || user_operation.pressing_all_buttons?(disable_macro[:if_pressed]))
if disable_macro[:name] == :all
enable_all_macro = false
else
enable_macro_map[disable_macro[:name]] = false
end
end
end
if ongoing_macro.finished? && enable_all_macro
current_layer.macros.each do |macro_name, options|
next unless enable_macro_map[macro_name]
if(if_tilted_left_stick_value = options[:if_tilted_left_stick])
threshold = (if_tilted_left_stick_value.is_a?(Hash) && if_tilted_left_stick_value[:threshold]) || ProconBypassMan::AnalogStickTiltingPowerScaler::DEFAULT_THRESHOLD
if dumped_tilting_power.tilting?(threshold: threshold, current_position_x: analog_stick.relative_x, current_position_y: analog_stick.relative_y) && user_operation.pressing_all_buttons?(options[:if_pressed])
@@status[:ongoing_macro] = ProconBypassMan.buttons_setting_configuration.macro_registry.load(macro_name)
break
end
next
end
if user_operation.pressing_all_buttons?(options[:if_pressed])
@@status[:ongoing_macro] = ProconBypassMan.buttons_setting_configuration.macro_registry.load(macro_name, force_neutral_buttons: options[:force_neutral])
break
end
end
end
if(task = ProconBypassMan::RemoteAction::TaskQueueInProcess.non_blocking_shift)
case task.type
when ProconBypassMan::RemoteAction::Task::TYPE_MACRO
no_op_step = :wait_for_0_3 BlueGreenProcess::SharedVariable.extend_run_on_this_process = true
ProconBypassMan.buttons_setting_configuration.macro_registry.cleanup_remote_macros!
macro_name = task.name || "RemoteMacro-#{task.steps.join}".to_sym
task.steps << no_op_step
ProconBypassMan.buttons_setting_configuration.macro_registry.install_plugin(macro_name, steps: task.steps, macro_type: :remote)
@@status[:ongoing_macro] = ProconBypassMan.buttons_setting_configuration.macro_registry.load(macro_name, macro_type: :remote) do
GC.start ProconBypassMan::PostCompletedRemoteMacroJob.perform_async(task.uuid)
end
when ProconBypassMan::RemoteAction::Task::TYPE_ACTION
ProconBypassMan::RemoteAction::RemotePbmJob::RunRemotePbmJobDispatchCommand.execute(
action: task.action,
uuid: task.uuid,
job_args: task.job_args,
)
else
ProconBypassMan::SendErrorCommand.execute(error: 'unknown type of remote pbm action')
end
end
case current_layer.mode
when :manual
@@status[:ongoing_mode] = ProconBypassMan.buttons_setting_configuration.mode_registry.load(:manual)
current_layer.flip_buttons.each do |button, options|
if !options[:if_pressed]
FlipCache.fetch(key: button, expires_in: options[:flip_interval]) do
status[button] = !status[button]
end
next
end
if options[:if_pressed] && user_operation.pressing_all_buttons?(options[:if_pressed])
FlipCache.fetch(key: button, expires_in: options[:flip_interval]) do
status[button] = !status[button]
end
else
FlipCache.fetch(key: button, expires_in: options[:flip_interval]) do
status[button] = false
end
end
end
else
unless ongoing_mode.name == current_layer.mode
@@status[:ongoing_mode] = ProconBypassMan.buttons_setting_configuration.mode_registry.load(current_layer.mode)
end
if(binary = ongoing_mode.next_binary)
self.user_operation.merge([binary].pack("H*"))
end
return
end
status
end
|
#current_layer_key ⇒ Object
50
51
52
|
# File 'lib/procon_bypass_man/procon.rb', line 50
def current_layer_key
BlueGreenProcess::SharedVariable.instance.data["current_layer_key"].to_sym
end
|
#current_layer_key=(layer) ⇒ Object
54
55
56
|
# File 'lib/procon_bypass_man/procon.rb', line 54
def current_layer_key=(layer)
BlueGreenProcess::SharedVariable.instance.data["current_layer_key"] = layer
end
|
#ongoing_macro ⇒ Object
72
|
# File 'lib/procon_bypass_man/procon.rb', line 72
def ongoing_macro; @@status[:ongoing_macro]; end
|
#ongoing_mode ⇒ Object
73
|
# File 'lib/procon_bypass_man/procon.rb', line 73
def ongoing_mode; @@status[:ongoing_mode]; end
|
#recent_left_stick_hypotenuses ⇒ Object
68
69
70
|
# File 'lib/procon_bypass_man/procon.rb', line 68
def recent_left_stick_hypotenuses
BlueGreenProcess::SharedVariable.instance.data["recent_left_stick_hypotenuses"]
end
|
#status ⇒ Object
46
47
48
|
# File 'lib/procon_bypass_man/procon.rb', line 46
def status
BlueGreenProcess::SharedVariable.instance.data["buttons"]
end
|
#to_binary(external_input_data: nil) ⇒ String
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
# File 'lib/procon_bypass_man/procon.rb', line 191
def to_binary(external_input_data: nil)
if ongoing_mode.name != :manual
return user_operation.binary.raw
end
if external_input_data
if(external_input_data_raw_binary = external_input_data.to_binary)
self.user_operation.merge(external_input_data_raw_binary)
else
external_input_data.press_buttons.each do |button|
self.user_operation.press_button(button)
end
external_input_data.unpress_buttons.each do |button|
self.user_operation.unpress_button(button)
end
end
return self.user_operation.binary.raw
end
if ongoing_macro.ongoing? && (step = ongoing_macro.next_step)
BlueGreenProcess::SharedVariable.extend_run_on_this_process = true
ongoing_macro.force_neutral_buttons&.each do |force_neutral_button|
user_operation.unpress_button(force_neutral_button)
end
user_operation.press_button_only_or_tilt_sticks(step)
return user_operation.binary.raw
else
BlueGreenProcess::SharedVariable.extend_run_on_this_process = false
end
current_layer.disables.each do |button|
user_operation.unpress_button(button)
end
current_layer.left_analog_stick_caps.each do |config|
if !config[:if_pressed] || user_operation.pressing_all_buttons?(config[:if_pressed])
config[:force_neutral]&.each do |force_neutral_button|
user_operation.unpress_button(force_neutral_button)
end
config[:combined_press_is_pressed]&.each do |button|
user_operation.press_button(button)
end
user_operation.apply_left_analog_stick_cap(cap: config[:cap])
end
end
current_layer.flip_buttons.each do |button, options|
if !options[:if_pressed] && status[button]
user_operation.press_button(button)
next
end
if options[:if_pressed] && user_operation.pressing_all_buttons?(options[:if_pressed])
if !status[button]
user_operation.unpress_button(button)
end
options[:force_neutral]&.each do |force_neutral_button|
user_operation.unpress_button(force_neutral_button)
end
end
end
current_layer.remaps.each do |from_button, to_buttons|
if user_operation.pressing_button?(from_button)
user_operation.unpress_button(from_button)
to_buttons[:to].each do |to_button|
user_operation.press_button(to_button)
end
end
end
user_operation.binary.raw
end
|