ne_spat 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +17 -0
- data/.tool-versions +1 -0
- data/Gemfile +3 -5
- data/Gemfile.lock +26 -27
- data/LICENSE.txt +1 -1
- data/exe/ne_spat +1 -2
- data/lefthook.yml +1 -1
- data/lib/ne_spat/config.rb +3 -0
- data/lib/ne_spat/executors/base.rb +26 -0
- data/lib/ne_spat/executors/default.rb +20 -0
- data/lib/ne_spat/executors/xxx.rb +76 -0
- data/lib/ne_spat/executors.rb +12 -0
- data/lib/ne_spat/version.rb +2 -4
- data/lib/ne_spat.rb +54 -3
- data/ne_spat.gemspec +0 -2
- metadata +10 -6
- data/.ruby-version +0 -1
- data/.standard.yml +0 -2
- data/lib/ne_spat/executor.rb +0 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b141e198e5539f5faf38ad894ee77ea59bd1a9e73a7da0fe789dec03bf0e209
|
4
|
+
data.tar.gz: 181da6cefd3a47714998b6fb8e25d7e32b2b3ccc117e35bb505204648d051a89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7174e88e5092a152981bd396f561b7dda7635e5acfffb2ed33adb7c3a57f6117675aa3cb31147ef626168516e34e71c0c7495ad2d4c6f5f3a7320fd3bdd413de
|
7
|
+
data.tar.gz: 93761cec556aaaeee0cbdc1ecb12c62b4a5403ac24eb3b0ec6ee725c7db3b44dcce1c80c1dd26953025bee7faf7d5fb6b39ecb08fadb4d4d8ae275d14cdf9634
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
inherit_mode:
|
2
|
+
merge:
|
3
|
+
- Exclude
|
4
|
+
|
5
|
+
require:
|
6
|
+
- standard
|
7
|
+
- standard-custom
|
8
|
+
- standard-performance
|
9
|
+
- rubocop-performance
|
10
|
+
|
11
|
+
inherit_gem:
|
12
|
+
standard: config/ruby-3.3.yml
|
13
|
+
standard-performance: config/base.yml
|
14
|
+
standard-custom: config/base.yml
|
15
|
+
|
16
|
+
AllCops:
|
17
|
+
SuggestExtensions: false
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.3.5
|
data/Gemfile
CHANGED
@@ -1,12 +1,10 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
1
|
source "https://rubygems.org"
|
4
2
|
|
5
3
|
gemspec
|
6
4
|
|
7
5
|
group :development, :test do
|
8
|
-
gem "
|
9
|
-
gem "standard
|
6
|
+
gem "rubocop", "~> 1.66.1"
|
7
|
+
gem "standard", "~> 1.41.1"
|
10
8
|
gem "pry", "~> 0.14.2"
|
11
|
-
gem "lefthook", "~> 1.
|
9
|
+
gem "lefthook", "~> 1.8.2"
|
12
10
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ne_spat (0.
|
4
|
+
ne_spat (0.3.0)
|
5
5
|
rumouse (~> 0.0.7)
|
6
6
|
|
7
7
|
GEM
|
@@ -10,64 +10,63 @@ GEM
|
|
10
10
|
ast (2.4.2)
|
11
11
|
coderay (1.1.3)
|
12
12
|
ffi (1.16.3)
|
13
|
-
json (2.
|
13
|
+
json (2.7.5)
|
14
14
|
language_server-protocol (3.17.0.3)
|
15
|
-
lefthook (1.
|
15
|
+
lefthook (1.8.2)
|
16
16
|
lint_roller (1.1.0)
|
17
17
|
method_source (1.0.0)
|
18
|
-
parallel (1.
|
19
|
-
parser (3.
|
18
|
+
parallel (1.26.3)
|
19
|
+
parser (3.3.5.0)
|
20
20
|
ast (~> 2.4.1)
|
21
21
|
racc
|
22
22
|
pry (0.14.2)
|
23
23
|
coderay (~> 1.1)
|
24
24
|
method_source (~> 1.0)
|
25
|
-
racc (1.
|
25
|
+
racc (1.8.1)
|
26
26
|
rainbow (3.1.1)
|
27
|
-
regexp_parser (2.
|
28
|
-
|
29
|
-
rubocop (1.57.2)
|
27
|
+
regexp_parser (2.9.2)
|
28
|
+
rubocop (1.66.1)
|
30
29
|
json (~> 2.3)
|
31
30
|
language_server-protocol (>= 3.17.0)
|
32
31
|
parallel (~> 1.10)
|
33
|
-
parser (>= 3.
|
32
|
+
parser (>= 3.3.0.2)
|
34
33
|
rainbow (>= 2.2.2, < 4.0)
|
35
|
-
regexp_parser (>=
|
36
|
-
|
37
|
-
rubocop-ast (>= 1.28.1, < 2.0)
|
34
|
+
regexp_parser (>= 2.4, < 3.0)
|
35
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
38
36
|
ruby-progressbar (~> 1.7)
|
39
37
|
unicode-display_width (>= 2.4.0, < 3.0)
|
40
|
-
rubocop-ast (1.
|
41
|
-
parser (>= 3.
|
42
|
-
rubocop-performance (1.
|
43
|
-
rubocop (>= 1.
|
44
|
-
rubocop-ast (>=
|
38
|
+
rubocop-ast (1.33.0)
|
39
|
+
parser (>= 3.3.1.0)
|
40
|
+
rubocop-performance (1.22.1)
|
41
|
+
rubocop (>= 1.48.1, < 2.0)
|
42
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
45
43
|
ruby-progressbar (1.13.0)
|
46
44
|
rumouse (0.0.7)
|
47
45
|
ffi (>= 1.9.3)
|
48
|
-
standard (1.
|
46
|
+
standard (1.41.1)
|
49
47
|
language_server-protocol (~> 3.17.0.2)
|
50
48
|
lint_roller (~> 1.0)
|
51
|
-
rubocop (~> 1.
|
49
|
+
rubocop (~> 1.66.0)
|
52
50
|
standard-custom (~> 1.0.0)
|
53
|
-
standard-performance (~> 1.
|
51
|
+
standard-performance (~> 1.5)
|
54
52
|
standard-custom (1.0.2)
|
55
53
|
lint_roller (~> 1.0)
|
56
54
|
rubocop (~> 1.50)
|
57
|
-
standard-performance (1.
|
55
|
+
standard-performance (1.5.0)
|
58
56
|
lint_roller (~> 1.1)
|
59
|
-
rubocop-performance (~> 1.
|
60
|
-
unicode-display_width (2.
|
57
|
+
rubocop-performance (~> 1.22.0)
|
58
|
+
unicode-display_width (2.6.0)
|
61
59
|
|
62
60
|
PLATFORMS
|
63
61
|
x86_64-darwin-22
|
62
|
+
x86_64-darwin-23
|
64
63
|
|
65
64
|
DEPENDENCIES
|
66
|
-
lefthook (~> 1.
|
65
|
+
lefthook (~> 1.8.2)
|
67
66
|
ne_spat!
|
68
67
|
pry (~> 0.14.2)
|
69
|
-
|
70
|
-
standard
|
68
|
+
rubocop (~> 1.66.1)
|
69
|
+
standard (~> 1.41.1)
|
71
70
|
|
72
71
|
BUNDLED WITH
|
73
72
|
2.4.19
|
data/LICENSE.txt
CHANGED
data/exe/ne_spat
CHANGED
data/lefthook.yml
CHANGED
@@ -0,0 +1,26 @@
|
|
1
|
+
class NeSpat
|
2
|
+
module Executors
|
3
|
+
class Base
|
4
|
+
attr_reader :config, :mouse
|
5
|
+
|
6
|
+
def self.call(config)
|
7
|
+
new(config).call
|
8
|
+
end
|
9
|
+
|
10
|
+
def initialize(config)
|
11
|
+
@config = config
|
12
|
+
@mouse = RuMouse.new
|
13
|
+
end
|
14
|
+
|
15
|
+
def call
|
16
|
+
raise NotImplementedError
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def interval
|
22
|
+
1.0 / (config.speed || default_speed)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
class NeSpat
|
2
|
+
module Executors
|
3
|
+
class Default < Base
|
4
|
+
SPEED = 50
|
5
|
+
DELTA = [1, -1]
|
6
|
+
|
7
|
+
def call
|
8
|
+
loop do
|
9
|
+
sleep(interval)
|
10
|
+
position = mouse.position
|
11
|
+
mouse.move(position[:x] + DELTA.sample, position[:y] + DELTA.sample)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def default_speed
|
16
|
+
SPEED
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
class NeSpat
|
2
|
+
module Executors
|
3
|
+
class XXX < Base
|
4
|
+
SPEED = 200
|
5
|
+
RADIUS = 125
|
6
|
+
HEIGHT_TO_SCREEN_RATIO = 0.5
|
7
|
+
WIDTH_TO_SCREEN_RATIO = 0.125
|
8
|
+
UPPER_SEMICIRCLE_DISTORTION = 1.5
|
9
|
+
|
10
|
+
attr_reader :base_x, :base_y
|
11
|
+
|
12
|
+
def initialize(_)
|
13
|
+
super
|
14
|
+
@base_x = mouse.screen_size[:x] / 2
|
15
|
+
@base_y = (mouse.screen_size[:y] * 0.75).to_i
|
16
|
+
end
|
17
|
+
|
18
|
+
def call
|
19
|
+
parts = [
|
20
|
+
left_upper_semicircle,
|
21
|
+
left_lower_semicircle,
|
22
|
+
right_upper_semicircle,
|
23
|
+
right_lower_semicircle,
|
24
|
+
left_wall,
|
25
|
+
upper_semicircle,
|
26
|
+
right_wall
|
27
|
+
]
|
28
|
+
loop do
|
29
|
+
parts.each do |part|
|
30
|
+
part.each do |x, y|
|
31
|
+
sleep(interval)
|
32
|
+
mouse.move(x, y)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def left_upper_semicircle
|
39
|
+
(-RADIUS..RADIUS).map { |x| [base_x - x - RADIUS, base_y + Math.sqrt(RADIUS**2 - x**2).to_i] }
|
40
|
+
end
|
41
|
+
|
42
|
+
def left_lower_semicircle
|
43
|
+
(RADIUS..-RADIUS).step(-1).map { |x| [base_x - x - RADIUS, base_y - Math.sqrt(RADIUS**2 - x**2).to_i] }
|
44
|
+
end
|
45
|
+
|
46
|
+
def right_upper_semicircle
|
47
|
+
(RADIUS..-RADIUS).step(-1).map { |x| [base_x - x + RADIUS, base_y + Math.sqrt(RADIUS**2 - x**2).to_i] }
|
48
|
+
end
|
49
|
+
|
50
|
+
def right_lower_semicircle
|
51
|
+
(-RADIUS..RADIUS).map { |x| [base_x - x + RADIUS, base_y - Math.sqrt(RADIUS**2 - x**2).to_i] }
|
52
|
+
end
|
53
|
+
|
54
|
+
def left_wall
|
55
|
+
(0..mouse.screen_size[:y]).step(2).map do |delta|
|
56
|
+
[base_x - (delta * WIDTH_TO_SCREEN_RATIO).to_i, base_y - (delta * HEIGHT_TO_SCREEN_RATIO).to_i]
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def right_wall
|
61
|
+
(mouse.screen_size[:y]..0).step(-2)
|
62
|
+
.map { |delta| [base_x + (delta * WIDTH_TO_SCREEN_RATIO), base_y - (delta * HEIGHT_TO_SCREEN_RATIO)] }
|
63
|
+
end
|
64
|
+
|
65
|
+
def upper_semicircle
|
66
|
+
radius = (mouse.screen_size[:y] * WIDTH_TO_SCREEN_RATIO).to_i
|
67
|
+
y = mouse.screen_size[:y] - base_y
|
68
|
+
(-radius..radius).map { |x| [base_x + x, y - (Math.sqrt(radius**2 - x**2) * UPPER_SEMICIRCLE_DISTORTION).to_i] }
|
69
|
+
end
|
70
|
+
|
71
|
+
def default_speed
|
72
|
+
SPEED
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
data/lib/ne_spat/version.rb
CHANGED
data/lib/ne_spat.rb
CHANGED
@@ -1,9 +1,60 @@
|
|
1
|
-
|
1
|
+
require "optparse"
|
2
2
|
|
3
3
|
require "rumouse"
|
4
4
|
|
5
|
+
require_relative "ne_spat/config"
|
5
6
|
require_relative "ne_spat/version"
|
6
|
-
require_relative "ne_spat/
|
7
|
+
require_relative "ne_spat/executors"
|
7
8
|
|
8
|
-
|
9
|
+
class NeSpat
|
10
|
+
GOODBYE_MESSAGE = "\b\bG00d M0rn1ng, V1etn@m!"
|
11
|
+
|
12
|
+
attr_reader :config, :parser
|
13
|
+
|
14
|
+
def self.call
|
15
|
+
new.call
|
16
|
+
end
|
17
|
+
|
18
|
+
def initialize
|
19
|
+
@config = Config.new(mode: :default)
|
20
|
+
@parser = OptionParser.new
|
21
|
+
end
|
22
|
+
|
23
|
+
def call
|
24
|
+
setup_parser
|
25
|
+
start_execution
|
26
|
+
rescue OptionParser::MissingArgument => error
|
27
|
+
puts(error.message)
|
28
|
+
rescue Interrupt
|
29
|
+
print_goodbye
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
def setup_parser
|
35
|
+
parser.banner = "Usage: ne_spat [options]"
|
36
|
+
|
37
|
+
parser.on("-m", "--mode=MODE", "MODE to run. Can be: default, xxx") do |mode|
|
38
|
+
config.mode = mode.to_sym
|
39
|
+
end
|
40
|
+
|
41
|
+
parser.on("-s", "--speed=SPEED", "SPEED of movement. Biger value means more movements in a second") do |speed|
|
42
|
+
config.speed = Integer(speed)
|
43
|
+
end
|
44
|
+
|
45
|
+
parser.on("-h", "--help", "Prints this help") do
|
46
|
+
puts parser
|
47
|
+
exit
|
48
|
+
end
|
49
|
+
|
50
|
+
parser.parse!
|
51
|
+
end
|
52
|
+
|
53
|
+
def start_execution
|
54
|
+
Executors::EXECUTORS_MAP.fetch(config.mode).call(config)
|
55
|
+
end
|
56
|
+
|
57
|
+
def print_goodbye
|
58
|
+
puts GOODBYE_MESSAGE
|
59
|
+
end
|
9
60
|
end
|
data/ne_spat.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ne_spat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ar2em1s
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rumouse
|
@@ -32,8 +32,8 @@ executables:
|
|
32
32
|
extensions: []
|
33
33
|
extra_rdoc_files: []
|
34
34
|
files:
|
35
|
-
- ".
|
36
|
-
- ".
|
35
|
+
- ".rubocop.yml"
|
36
|
+
- ".tool-versions"
|
37
37
|
- Gemfile
|
38
38
|
- Gemfile.lock
|
39
39
|
- LICENSE.txt
|
@@ -41,7 +41,11 @@ files:
|
|
41
41
|
- exe/ne_spat
|
42
42
|
- lefthook.yml
|
43
43
|
- lib/ne_spat.rb
|
44
|
-
- lib/ne_spat/
|
44
|
+
- lib/ne_spat/config.rb
|
45
|
+
- lib/ne_spat/executors.rb
|
46
|
+
- lib/ne_spat/executors/base.rb
|
47
|
+
- lib/ne_spat/executors/default.rb
|
48
|
+
- lib/ne_spat/executors/xxx.rb
|
45
49
|
- lib/ne_spat/version.rb
|
46
50
|
- ne_spat.gemspec
|
47
51
|
homepage: https://github.com/ar2em1s/ne_spat
|
@@ -65,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
69
|
- !ruby/object:Gem::Version
|
66
70
|
version: '0'
|
67
71
|
requirements: []
|
68
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.5.19
|
69
73
|
signing_key:
|
70
74
|
specification_version: 4
|
71
75
|
summary: Do not let your machine fall asleep.
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
3.2.2
|
data/.standard.yml
DELETED
data/lib/ne_spat/executor.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module NeSpat
|
4
|
-
class Executor
|
5
|
-
INTERVAL = 0.02
|
6
|
-
DELTA = [1, -1]
|
7
|
-
|
8
|
-
def self.call
|
9
|
-
mouse = RuMouse.new
|
10
|
-
|
11
|
-
loop do
|
12
|
-
sleep(INTERVAL)
|
13
|
-
position = mouse.position
|
14
|
-
mouse.move(position[:x] + DELTA.sample, position[:y] + DELTA.sample)
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|