|
@@ -1,11 +1,14 @@ |
|
|
|
|
|
# vim: nosmartindent autoindent |
|
|
|
|
|
|
|
|
import json |
|
|
import json |
|
|
import random |
|
|
import random |
|
|
import subprocess |
|
|
import subprocess |
|
|
import sys |
|
|
import sys |
|
|
import time |
|
|
import time |
|
|
from datetime import datetime |
|
|
|
|
|
|
|
|
from datetime import datetime, timedelta |
|
|
|
|
|
|
|
|
import emoji |
|
|
import emoji |
|
|
|
|
|
import ephem |
|
|
import pygame |
|
|
import pygame |
|
|
import pytchat |
|
|
import pytchat |
|
|
from playsound import playsound |
|
|
from playsound import playsound |
|
@@ -21,7 +24,11 @@ from youtube import * |
|
|
|
|
|
|
|
|
class Main: |
|
|
class Main: |
|
|
@classmethod |
|
|
@classmethod |
|
|
def main (cls, argv: list, argc: int) -> None: |
|
|
|
|
|
|
|
|
def main ( |
|
|
|
|
|
cls, |
|
|
|
|
|
argv: list, |
|
|
|
|
|
argc: int) \ |
|
|
|
|
|
-> None: |
|
|
mode = Mode.NIZIKA |
|
|
mode = Mode.NIZIKA |
|
|
match (argc > 1) and argv[1]: |
|
|
match (argc > 1) and argv[1]: |
|
|
case '-g': |
|
|
case '-g': |
|
@@ -41,12 +48,50 @@ class Main: |
|
|
screen: pygame.Surface = pygame.display.set_mode ( |
|
|
screen: pygame.Surface = pygame.display.set_mode ( |
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
|
|
|
|
|
|
|
|
|
# 大月ヨヨコの観測値 |
|
|
|
|
|
observer = ephem.Observer () |
|
|
|
|
|
observer.lat, observer.lon = '35', '139' |
|
|
|
|
|
|
|
|
|
|
|
# き太く陽オブジェクト |
|
|
|
|
|
sun = ephem.Sun () |
|
|
|
|
|
|
|
|
|
|
|
# 大月ヨヨコ・オブジェクト |
|
|
|
|
|
moon = ephem.Moon () |
|
|
|
|
|
|
|
|
# 吹き出し |
|
|
# 吹き出し |
|
|
balloon = pygame.transform.scale (pygame.image.load ('talking.png'), |
|
|
balloon = pygame.transform.scale (pygame.image.load ('talking.png'), |
|
|
(CWindow.WIDTH, 384)) |
|
|
(CWindow.WIDTH, 384)) |
|
|
if goatoh_mode: |
|
|
if goatoh_mode: |
|
|
balloon = pygame.transform.flip (balloon, False, True) |
|
|
balloon = pygame.transform.flip (balloon, False, True) |
|
|
|
|
|
|
|
|
|
|
|
# 背景(昼) |
|
|
|
|
|
bg_day: pygame.Surface = pygame.transform.scale ( |
|
|
|
|
|
pygame.image.load ('bg.jpg'), |
|
|
|
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
|
|
|
|
|
|
|
|
|
# 背景(夕方) |
|
|
|
|
|
bg_evening: pygame.Surface = pygame.transform.scale ( |
|
|
|
|
|
pygame.image.load ('bg-evening.jpg'), |
|
|
|
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
|
|
|
|
|
|
|
|
|
# 背景(夜) |
|
|
|
|
|
bg_night: pygame.Surface = pygame.transform.scale ( |
|
|
|
|
|
pygame.image.load ('bg-night.jpg'), |
|
|
|
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
|
|
|
|
|
|
|
|
|
# 背景の草 |
|
|
|
|
|
bg_grass: pygame.Surface = pygame.transform.scale ( |
|
|
|
|
|
pygame.image.load ('bg-grass.png'), |
|
|
|
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
|
|
|
|
|
|
|
|
|
# き太く陽 |
|
|
|
|
|
kita: pygame.Surface = pygame.transform.scale ( |
|
|
|
|
|
pygame.image.load ('sun.png'), (200, 200)) |
|
|
|
|
|
|
|
|
|
|
|
# 大月ヨヨコ |
|
|
|
|
|
jojoko: pygame.Surface = pygame.transform.scale ( |
|
|
|
|
|
pygame.image.load ('moon.png'), (200, 200)) |
|
|
|
|
|
|
|
|
# 音声再生器の初期化 |
|
|
# 音声再生器の初期化 |
|
|
pygame.mixer.init (frequency = 44100) |
|
|
pygame.mixer.init (frequency = 44100) |
|
|
|
|
|
|
|
@@ -78,7 +123,48 @@ class Main: |
|
|
histories: list = [] |
|
|
histories: list = [] |
|
|
|
|
|
|
|
|
while (True): |
|
|
while (True): |
|
|
screen.fill ((0, 255, 0)) |
|
|
|
|
|
|
|
|
# 観測地の日づけ更新 |
|
|
|
|
|
observer.date: datetime = datetime.now ().date () |
|
|
|
|
|
|
|
|
|
|
|
# 日の出開始 |
|
|
|
|
|
sunrise_start: datetime = ( |
|
|
|
|
|
(ephem.localtime (observer.previous_rising (sun)) |
|
|
|
|
|
- timedelta (minutes = 30))) |
|
|
|
|
|
|
|
|
|
|
|
# 日の出終了 |
|
|
|
|
|
sunrise_end: datetime = sunrise_start + timedelta (hours = 1) |
|
|
|
|
|
|
|
|
|
|
|
# 日の入開始 |
|
|
|
|
|
sunset_start: datetime = ( |
|
|
|
|
|
(ephem.localtime (observer.next_setting (sun)) |
|
|
|
|
|
- timedelta (minutes = 30))) |
|
|
|
|
|
|
|
|
|
|
|
# 日の入終了 |
|
|
|
|
|
sunset_end: datetime = sunset_start + timedelta (hours = 1) |
|
|
|
|
|
|
|
|
|
|
|
# 月の出開始 |
|
|
|
|
|
'todo' |
|
|
|
|
|
|
|
|
|
|
|
# 月の出終了 |
|
|
|
|
|
'todo' |
|
|
|
|
|
|
|
|
|
|
|
# 月の入開始 |
|
|
|
|
|
'todo' |
|
|
|
|
|
|
|
|
|
|
|
# 月の入終了 |
|
|
|
|
|
'todo' |
|
|
|
|
|
|
|
|
|
|
|
# 日の角度 |
|
|
|
|
|
observer_with_time: ephem.Observer = observer |
|
|
|
|
|
observer_with_time.date = datetime.now () - timedelta (hours = 9) |
|
|
|
|
|
sun.compute (observer_with_time) |
|
|
|
|
|
sun_alt: float = CommonModule.rad_to_deg (sun.alt) |
|
|
|
|
|
|
|
|
|
|
|
# 背景描画 |
|
|
|
|
|
cls.draw_bg (screen, bg_day, bg_evening, bg_night, bg_grass, |
|
|
|
|
|
kita, jojoko, |
|
|
|
|
|
sunrise_start, sunrise_end, sunset_start, sunset_end, |
|
|
|
|
|
sun_alt) |
|
|
|
|
|
|
|
|
# 左上に時刻表示 |
|
|
# 左上に時刻表示 |
|
|
for i in range (4): |
|
|
for i in range (4): |
|
@@ -118,11 +204,13 @@ class Main: |
|
|
# 履歴に追加 |
|
|
# 履歴に追加 |
|
|
histories = (histories |
|
|
histories = (histories |
|
|
+ [{'role': 'user', 'content': message}, |
|
|
+ [{'role': 'user', 'content': message}, |
|
|
{'role': 'assistant', 'content': answer}])[(-12):] |
|
|
|
|
|
|
|
|
{'role': 'assistant', 'content': answer}])[(-12):] |
|
|
|
|
|
|
|
|
# ログ書込み |
|
|
# ログ書込み |
|
|
with open ('log.txt', 'a') as f: |
|
|
with open ('log.txt', 'a') as f: |
|
|
f.write (f'{datetime.now ()}\t{json.dumps (chat_item.__dict__)}\t{answer}\n') |
|
|
|
|
|
|
|
|
f.write (f'{datetime.now ()}\t' |
|
|
|
|
|
+ f'{json.dumps (chat_item.__dict__)}\t' |
|
|
|
|
|
+ f'{answer}\n') |
|
|
|
|
|
|
|
|
# 吹出し描画(ニジカは上,ゴートうは下) |
|
|
# 吹出し描画(ニジカは上,ゴートうは下) |
|
|
if nizika_mode: |
|
|
if nizika_mode: |
|
@@ -140,7 +228,8 @@ class Main: |
|
|
screen.blit ( |
|
|
screen.blit ( |
|
|
user_font.render ( |
|
|
user_font.render ( |
|
|
'> ' + (message |
|
|
'> ' + (message |
|
|
if (CommonModule.len_by_full (message) |
|
|
|
|
|
|
|
|
if (CommonModule.len_by_full ( |
|
|
|
|
|
message) |
|
|
<= 21) |
|
|
<= 21) |
|
|
else (CommonModule.mid_by_full ( |
|
|
else (CommonModule.mid_by_full ( |
|
|
message, 0, 19.5) |
|
|
message, 0, 19.5) |
|
@@ -196,20 +285,25 @@ class Main: |
|
|
|
|
|
|
|
|
playsound ('./nizika_talking.wav') |
|
|
playsound ('./nizika_talking.wav') |
|
|
|
|
|
|
|
|
time.sleep (10) |
|
|
|
|
|
|
|
|
time.sleep (1) |
|
|
|
|
|
|
|
|
if not double_mode or random.random () < .5: |
|
|
if not double_mode or random.random () < .5: |
|
|
break |
|
|
break |
|
|
|
|
|
|
|
|
screen.fill ((0, 255, 0)) |
|
|
|
|
|
|
|
|
cls.draw_bg (screen, bg_day, bg_evening, bg_night, |
|
|
|
|
|
bg_grass, kita, jojoko, |
|
|
|
|
|
sunrise_start, sunrise_end, |
|
|
|
|
|
sunset_start, sunset_end, |
|
|
|
|
|
sun_alt) |
|
|
|
|
|
|
|
|
chat_item.author['name'] = 'ゴートうひとり' if goatoh_talking else '伊地知ニジカ' |
|
|
|
|
|
chat_item.author['id'] = '' |
|
|
|
|
|
chat_item.author['channelId'] = './favicon-goatoh.ico' if goatoh_talking else './favicon.ico' |
|
|
|
|
|
|
|
|
chat_item.author = {'name': 'ゴートうひとり' if goatoh_talking else '伊地知ニジカ', |
|
|
|
|
|
'id': '', |
|
|
|
|
|
'imageUrl': './favicon-goatoh.ico' if goatoh_talking else './favicon.ico'} |
|
|
|
|
|
chat_item.message = histories.pop (-1)['content'] |
|
|
|
|
|
|
|
|
goatoh_talking = not goatoh_talking |
|
|
|
|
|
|
|
|
message = chat_item.message |
|
|
|
|
|
|
|
|
message = histories.pop (-1)['content'] |
|
|
|
|
|
|
|
|
goatoh_talking = not goatoh_talking |
|
|
else: |
|
|
else: |
|
|
# Chat オブジェクトが無効 |
|
|
# Chat オブジェクトが無効 |
|
|
|
|
|
|
|
@@ -223,8 +317,53 @@ class Main: |
|
|
pygame.quit () |
|
|
pygame.quit () |
|
|
sys.exit () |
|
|
sys.exit () |
|
|
|
|
|
|
|
|
|
|
|
@classmethod |
|
|
|
|
|
def draw_bg ( |
|
|
|
|
|
cls, |
|
|
|
|
|
screen: pygame.Surface, |
|
|
|
|
|
bg_day: pygame.Surface, |
|
|
|
|
|
bg_evening: pygame.Surface, |
|
|
|
|
|
bg_night: pygame.Surface, |
|
|
|
|
|
bg_grass: pygame.Surface, |
|
|
|
|
|
kita: pygame.Surface, |
|
|
|
|
|
jojoko: pygame.Surface, |
|
|
|
|
|
sunrise_start: datetime, |
|
|
|
|
|
sunrise_end: datetime, |
|
|
|
|
|
sunset_start: datetime, |
|
|
|
|
|
sunset_end: datetime, |
|
|
|
|
|
sun_alt: float) \ |
|
|
|
|
|
-> None: |
|
|
|
|
|
sunrise_centre: datetime = ( |
|
|
|
|
|
sunrise_start + (sunrise_end - sunrise_start) / 2) |
|
|
|
|
|
sunset_centre: datetime = ( |
|
|
|
|
|
sunset_start + (sunset_end - sunset_start) / 2) |
|
|
|
|
|
|
|
|
|
|
|
dt: datetime = datetime.now () |
|
|
|
|
|
|
|
|
|
|
|
if sunrise_centre <= dt < sunset_centre: |
|
|
|
|
|
screen.blit (bg_day, (0, 0)) |
|
|
|
|
|
else: |
|
|
|
|
|
screen.blit (bg_night, (0, 0)) |
|
|
|
|
|
|
|
|
|
|
|
if sunrise_start <= dt < sunrise_end: |
|
|
|
|
|
bg_evening.set_alpha (255 - ((abs (dt - sunrise_centre) * 510) |
|
|
|
|
|
/ (sunrise_end - sunrise_centre))) |
|
|
|
|
|
elif sunset_start <= dt < sunset_end: |
|
|
|
|
|
bg_evening.set_alpha (255 - ((abs (dt - sunset_centre) * 510) |
|
|
|
|
|
/ (sunset_end - sunset_centre))) |
|
|
|
|
|
else: |
|
|
|
|
|
bg_evening.set_alpha (0) |
|
|
|
|
|
|
|
|
|
|
|
screen.blit (bg_evening, (0, 0)) |
|
|
|
|
|
|
|
|
|
|
|
if -10 <= sun_alt < 40: |
|
|
|
|
|
y = ((CWindow.HEIGHT / 2 + 100) |
|
|
|
|
|
- (CWindow.HEIGHT / 2 + 200) / 30 * sun_alt) |
|
|
|
|
|
screen.blit (kita, kita.get_rect (center = (400, y))) |
|
|
|
|
|
|
|
|
|
|
|
screen.blit (bg_grass, (0, 0)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
if __name__ == '__main__': |
|
|
# Main.main ((len (sys.argv) > 1) and (sys.argv[1] == '-g')) |
|
|
|
|
|
Main.main (sys.argv, len (sys.argv)) |
|
|
Main.main (sys.argv, len (sys.argv)) |
|
|
|
|
|
|