Beispiel #1
0
 public ThemeModel(ThemeModel tm)
 {
     this._name     = tm.Name;
     this._cible    = tm.Cible;
     this._cibleD   = tm.CibleD;
     this._chasseur = tm.Chasseur;
     this._fond     = tm.Fond;
     this._fondD    = tm.FondD;
     this._type     = tm.Type;
 }
Beispiel #2
0
 public ExerciceEvaluation(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeExercice = ExerciceTypes.Evaluation;
 }
Beispiel #3
0
 public ExerciceReeducation(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeExercice = ExerciceTypes.Jeu;
 }
Beispiel #4
0
 public Square(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.NbrPolygone = 4;
     this.TypeForme   = FormeType.Carré;
 }
Beispiel #5
0
 public Target(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeDroite = DroiteType.Vertical;
 }
Beispiel #6
0
 public Circle(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, null)
 {
     this.NbrPolygone = 40;
     this.TypeForme   = FormeType.Cercle;
 }
 public ExerciceGeneric(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
 {
     BaseConfig  = baseConf;
     BorneConfig = borneConf;
     Theme       = theme;
 }
 public FreeAmplitude(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeDroite = DroiteType.VerticalLong;
 }
Beispiel #9
0
 public ExerciceMouvement(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeEval       = ExerciceEvalTypes.Mouvement;
     this.PositionDroite = 2;
 }
Beispiel #10
0
 public Tonus(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeDroite = DroiteType.Tonus;
 }
Beispiel #11
0
        private byte[] _tabPosDebut;  // util si mode jeu !

        #endregion

        #region Constructors
        /// <summary>
        /// Initializes a new instance of the ExerciceForme class.
        /// </summary>
        public ExerciceJeu(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
            : base(baseConf, borneConf, theme)
        {
            //valeur pour l'exo par défaut
            this._trace       = false;
            this._temps       = 10;
            this._score       = 160U;
            this._taille      = Zoom.Petit;
            this._lvl         = 1;
            this._tabPosDebut = new byte[2];
            _tabPosDebut[0]   = 47; // 45
            _tabPosDebut[1]   = 50;
        }
Beispiel #12
0
 public ExerciceForme(ExerciceBaseConfig baseConf, ExerciceBorneConfig borneConf, ThemeModel theme)
     : base(baseConf, borneConf, theme)
 {
     this.TypeEval    = ExerciceEvalTypes.Forme;
     this.Taille      = 1;
     this.Origine     = 2;
     this.AllerRetour = false;
 }