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
|
|
|
|
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 18:38:23 -04:00
|
|
|
@screen.props = state
|
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
|
2017-07-24 18:38:23 -04:00
|
|
|
|
|
|
|
def state
|
|
|
|
@state ||= {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Curses.stdscr.maxx,
|
|
|
|
height: Curses.stdscr.maxy,
|
2017-07-24 18:38:23 -04:00
|
|
|
focus: :sidebar,
|
2017-07-25 09:46:31 -04:00
|
|
|
focused: true,
|
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
sidebar: {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Widgets::Logo::WIDTH,
|
|
|
|
height: Curses.stdscr.maxy,
|
2017-07-24 18:38:23 -04:00
|
|
|
focus: :menu,
|
2017-07-25 09:46:31 -04:00
|
|
|
focused: true,
|
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
menu: {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Widgets::Logo::WIDTH,
|
|
|
|
height: Curses.stdscr.maxy - Widgets::Logo::HEIGHT,
|
2017-07-24 18:38:23 -04:00
|
|
|
focused: true,
|
2017-07-25 09:46:31 -04:00
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
active: 0,
|
|
|
|
top: 0,
|
|
|
|
items: 1.upto(Curses.stdscr.maxy).map do
|
|
|
|
{
|
|
|
|
name: Faker::Name.name,
|
|
|
|
online: [false, true].sample,
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
}.freeze,
|
|
|
|
}.freeze,
|
2017-07-25 09:46:31 -04:00
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
chat: {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Curses.stdscr.maxx - Widgets::Logo::WIDTH,
|
|
|
|
height: Curses.stdscr.maxy,
|
2017-07-24 18:38:23 -04:00
|
|
|
focus: :new_message,
|
2017-07-25 09:46:31 -04:00
|
|
|
focused: false,
|
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
info: {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Curses.stdscr.maxx - Widgets::Logo::WIDTH,
|
|
|
|
height: 2,
|
|
|
|
focused: false,
|
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
name: Faker::Name.name,
|
|
|
|
public_key: SecureRandom.hex(32),
|
|
|
|
}.freeze,
|
2017-07-25 09:46:31 -04:00
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
new_message: {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Curses.stdscr.maxx - Widgets::Logo::WIDTH,
|
|
|
|
height: Curses.stdscr.maxy - 3,
|
|
|
|
focused: false,
|
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
text: '',
|
|
|
|
cursor_pos: 0,
|
|
|
|
}.freeze,
|
2017-07-25 09:46:31 -04:00
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
history: {
|
2017-07-25 09:46:31 -04:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: Curses.stdscr.maxx - Widgets::Logo::WIDTH,
|
|
|
|
height: 1,
|
|
|
|
focused: true,
|
|
|
|
|
2017-07-24 18:38:23 -04:00
|
|
|
messages: 1.upto(100).map do
|
|
|
|
{
|
|
|
|
out: rand <= 0.2,
|
|
|
|
time: Faker::Time.forward,
|
|
|
|
name: Faker::Name.name,
|
|
|
|
text: Faker::Lorem.sentence,
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
}.freeze,
|
|
|
|
}.freeze,
|
|
|
|
}.freeze
|
|
|
|
end
|
2017-07-21 08:38:11 -04:00
|
|
|
end
|