2022-12-18 17:33:23 +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-23 23:29:17 +01:00
|
|
|
import time
|
2022-12-18 17:33:23 +01:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# montchg_lib.py
|
|
|
|
# @title: Bibliothèque utilisateur du monte-charge
|
|
|
|
# @project: Blender-EduTech
|
|
|
|
# @lang: fr
|
|
|
|
# @authors: Philippe Roy <philippe.roy@ac-grenoble.fr>
|
2023-01-06 21:23:44 +01:00
|
|
|
# @copyright: Copyright (C) 2022-2023 Philippe Roy
|
2022-12-18 17:33:23 +01:00
|
|
|
# @license: GNU GPL
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
scene = bge.logic.getCurrentScene()
|
|
|
|
|
2022-12-21 19:01:21 +01:00
|
|
|
# Carte du jumeau numérique
|
2022-12-18 17:33:23 +01:00
|
|
|
board = None
|
|
|
|
board_it = None # Iterator (input)
|
2022-12-21 19:01:21 +01:00
|
|
|
|
|
|
|
# Brochage du jumeau numérique
|
2022-12-22 05:02:33 +01:00
|
|
|
# FIXME
|
2022-12-18 17:33:23 +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-22 05:02:33 +01:00
|
|
|
# Voyants
|
2022-12-18 17:33:23 +01:00
|
|
|
###############################################################################
|
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
# Ordre pour allumer le voyant niveau 0
|
2022-12-21 19:01:21 +01:00
|
|
|
def voy_0 (order):
|
|
|
|
scene.objects['Led niveau 0']['activated']=order
|
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
# Ordre pour allumer le voyant niveau 1
|
2022-12-21 19:01:21 +01:00
|
|
|
def voy_1 (order):
|
|
|
|
scene.objects['Led niveau 1']['activated']=order
|
2022-12-22 05:02:33 +01:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Actionneurs
|
|
|
|
###############################################################################
|
2022-12-18 17:33:23 +01:00
|
|
|
|
2022-12-21 19:01:21 +01:00
|
|
|
# Ordre pour le moteur phase monter
|
|
|
|
def mot_m (order):
|
2022-12-22 05:02:33 +01:00
|
|
|
scene.objects['Moteur']['up']=order
|
2022-12-21 19:01:21 +01:00
|
|
|
|
|
|
|
# Ordre pour le moteur phase descendre
|
|
|
|
def mot_d (order):
|
2022-12-22 05:02:33 +01:00
|
|
|
scene.objects['Moteur']['down']=order
|
2022-12-18 17:33:23 +01:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Capteurs
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-21 19:01:21 +01:00
|
|
|
# Compte-rendu du capteur de présence cabine niveau 0
|
|
|
|
def pc_0 ():
|
|
|
|
return scene.objects['Microrupteur niveau 0']['activated']
|
2022-12-18 17:33:23 +01:00
|
|
|
|
2022-12-21 19:01:21 +01:00
|
|
|
# Compte-rendu du capteur de présence cabine niveau 0
|
|
|
|
def pc_1 ():
|
|
|
|
return scene.objects['Microrupteur niveau 1']['activated']
|
2022-12-18 17:33:23 +01:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Boutons poussoirs
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-21 19:01:21 +01:00
|
|
|
# Compte-rendu du bouton pousssoir appel niveau 0
|
|
|
|
def ba_0 ():
|
|
|
|
return scene.objects['Bp niveau 0']['activated']
|
2022-12-18 17:33:23 +01:00
|
|
|
|
2022-12-21 19:01:21 +01:00
|
|
|
# Compte-rendu du bouton pousssoir appel niveau 1
|
|
|
|
def ba_1 ():
|
|
|
|
return scene.objects['Bp niveau 1']['activated']
|
2022-12-18 17:33:23 +01:00
|
|
|
|
|
|
|
###############################################################################
|
2023-01-06 21:23:44 +01:00
|
|
|
# Jumeau
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
def jumeau ():
|
|
|
|
twin_serial.open()
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Cycle
|
2022-12-18 17:33:23 +01:00
|
|
|
###############################################################################
|
|
|
|
|
2023-01-06 21:23:44 +01:00
|
|
|
# Temporisation
|
2022-12-18 17:33:23 +01:00
|
|
|
def tempo (duree):
|
|
|
|
time.sleep(duree)
|
2023-01-06 21:23:44 +01:00
|
|
|
|
|
|
|
# Fin
|
|
|
|
def end():
|
|
|
|
if scene.objects['System']['twins']:
|
|
|
|
twin_serial.close()
|
|
|
|
thread_cmd_end()
|
|
|
|
|
|
|
|
def fin():
|
|
|
|
end()
|
|
|
|
|
|
|
|
def quit():
|
|
|
|
end()
|