diff --git a/Lycee/programmation_python/snt/correction/rp_cmd-mission1.py b/Lycee/programmation_python/snt/correction/rp_cmd-mission1.py deleted file mode 100644 index 082f370..0000000 --- a/Lycee/programmation_python/snt/correction/rp_cmd-mission1.py +++ /dev/null @@ -1,56 +0,0 @@ -import bge # Bibliothèque Blender Game Engine (UPBGE) -import time -from rp_lib import * # Bibliothèque Ropy - -############################################################################### -# rp_cmd.py -# @title: Commandes pour le Rover Ropy -# @project: Ropy (Blender-EduTech) -############################################################################### - -############################################################################### -# Initialisation du niveau : -# Niveau 1 : Les premiers pas de Ropy -# Niveau 2 : Ma première fonction -# Niveau 3 : Sécuriser Ropy -# Niveau 4 : Partir au bout du monde -# Niveau 5 : Faire face à l'inconnu -# Niveau 6 : Se rendre utile -############################################################################### - -############################################################################### -# Fonctions -############################################################################### - -def mrp_avancer (): - rp_avancer() - rp_marquer() - -############################################################################### -# Commandes -############################################################################### - -def commandes(): - - rp_gauche() - mrp_avancer() - rp_droite() - mrp_avancer() - mrp_avancer() - mrp_avancer() - mrp_avancer() - rp_droite() - mrp_avancer() - mrp_avancer() - - rp_fin() # A garder - -############################################################################### -# En: Externals calls << DONT CHANGE THIS SECTION >> -# Fr: Appels externes << NE PAS MODIFIER CETTE SECTION >> -############################################################################### - -if __name__=='start': - thread_cmd_start(commandes) -if __name__=='stop': - thread_cmd_stop()