Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/main.rb

94 lines
1.5 KiB
Ruby
Raw Normal View History

2017-07-21 02:48:04 -04:00
# frozen_string_literal: true
require 'thread'
2017-07-21 11:23:43 -04:00
require 'faker'
2017-07-24 08:48:22 -04:00
require 'screen'
2017-07-21 10:00:01 -04:00
2017-07-21 02:48:04 -04:00
class Main
2017-07-24 16:44:13 -04:00
INITIAL_STATE = {
focus: :sidebar,
sidebar: {
focus: :menu,
menu: {
active: 0,
top: 0,
items: 1.upto(Curses.stdscr.maxy).map do
{
name: Faker::Name.name,
online: [false, true].sample,
}
end,
},
},
chat: {
focus: :new_message,
info: {
name: Faker::Name.name,
public_key: SecureRandom.hex(32),
},
new_message: {
text: '',
cursor_pos: 0,
},
history: {
messages: 1.upto(100).map do
{
out: rand <= 0.2,
time: Faker::Time.forward,
name: Faker::Name.name,
text: Faker::Lorem.sentence,
}
end,
},
},
}.freeze
2017-07-21 02:48:04 -04:00
def self.inherited(_base)
raise "#{self} is final"
end
def self.mutex
(@mutex ||= Mutex.new).tap { freeze }
end
def initialize
raise "#{self.class} is singleton" unless self.class.mutex.try_lock
call
end
private
def call
before_loop
loop do
before_iteration
sleep
after_iteration
end
after_loop
end
def sleep
super 0.01
end
def before_loop
2017-07-24 08:48:22 -04:00
@screen = Screen.new
2017-07-22 05:46:15 -04:00
Style.default = Style.new
2017-07-21 02:48:04 -04:00
end
def after_loop
2017-07-24 08:48:22 -04:00
@screen.close
2017-07-21 02:48:04 -04:00
end
2017-07-21 07:41:05 -04:00
def before_iteration
2017-07-24 08:48:22 -04:00
@screen.render
2017-07-21 07:41:05 -04:00
end
2017-07-21 02:48:04 -04:00
def after_iteration
2017-07-24 08:48:22 -04:00
@screen.poll
2017-07-21 08:03:53 -04:00
end
end