THE MATRIX CODE



23/03/2025 Une version sans nettoyage du canvas, donc plus light.

// Création de la classe MatrixRainStaticLight
  const MatrixRainStaticLight = function() {
    this.resolveRoot();
    this.init();
  };

  // Initialisation de l'animation
  MatrixRainStaticLight.prototype.init = function() {

    // Définition des alphabets (katakana, latin, chiffres)
    const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
    const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    const nums = '0123456789';
    this.alphabet = katakana + latin + nums;
    
    this.fontSize = 18;
    this.color = '#0F0';
    this.colorBlur = "rgba(0,255,0,1)";
    // Calcul du nombre de colonnes selon la largeur du canvas
    this.columns = Math.floor(this._root._width / this.fontSize);
    // Création d'un tableau d'objets pour chaque colonne
    this.objetLetter = Array.from({ length: this.columns }, () => ({
      y: 1,
      letter: "A",
      speed: Math.random() + 0.2,
      delay: 1,
      blurr: Math.max(Math.map(Math.random(), 0.7, 1, 0, 1.5), 0)
    }));
    
    ENV.fontMatrix = "Hack";
    
    // Recalculer les paramètres en cas de redimensionnement
    window.addEventListener("resize", () => {
      this.reinit();
    });
  };

  // Méthode de réinitialisation lors du redimensionnement
  MatrixRainStaticLight.prototype.reinit = function() {
    let canvas = this._root._canvas;
    canvas.width = window.innerWidth * 0.9;
    canvas.height = Math.round(canvas.width / (16 / 7));
    this._root._width = canvas.width;
    this._root._height = canvas.height;
    
    if (Math.abs(this._root.refDimX - canvas.width) > 20) {
      this._root.refDimX = canvas.width;
      this.columns = Math.floor(canvas.width / this.fontSize);
      this.objetLetter = Array.from({ length: this.columns }, () => ({
        y: 1,
        letter: "A",
        speed: Math.random() + 0.2,
        delay: 1,
        blurr: Math.max(Math.map(Math.random(), 0.7, 1, 0, 1.5), 0)
      }));
    }
  };

  // Méthode appelée à chaque frame pour animer l'effet Matrix léger
  MatrixRainStaticLight.prototype.onFrame = function() {
    if (!this._root._canvas) {
      console.log(this);
      return;
    }
    const blurHalo = 2;
    // Dessiner un rectangle semi-transparent pour créer l'effet de fondu
    this.drawRectCorner(0, 0, this._root._canvas.width, this._root._canvas.height, true, "rgba(0, 0, 0, 0.03)", 0, 0, 0, 0, 0);
    
    for (let i = 0; i < this.objetLetter.length; i++) {
      // Lorsque le produit speed * delay dépasse 1, on dessine la lettre
      if (this.objetLetter[i].speed * this.objetLetter[i].delay > 1) {
        this.objetLetter[i].delay = 1;
        let blurr = this.objetLetter[i].blurr;
        const letter = this.alphabet.charAt(Math.floor(Math.random() * this.alphabet.length));
        let fontsize = Math.round(this.fontSize - blurr * 3);
        
        // Dessin de la lettre avec effet de flou (halo)
        this.drawTextLeft(letter, i * fontsize, this.objetLetter[i].y * this.fontSize, ENV.fontMatrix, fontsize * 1.2, this.colorBlur, 0, blurHalo);
        // Dessin de la lettre en blanc
        this.drawTextLeft(letter, i * fontsize, this.objetLetter[i].y * this.fontSize, ENV.fontMatrix, fontsize, "#ffffff", 0, blurr);
        // Dessin de la lettre précédente en vert
        this.drawTextLeft(this.objetLetter[i].letter, i * fontsize, this.objetLetter[i].y * this.fontSize - this.fontSize, ENV.fontMatrix, fontsize, this.color, 0, blurr);
        
        this.objetLetter[i].letter = letter;
        // Remise à zéro de la position verticale selon une condition aléatoire
        if (this.objetLetter[i].y * this.fontSize > this._root._canvas.height && Math.random() > 0.975) {
          this.objetLetter[i].y = 0;
        }
        this.objetLetter[i].y++;
      } else {
        this.objetLetter[i].delay += 1;
      }
    }
  };
	
// ----------------------------------------------------------------
// Configuration de l'environnement global et application de la classe
// ----------------------------------------------------------------
if (_root["canvas_matrixalter"]) {
  // Récupération du root et configuration du canvas
  const _rootMatrixLight = ENV.CanvasManager.getRoot("canvas_matrixalter");
  //pas de nettoyage du canvas à chaque frame
  _root["canvas_matrixalter"].isRunning = false;
  const canvas = _rootMatrixLight._canvas;
  canvas.style.background = "#000000"; // Fond sombre
  canvas.width = window.innerWidth * 0.9;
  canvas.height = Math.round(canvas.width / (16 / 7));
  _rootMatrixLight._width = canvas.width;
  _rootMatrixLight._height = canvas.height;
  _rootMatrixLight.refDimX = canvas.width;

  // Intégration du movieclip dans le moteur via createMovieClip
  _rootMatrixLight.createMovieClip("MatrixRainStaticLight", MatrixRainStaticLight, true);
	
	
}