jumeaux-numeriques/portail_coulissant/porcou_lib.py

180 lines
6.3 KiB
Python
Raw Normal View History

2022-12-11 08:40:31 +01:00
import bge # Bibliothèque Blender Game Engine (UPBGE)
import subprocess # Multiprocessus
from twin_threading import thread_cmd_start, thread_cmd_stop, thread_cmd_end # Multithreading (multitâches)
from twin_serial import jumeau, jumeau_stop, serial_close # Liaison série
import os
import sys
2022-12-11 08:40:31 +01:00
import time
###############################################################################
# porcou_lib.py
2022-12-18 22:29:06 +01:00
# @title: Bibliothèque utilisateur du portail coulissant
2022-12-11 08:40:31 +01:00
# @project: Blender-EduTech
# @lang: fr
# @authors: Philippe Roy <philippe.roy@ac-grenoble.fr>
# @copyright: Copyright (C) 2020-2023 Philippe Roy
2022-12-11 08:40:31 +01:00
# @license: GNU GPL
###############################################################################
# Récupérer la scène UPBGE
2022-12-11 08:40:31 +01:00
scene = bge.logic.getCurrentScene()
2022-12-11 15:50:38 +01:00
# UPBGE constants
JUST_ACTIVATED = bge.logic.KX_INPUT_JUST_ACTIVATED
JUST_RELEASED = bge.logic.KX_INPUT_JUST_RELEASED
ACTIVATE = bge.logic.KX_INPUT_ACTIVE
# JUST_DEACTIVATED = bge.logic.KX_SENSOR_JUST_DEACTIVATED
###############################################################################
# Gyrophare
2022-12-11 08:40:31 +01:00
###############################################################################
# Ordre pour allumer le gyrophare
def gyr (order):
scene.objects['Led']['activated']=order
2022-12-11 08:40:31 +01:00
###############################################################################
# Actionneurs
###############################################################################
# Ordre pour le moteur phase ouvrir
def mot_o (order):
scene.objects['Moteur']['open']=order
2022-12-11 08:40:31 +01:00
# Ordre pour le moteur phase fermer
def mot_f (order):
scene.objects['Moteur']['close']=order
2022-12-11 08:40:31 +01:00
# Ordre pour le capteur barrage IR
def ir_emet(order):
scene.objects['Emetteur IR']['active']=order
2022-12-11 08:40:31 +01:00
2022-12-11 15:50:38 +01:00
###############################################################################
2022-12-11 08:40:31 +01:00
# Capteurs
###############################################################################
# Compte-rendu du capteur fin de course portail ouvert
2022-12-13 02:42:31 +01:00
def fdc_o ():
if scene.objects['Microrupteur fdc ouvert']['activated'] or scene.objects['Microrupteur fdc ouvert']['activated_real']:
return True
else:
return False
2022-12-11 08:40:31 +01:00
# Compte-rendu du capteur fin de course portail fermé
2022-12-13 02:42:31 +01:00
def fdc_f ():
if scene.objects['Microrupteur fdc ferme']['activated'] or scene.objects['Microrupteur fdc ferme']['activated_real']:
return True
else:
return False
# Compte-rendu du capteur barrage IR
# Absence d'obstacle -> True, présence d'obstacle -> False
2022-12-11 08:40:31 +01:00
def ir_recep ():
if scene.objects['Recepteur IR']['activated'] or scene.objects['Recepteur IR']['activated_real']==False:
2023-01-01 14:48:27 +01:00
return False
else:
return True
2022-12-11 08:40:31 +01:00
2022-12-11 15:50:38 +01:00
###############################################################################
2022-12-11 08:40:31 +01:00
# Boutons poussoirs
###############################################################################
# Compte-rendu du bouton pousssoir coté rue
2022-12-11 08:40:31 +01:00
def bp_ext ():
if scene.objects['Bp cote rue']['activated'] or scene.objects['Bp cote rue']['activated_real']:
return True
else:
return False
2022-12-11 08:40:31 +01:00
# Compte-rendu du bouton pousssoir coté cour
2022-12-11 08:40:31 +01:00
def bp_int ():
if scene.objects['Bp cote cour']['activated'] or scene.objects['Bp cote cour']['activated_real']:
return True
else:
return False
2022-12-11 08:40:31 +01:00
###############################################################################
# Cycle
2022-12-11 08:40:31 +01:00
###############################################################################
# Temporisation
2022-12-11 08:40:31 +01:00
def tempo (duree):
time.sleep(duree)
2023-01-07 00:01:01 +01:00
# Arrêt
def stop():
if scene.objects['System']['twins']:
serial_close(scene.objects['System']['board'])
time.sleep(1)
scene.objects['System']['plot_draw']=False
2023-01-07 00:01:01 +01:00
thread_cmd_stop()
# Fin naturelle
def end():
if scene.objects['System']['twins']:
serial_close(scene.objects['System']['board'])
time.sleep(1)
scene.objects['System']['plot_draw']=False
thread_cmd_end()
def fin():
end()
def quit():
end()
###############################################################################
# Visualisation des données
###############################################################################
2023-01-15 10:05:41 +01:00
# Lancement du grapheur
def plot(data):
2023-01-15 10:05:41 +01:00
# subprocess.run([sys.executable, os.path.join(os.getcwd(), "twin_plot.py")], , stdin=subprocess.PIPE) # Process bloquant
# Terminer le processus précédent
if scene.objects['System']['plot_proc'] is not None:
if scene.objects['System']['plot_proc'].poll()==None:
scene.objects['System']['plot_proc'].terminate()
scene.objects['System']['plot_draw'] = True
scene.objects['System']['plot_time'] = 0
scene.objects['System']['plot_data'] = data # FIXME : conversion mémonique -> 3D
2023-01-15 10:05:41 +01:00
scene.objects['System']['plot_proc'] = subprocess.Popen([sys.executable, os.path.join(os.getcwd(), "twin_plot.py")], stdin=subprocess.PIPE, encoding = 'utf8')
scene.objects['System']['plot']=True
# Communication avec Qt5
2023-01-15 10:05:41 +01:00
def plot_maj(cont):
if cont.sensors['Plot'].positive :
# Affichage du graphique
if scene.objects['System']['plot_draw']:
# Préparation du message
# FIXME : ajouter les valeurs réelles et valeurs numériques ('activated_real')
msg=str(scene.objects['System']['plot_time'])
for obj in scene.objects['System']['plot_data']:
if scene.objects[obj]['activated']:
msg = msg+",1"
else:
msg = msg+",0"
msg = msg+"\n"
# Envoi (Pipe)
if scene.objects['System']['plot_proc'].poll()==None:
# scene.objects['System']['plot_proc'].communicate(input=time_send.encode())[0] # Communication bloquante
scene.objects['System']['plot_proc'].stdin.write(msg)
else:
print ("Stop")
scene.objects['System']['plot']=False
scene.objects['System']['plot_draw'] =False
scene.objects['System']['plot_proc'].terminate()
# Arret de l'affichage du graphique
else :
if scene.objects['System']['plot_proc'].poll()==None:
pass
else:
print ("Stop")
scene.objects['System']['plot']=False
scene.objects['System']['plot_draw'] =False
scene.objects['System']['plot_proc'].terminate()