2022-12-11 08:40:31 +01:00
|
|
|
import bge # Bibliothèque Blender Game Engine (UPBGE)
|
2023-01-06 21:23:44 +01:00
|
|
|
from twin_threading import thread_cmd_start, thread_cmd_stop, thread_cmd_end # Multithreading
|
|
|
|
import twin_serial # Liaison série
|
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>
|
2023-01-06 21:23:44 +01:00
|
|
|
# @copyright: Copyright (C) 2020-2023 Philippe Roy
|
2022-12-11 08:40:31 +01:00
|
|
|
# @license: GNU GPL
|
|
|
|
###############################################################################
|
|
|
|
|
2023-01-07 18:22:03 +01:00
|
|
|
# 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
|
|
|
|
2023-01-07 18:22:03 +01:00
|
|
|
# Récupérer le brochage du jumeau réel
|
|
|
|
from porcou import pin_config
|
2022-12-11 08:40:31 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
|
###############################################################################
|
2022-12-23 14:30:13 +01:00
|
|
|
# Gyrophare
|
2022-12-11 08:40:31 +01:00
|
|
|
###############################################################################
|
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
# Ordre pour allumer le gyrophare
|
2022-12-22 08:11:43 +01:00
|
|
|
def gyr (order):
|
|
|
|
scene.objects['Led']['activated']=order
|
2022-12-11 08:40:31 +01:00
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
###############################################################################
|
|
|
|
# Actionneurs
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-22 08:11:43 +01:00
|
|
|
# Ordre pour le moteur phase ouvrir
|
|
|
|
def mot_o (order):
|
|
|
|
scene.objects['Moteur']['open']=order
|
2022-12-11 08:40:31 +01:00
|
|
|
|
2022-12-22 08:11:43 +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
|
|
|
|
2022-12-22 08:11:43 +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
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-22 08:11:43 +01:00
|
|
|
# Compte-rendu du capteur fin de course portail ouvert
|
2022-12-13 02:42:31 +01:00
|
|
|
def fdc_o ():
|
2023-01-07 10:42:19 +01:00
|
|
|
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
|
|
|
|
2023-01-07 10:42:19 +01:00
|
|
|
# Compte-rendu du capteur fin de course portail fermé
|
2022-12-13 02:42:31 +01:00
|
|
|
def fdc_f ():
|
2023-01-07 10:42:19 +01:00
|
|
|
if scene.objects['Microrupteur fdc ferme']['activated'] or scene.objects['Microrupteur fdc ferme']['activated_real']:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2022-12-22 08:11:43 +01:00
|
|
|
# Compte-rendu du capteur barrage IR
|
2022-12-11 08:40:31 +01:00
|
|
|
def ir_recep ():
|
2023-01-07 10:42:19 +01:00
|
|
|
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
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-22 08:11:43 +01:00
|
|
|
# Compte-rendu du bouton pousssoir coté rue
|
2022-12-11 08:40:31 +01:00
|
|
|
def bp_ext ():
|
2023-01-07 10:42:19 +01:00
|
|
|
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
|
|
|
|
2022-12-22 08:11:43 +01:00
|
|
|
# Compte-rendu du bouton pousssoir coté cour
|
2022-12-11 08:40:31 +01:00
|
|
|
def bp_int ():
|
2023-01-07 10:42:19 +01:00
|
|
|
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
|
|
|
|
2022-12-11 15:50:38 +01:00
|
|
|
###############################################################################
|
2023-01-06 21:23:44 +01:00
|
|
|
# Jumeau
|
|
|
|
###############################################################################
|
|
|
|
|
2023-01-07 10:42:19 +01:00
|
|
|
# Créer une broche
|
|
|
|
def jumeau_get_pin(board, name, brochage):
|
|
|
|
for pin in brochage :
|
|
|
|
if pin ==name:
|
2023-01-07 18:22:03 +01:00
|
|
|
# print (pin_config[pin][0][0]+':'+str(brochage[pin])+':'+pin_config[pin][0][1])
|
|
|
|
return board.get_pin(pin_config[pin][0][0]+':'+str(brochage[pin])+':'+pin_config[pin][0][1])
|
2023-01-07 10:42:19 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
# Activer le jumelage
|
|
|
|
def jumeau (brochage=None):
|
|
|
|
|
|
|
|
# Carte
|
|
|
|
board =twin_serial.open()
|
|
|
|
scene.objects['System']['board']=board
|
|
|
|
# print ("jumeau : ", scene.objects['System']['board'])
|
|
|
|
|
|
|
|
# Brochage
|
|
|
|
if brochage is not None:
|
2023-01-07 18:22:03 +01:00
|
|
|
for pin in pin_config :
|
|
|
|
scene.objects[pin_config[pin][1][0]][pin_config[pin][1][1]] = jumeau_get_pin(board, pin, brochage)
|
2023-01-07 10:42:19 +01:00
|
|
|
|
|
|
|
# Désactiver le jumelage
|
|
|
|
def jumeau_stop ():
|
|
|
|
twin_serial.close(scene.objects['System']['board'])
|
2023-01-06 21:23:44 +01:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Cycle
|
2022-12-11 08:40:31 +01:00
|
|
|
###############################################################################
|
|
|
|
|
2023-01-06 21:23:44 +01:00
|
|
|
# Temporisation
|
2022-12-11 08:40:31 +01:00
|
|
|
def tempo (duree):
|
|
|
|
time.sleep(duree)
|
2023-01-06 21:23:44 +01:00
|
|
|
|
2023-01-07 00:01:01 +01:00
|
|
|
# Arrêt
|
|
|
|
def stop():
|
|
|
|
if scene.objects['System']['twins']:
|
|
|
|
twin_serial.close(scene.objects['System']['board'])
|
2023-01-07 10:42:19 +01:00
|
|
|
time.sleep(1)
|
2023-01-07 00:01:01 +01:00
|
|
|
thread_cmd_stop()
|
|
|
|
|
|
|
|
# Fin naturelle
|
2023-01-06 21:23:44 +01:00
|
|
|
def end():
|
|
|
|
if scene.objects['System']['twins']:
|
2023-01-07 00:01:01 +01:00
|
|
|
twin_serial.close(scene.objects['System']['board'])
|
2023-01-07 10:42:19 +01:00
|
|
|
time.sleep(1)
|
2023-01-06 21:23:44 +01:00
|
|
|
thread_cmd_end()
|
|
|
|
|
|
|
|
def fin():
|
|
|
|
end()
|
|
|
|
|
|
|
|
def quit():
|
|
|
|
end()
|