#include "math.h" #include "Strategie.h" #include "Geometrie_robot.h" #include "Commande_vitesse.h" #include "Strategie_2024_pots.h" #include "i2c_annexe.h" #include "Localisation.h" float angle_bras[6] = { 180 * DEGRE_EN_RADIAN, 120 * DEGRE_EN_RADIAN, 60 * DEGRE_EN_RADIAN, 0, -60 * DEGRE_EN_RADIAN, -120 * DEGRE_EN_RADIAN }; float angle_bras_correction[6] = { 0 * DEGRE_EN_RADIAN, 0 * DEGRE_EN_RADIAN, 0 * DEGRE_EN_RADIAN, 0, 0 * DEGRE_EN_RADIAN, 7 * DEGRE_EN_RADIAN }; enum etat_bras_t{ BRAS_LIBRE, BRAS_OCCUPE, } etat_bras[NB_BRAS]; struct position_t position_pots_dans_groupe_pot[5] = { {.x_mm = -40, .y_mm = 69.2, .angle_radian = -60 * DEGRE_EN_RADIAN}, {.x_mm = 40, .y_mm = 69.2, .angle_radian = -120 * DEGRE_EN_RADIAN}, {.x_mm = -80, .y_mm = 0, .angle_radian = -90 * DEGRE_EN_RADIAN}, {.x_mm = 80, .y_mm = 0, .angle_radian = -90 * DEGRE_EN_RADIAN}, {.x_mm = 0, .y_mm = 0, .angle_radian = -90 * DEGRE_EN_RADIAN} }; struct position_t position_groupe_pot[6] = { {.x_mm = 36.1, .y_mm = 1386.8, .angle_radian = -90 * DEGRE_EN_RADIAN}, {.x_mm = 36.1, .y_mm = 616.2, .angle_radian = -90 * DEGRE_EN_RADIAN}, {.x_mm = 1020, .y_mm = 36.4, .angle_radian = 0 * DEGRE_EN_RADIAN}, {.x_mm = 2000, .y_mm = 36.4, .angle_radian = 0 * DEGRE_EN_RADIAN}, {.x_mm = 2963.9, .y_mm = 616.2, .angle_radian = 90 * DEGRE_EN_RADIAN}, {.x_mm = 2963.9, .y_mm = 1386.8, .angle_radian = 90 * DEGRE_EN_RADIAN} }; /// @brief renvoie la position du centre du pot ainsi que l'ange par lequel l'attraper /// @param groupe_pot Position du groupe de pot /// @param num_pot Pot à prendre, entre 0 et 4 (ou utiliser les macros POT_x) struct position_t groupe_pot_get_pot(unsigned int groupe_pot, unsigned int num_pot){ struct position_t position_pot; struct position_t my_position_groupe_pot; my_position_groupe_pot = position_groupe_pot[groupe_pot]; float angle_groupe_pot = my_position_groupe_pot.angle_radian; position_pot.x_mm = my_position_groupe_pot.x_mm + cosf(angle_groupe_pot) * position_pots_dans_groupe_pot[num_pot].x_mm - sinf(angle_groupe_pot) * position_pots_dans_groupe_pot[num_pot].y_mm; position_pot.y_mm = my_position_groupe_pot.y_mm + sinf(angle_groupe_pot) * position_pots_dans_groupe_pot[num_pot].x_mm + cosf(angle_groupe_pot) * position_pots_dans_groupe_pot[num_pot].y_mm; position_pot.angle_radian = position_pots_dans_groupe_pot[num_pot].angle_radian + angle_groupe_pot; return position_pot; } /// @brief A Affiner /// @return numéro du bras libre (entre 0 et 5) int ordre_bras[NB_BRAS]={5, 0, 1, 2, 3, 4}; int get_bras_libre(void){ for (int i=0; i= 0){ tempo_ms -= step_ms; }else{ i2c_annexe_actionneur_pot(bras, BRAS_HAUT, DOIGT_TIENT); } etat_action = Strategie_tourner_et_aller_a( position_approche_pot.x_mm, position_approche_pot.y_mm, position_attrape_pot.angle_radian - angle_bras[bras], SANS_EVITEMENT, step_ms); if (etat_action == ACTION_TERMINEE){ etat_attrape_pot = AP_APPROCHE_POT; pot = get_pot_suivant(pot); if(pot > 4){ tempo_ms=250; etat_attrape_pot = AP_FINALISE; break; } position_pot = groupe_pot_get_pot(groupe_pot, pot); position_approche_pot = Geometrie_deplace(position_pot, -DISTANCE_APPROCHE_POT_MM); position_attrape_pot = Geometrie_deplace(position_pot, -DISTANCE_ATTRAPE_POT_MM); } break; case AP_FINALISE: if(tempo_ms >= 0){ tempo_ms -= step_ms; }else{ i2c_annexe_actionneur_pot(bras, BRAS_HAUT, DOIGT_TIENT); } etat_action = Strategie_tourner_et_aller_a( position_approche_pot.x_mm, position_approche_pot.y_mm, position_attrape_pot.angle_radian - angle_bras[bras], SANS_EVITEMENT, step_ms); if (etat_action == ACTION_TERMINEE){ etat_attrape_pot = AP_ALLER_VERS_GROUPE_POT; return ACTION_TERMINEE; } break; default: break; } return ACTION_EN_COURS; }