Random fixes

This commit is contained in:
Piotr Dobrowolski 2017-09-13 15:25:10 +02:00
parent 8d8918b25a
commit c164633a18
10 changed files with 134 additions and 47 deletions

1
.rsync-filter Normal file
View File

@ -0,0 +1 @@
- custom

View File

@ -4,3 +4,8 @@ Building and deployment
$ cd arduino && pio run && cd .. $ cd arduino && pio run && cd ..
$ cd raspi/mgmt && ansible-playbook playbook.yml && ansible-playbook $ cd raspi/mgmt && ansible-playbook playbook.yml && ansible-playbook
arduino.yml arduino.yml
Customization
=============
`raspi/mgmt/custom/{{ IP }}` is overlaid over default raspi/ code

11
raspi/gameplayconfig.py Normal file
View File

@ -0,0 +1,11 @@
#gameplay
#wynik w snake, ktory wygrywa
SNAKE_SCORE = 2
#predkosc gry w snake - w zakresie od 1 do 10
TICK_SNAKE = 10
#ilosc segmentow dodanych do snake po zlapaniu jablka
SNAKE_ADDSIZE = 10
#hasla klawiatury ekranowej dla obu zagadek
PASSWORD1 = 'one'
PASSWORD2 = 'two'

View File

@ -1,5 +1,11 @@
[raspi] [raspi-wifi]
192.168.43.12 192.168.43.12
192.168.43.44 192.168.43.44
192.168.43.219 192.168.43.219
192.168.43.231 192.168.43.231
[raspi]
10.21.37.150
10.21.37.180
10.21.37.185
10.21.37.226

View File

@ -3,6 +3,8 @@
become_user: root become_user: root
tasks: tasks:
- synchronize: src=../.. dest=/home/pi/sejf - synchronize: src=../.. dest=/home/pi/sejf
- synchronize: src="custom/{{ inventory_hostname }}" dest=/home/pi/sejf/raspi
ignore_errors: yes
- file: path=/etc/xdg/autostart/pprompt.desktop state=absent - file: path=/etc/xdg/autostart/pprompt.desktop state=absent
- copy: src=autostart dest=/home/pi/.config/lxsession/LXDE-pi/autostart - copy: src=autostart dest=/home/pi/.config/lxsession/LXDE-pi/autostart
- copy: src=sejf.desktop dest=/etc/xdg/autostart - copy: src=sejf.desktop dest=/etc/xdg/autostart

View File

@ -2,6 +2,6 @@
Type=Application Type=Application
Name=sejf Name=sejf
NoDisplay=true NoDisplay=true
Exec=python /home/pi/sejf/raspi/pySejf.py Exec=/home/pi/sejf/raspi/run.sh
Terminal=true Terminal=true
NotShowIn=GNOME;KDE;XFCE; NotShowIn=GNOME;KDE;XFCE;

View File

@ -9,6 +9,7 @@ import threading
import logging import logging
import socket import socket
import json import json
import string
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)
import random, pygame import random, pygame
@ -45,9 +46,10 @@ class ImageSlide(Slide):
class FinalSlide(ImageSlide): class FinalSlide(ImageSlide):
def exit(self, next_slide): def exit(self, next_slide):
return False # Allow change to exit slide
return isinstance(next_slide, FinalSlide)
class FinalEverythingSlide(ImageSlide): class FinalEverythingSlide(FinalSlide):
def enter(self, prev_slide): def enter(self, prev_slide):
global wall_a global wall_a
if(wall_a): if(wall_a):
@ -58,9 +60,6 @@ class FinalEverythingSlide(ImageSlide):
return True return True
def exit(self, next_slide):
return False
class SnakeSlide(Slide): class SnakeSlide(Slide):
def enter(self, prev_slide=None): def enter(self, prev_slide=None):
self.xs = [290, 290, 290, 290, 290]; self.xs = [290, 290, 290, 290, 290];
@ -74,9 +73,14 @@ class SnakeSlide(Slide):
#img.fill((255, 0, 0)) #img.fill((255, 0, 0))
self.f = FONT_SNAKE self.f = FONT_SNAKE
self.clock = pygame.time.Clock() self.clock = pygame.time.Clock()
self.finished = False
return True return True
def finish(self):
self.finished = True
self.finish_time = time.time()
def handle(self, e): def handle(self, e):
print(e) print(e)
if e.type == KEYDOWN: if e.type == KEYDOWN:
@ -85,17 +89,25 @@ class SnakeSlide(Slide):
elif e.key == K_LEFT and self.dirs != 1: self.dirs = 3 elif e.key == K_LEFT and self.dirs != 1: self.dirs = 3
elif e.key == K_RIGHT and self.dirs != 3: self.dirs = 1 elif e.key == K_RIGHT and self.dirs != 3: self.dirs = 1
if self.finished and time.time() - self.finish_time > 3:
self.enter()
print(self.dirs) print(self.dirs)
def render(self, screen): def render(self, screen):
self.clock.tick(TICK_SNAKE) self.clock.tick(TICK_SNAKE)
if self.finished:
f=FONT_SNAKE
t=f.render(MSG_SNAKE+str(self.score), True, (0, 0, 0))
screen.blit(t, (10, 270))
return
i = len(self.xs)-1 i = len(self.xs)-1
while i >= 2: while i >= 2:
if collide(self.xs[0], self.xs[i], self.ys[0], self.ys[i], 20, 20, 20, 20): if collide(self.xs[0], self.xs[i], self.ys[0], self.ys[i], 20, 20, 20, 20):
die(screen, self.score) self.finish()
self.score = 0 return
self.enter()
i-= 1 i-= 1
if collide(self.xs[0], self.applepos[0], self.ys[0], self.applepos[1], 20, 10, 20, 10): if collide(self.xs[0], self.applepos[0], self.ys[0], self.applepos[1], 20, 10, 20, 10):
@ -106,9 +118,8 @@ class SnakeSlide(Slide):
self.applepos=(random.randint(0,WINSIZEX),random.randint(0,WINSIZEY)) self.applepos=(random.randint(0,WINSIZEX),random.randint(0,WINSIZEY))
if self.xs[0] < 0 or self.xs[0] > WINSIZEX or self.ys[0] < 0 or self.ys[0] > WINSIZEY: if self.xs[0] < 0 or self.xs[0] > WINSIZEX or self.ys[0] < 0 or self.ys[0] > WINSIZEY:
die(screen, self.score) self.finish()
score = 0 return
self.enter()
self.xs[1:] = self.xs[:-1] self.xs[1:] = self.xs[:-1]
self.ys[1:] = self.ys[:-1] self.ys[1:] = self.ys[:-1]
@ -123,8 +134,9 @@ class SnakeSlide(Slide):
screen.blit(IMG_SNAKE, (0, 0)) screen.blit(IMG_SNAKE, (0, 0))
print("drawing snake...") print("drawing snake...")
if(self.score > SNAKE_SCORE): if(self.score > SNAKE_SCORE):
die(screen, self.score) self.finish()
self.enter() signalWin(4)
return
for i in range(0, len(self.xs)): for i in range(0, len(self.xs)):
screen.blit(self.img, (self.xs[i], self.ys[i])) screen.blit(self.img, (self.xs[i], self.ys[i]))
@ -136,17 +148,7 @@ class SnakeSlide(Slide):
pygame.init() pygame.init()
pygame.mixer.init() pygame.mixer.init()
#gameplay from gameplayconfig import *
#wynik w snake, ktory wygrywa
SNAKE_SCORE = 2
#predkosc gry w snake - w zakresie od 1 do 10
TICK_SNAKE = 10
#ilosc segmentow dodanych do snake po zlapaniu jablka
SNAKE_ADDSIZE = 10
#hasla klawiatury ekranowej dla obu zagadek
password1 = 'one'
password2 = 'two'
#ilosc powtorzen mp3 #ilosc powtorzen mp3
MP3_LOOPS = 4 MP3_LOOPS = 4
@ -236,7 +238,9 @@ GPIO.setup(PIN_SUC10, GPIO.OUT)
GPIO.setup(PIN_RELAY, GPIO.OUT) GPIO.setup(PIN_RELAY, GPIO.OUT)
GPIO.output(PIN_SUC9, 1) GPIO.output(PIN_SUC9, 1)
GPIO.output(PIN_SUC10, 1) GPIO.output(PIN_SUC10, 1)
GPIO.output(PIN_RELAY, 1)
# Well, we flipped it...
GPIO.output(PIN_RELAY, 0)
WINSIZEX, WINSIZEY = 900, 680 WINSIZEX, WINSIZEY = 900, 680
timeSec = 0 timeSec = 0
@ -244,9 +248,6 @@ UP = 1
DOWN = 3 DOWN = 3
RIGHT = 2 RIGHT = 2
LEFT = 4 LEFT = 4
lastJoyState = RIGHT
score = 0
dynamoValSPI = [0,0,0]
#numery slajdow #numery slajdow
SLIDE_START = 0 SLIDE_START = 0
@ -288,11 +289,11 @@ def go_to_slide(new_slide):
logging.warning('Same slide...') logging.warning('Same slide...')
return False return False
if slides.get(slide) and not slides[slide].exit(new_slide): if slides.get(slide) and not slides[slide].exit(slides.get(new_slide)):
logging.warning('exit rejected') logging.warning('exit rejected')
return False return False
if slides.get(new_slide) and not slides[new_slide].enter(slide): if slides.get(new_slide) and not slides[new_slide].enter(slides.get(slide)):
logging.warning('enter rejected') logging.warning('enter rejected')
return False return False
@ -330,6 +331,7 @@ class BroadcastThread(threading.Thread):
print('sending') print('sending')
cs.sendto(json.dumps({ cs.sendto(json.dumps({
'slide': slide, 'slide': slide,
'name': socket.gethostname(),
}), ('255.255.255.255', 54545)) }), ('255.255.255.255', 54545))
time.sleep(1) time.sleep(1)
@ -345,7 +347,6 @@ class ReceiveThread(threading.Thread):
try: try:
msg, (host, port) = s.recvfrom(1024) msg, (host, port) = s.recvfrom(1024)
self.states[host] = json.loads(msg) self.states[host] = json.loads(msg)
print(self.states)
if all(s['slide'] in [SLIDE_CONGRATS, SLIDE_CONGRATS_EVERYTHING] if all(s['slide'] in [SLIDE_CONGRATS, SLIDE_CONGRATS_EVERYTHING]
for s in self.states.values()): for s in self.states.values()):
@ -376,10 +377,12 @@ for c in ['/dev/ttyUSB0', '/dev/ttyACM0']:
rth.daemon = True rth.daemon = True
rth.start() rth.start()
webapp.app.rth = rth
def win(): def win():
print "GAME OVER - YOU WIN" print "GAME OVER - YOU WIN"
GPIO.output(PIN_RELAY, 0) GPIO.output(PIN_RELAY, 1)
def signalWin(success): def signalWin(success):
pin = 0 pin = 0
@ -446,9 +449,6 @@ def die(screen, score):
screen.blit(t, (10, 270)) screen.blit(t, (10, 270))
pygame.display.update() pygame.display.update()
pygame.time.wait(2000) pygame.time.wait(2000)
global slide
slide = SLIDE_SNAKE_DEAD
waitForEvents()
############# old main ############# old main
######## CONSTANTS ######## CONSTANTS
@ -546,11 +546,11 @@ def main():
# Set the x, y postions of the mouse click # Set the x, y postions of the mouse click
x, y = event.pos x, y = event.pos
if enterButton.collidepoint(x, y): if enterButton.collidepoint(x, y):
if passwordLetter == password1: if passwordLetter == PASSWORD1:
print 'password correct for task 9.' print 'password correct for task 9.'
signalWin(9) signalWin(9)
if passwordLetter == password2: if passwordLetter == PASSWORD2:
print 'password correct for task 10.' print 'password correct for task 10.'
signalWin(10) signalWin(10)

13
raspi/run.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# Simple SUPERVISOR script to keep pySejf running...
(
flock -n 9 || exit 1
cd $(dirname $(realpath $0))
while true; do
python pySejf.py 2>&1 | tee -a /tmp/pysejf.log
sleep 0.5;
done
) 9>/var/lock/pysejf

View File

@ -2,18 +2,33 @@
<body> <body>
<table> <table>
<ul>
{% for k, v in states %}
<li>
{% if v['name'] == hostname %}<b>{% endif %}
<a href="http://{{ k }}:5000">{{ v['name'] }}</a> ({{ v['slide'] }})
{% if v['name'] == hostname %}</b>{% endif %}
</li>
{% endfor %}
</ul>
<tr> <tr>
<th>Włącz</th> <th>Włącz</th>
{% for n in range(10) %} {% for n in range(10) %}
<td><a href="/set/{{ n }}">{{ n + 1 }}</a></td> <td><a href="/set/{{ n }}">{{ n + 1 }}</a></td>
{% endfor %} {% endfor %}
<td><a href="/set/all">Wszystko</a></td>
</tr> </tr>
<tr> <tr>
<th>Wyłącz</th> <th>Wyłącz</th>
{% for n in range(10) %} {% for n in range(10) %}
<td><a href="/clear/{{ n }}">{{ n + 1 }}</a></td> <td><a href="/clear/{{ n }}">{{ n + 1 }}</a></td>
{% endfor %} {% endfor %}
<td><a href="/clear/all">Wszystko</a></td>
</tr> </tr>
</table> </table>
<a href="/restart" style="color: red">RESTART</a>
</body> </body>
</html> </html>

View File

@ -1,6 +1,8 @@
import flask import flask
import string import string
import time
import threading import threading
import socket
app = flask.Flask(__name__) app = flask.Flask(__name__)
@ -14,9 +16,41 @@ def clear_task(task):
app.port.write(string.lowercase[task]) app.port.write(string.lowercase[task])
return flask.redirect('/') return flask.redirect('/')
@app.route('/set/all')
def set_all():
app.port.write(string.uppercase)
return flask.redirect('/')
@app.route('/clear/all')
def clear_all():
app.port.write(string.lowercase)
return flask.redirect('/')
@app.route('/restart')
def restart():
import thread
thread.interrupt_main()
return flask.redirect('/') # xD
@app.route('/') @app.route('/')
def index(): def index():
return flask.render_template('index.html') states = app.rth.states.items()
states.sort(key=lambda (k, v): v['name'])
return flask.render_template(
'index.html', hostname=socket.gethostname(), states=states)
@app.route('/arduino/reset')
def reset():
app.port.dtr = False
time.sleep(0.5)
app.port.dtr = True
time.sleep(0.5)
app.port.dtr = False
time.sleep(0.5)
app.port.dtr = True
return flask.redirect('/')
def init(ser): def init(ser):
app.port = ser app.port = ser