452 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			452 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*  Grafx2 - The Ultimate 256-color bitmap paint program
 | 
						|
 | 
						|
    Copyright 2008 Yves Rizoud
 | 
						|
    Copyright 2008 Franck Charlet
 | 
						|
    Copyright 2007 Adrien Destugues
 | 
						|
    Copyright 1996-2001 Sunset Design (Guillaume Dorme & Karl Maritaud)
 | 
						|
 | 
						|
    Grafx2 is free software; you can redistribute it and/or
 | 
						|
    modify it under the terms of the GNU General Public License
 | 
						|
    as published by the Free Software Foundation; version 2
 | 
						|
    of the License.
 | 
						|
 | 
						|
    Grafx2 is distributed in the hope that it will be useful,
 | 
						|
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
    GNU General Public License for more details.
 | 
						|
 | 
						|
    You should have received a copy of the GNU General Public License
 | 
						|
    along with Grafx2; if not, see <http://www.gnu.org/licenses/> or
 | 
						|
    write to the Free Software Foundation, Inc.,
 | 
						|
    59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 | 
						|
*/
 | 
						|
 | 
						|
#include <string.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <SDL.h>
 | 
						|
#include "global.h"
 | 
						|
#include "sdlscreen.h"
 | 
						|
#include "divers.h"
 | 
						|
#include "pxsimple.h"
 | 
						|
 | 
						|
void Pixel_Tall (word X,word Y,byte Couleur)
 | 
						|
/* Affiche un pixel de la Couleur aux coords X;Y à l'écran */
 | 
						|
{
 | 
						|
  *(Ecran + X + Y * 2 * Largeur_ecran)=Couleur;
 | 
						|
  *(Ecran + X + (Y * 2 + 1) * Largeur_ecran)=Couleur;
 | 
						|
}
 | 
						|
 | 
						|
byte Lit_Pixel_Tall (word X,word Y)
 | 
						|
/* On retourne la couleur du pixel aux coords données */
 | 
						|
{
 | 
						|
  return *( Ecran + Y * 2 * Largeur_ecran + X );
 | 
						|
}
 | 
						|
 | 
						|
void Block_Tall (word Debut_X,word Debut_Y,word width,word height,byte Couleur)
 | 
						|
/* On affiche un rectangle de la couleur donnée */
 | 
						|
{
 | 
						|
  SDL_Rect rectangle;
 | 
						|
  rectangle.x=Debut_X;
 | 
						|
  rectangle.y=Debut_Y*2;
 | 
						|
  rectangle.w=width;
 | 
						|
  rectangle.h=height*2;
 | 
						|
  SDL_FillRect(Ecran_SDL,&rectangle,Couleur);
 | 
						|
}
 | 
						|
 | 
						|
void Afficher_partie_de_l_ecran_Tall (word width,word height,word image_width)
 | 
						|
/* Afficher une partie de l'image telle quelle sur l'écran */
 | 
						|
{
 | 
						|
  byte* Dest=Ecran; //On va se mettre en 0,0 dans l'écran (Dest)
 | 
						|
  byte* Src=Principal_Decalage_Y*image_width+Principal_Decalage_X+Principal_Ecran; //Coords de départ ds la source (Src)
 | 
						|
  int y;
 | 
						|
 | 
						|
  for(y=height;y!=0;y--)
 | 
						|
  // Pour chaque ligne
 | 
						|
  {
 | 
						|
    // On fait une copie de la ligne
 | 
						|
    memcpy(Dest,Src,width);
 | 
						|
    Dest+=Largeur_ecran;
 | 
						|
    memcpy(Dest,Src,width);
 | 
						|
 | 
						|
    // On passe à la ligne suivante
 | 
						|
    Src+=image_width;
 | 
						|
    Dest+=Largeur_ecran;
 | 
						|
  }
 | 
						|
  //UpdateRect(0,0,width,height);
 | 
						|
}
 | 
						|
 | 
						|
void Pixel_Preview_Normal_Tall (word X,word Y,byte Couleur)
 | 
						|
/* Affichage d'un pixel dans l'écran, par rapport au décalage de l'image 
 | 
						|
 * dans l'écran, en mode normal (pas en mode loupe)
 | 
						|
 * Note: si on modifie cette procédure, il faudra penser à faire également 
 | 
						|
 * la modif dans la procédure Pixel_Preview_Loupe_SDL. */
 | 
						|
{
 | 
						|
//  if(X-Principal_Decalage_X >= 0 && Y - Principal_Decalage_Y >= 0)
 | 
						|
  Pixel_Tall(X-Principal_Decalage_X,Y-Principal_Decalage_Y,Couleur);
 | 
						|
}
 | 
						|
 | 
						|
void Pixel_Preview_Loupe_Tall  (word X,word Y,byte Couleur)
 | 
						|
{
 | 
						|
  // Affiche le pixel dans la partie non zoomée
 | 
						|
  Pixel_Tall(X-Principal_Decalage_X,Y-Principal_Decalage_Y,Couleur);
 | 
						|
  
 | 
						|
  // Regarde si on doit aussi l'afficher dans la partie zoomée
 | 
						|
  if (Y >= Limite_Haut_Zoom && Y <= Limite_visible_Bas_Zoom
 | 
						|
          && X >= Limite_Gauche_Zoom && X <= Limite_visible_Droite_Zoom)
 | 
						|
  {
 | 
						|
    // On est dedans
 | 
						|
    int height;
 | 
						|
    int Y_Zoom = Table_mul_facteur_zoom[Y-Loupe_Decalage_Y];
 | 
						|
 | 
						|
    if (Menu_Ordonnee - Y_Zoom < Loupe_Facteur)
 | 
						|
      // On ne doit dessiner qu'un morceau du pixel
 | 
						|
      // sinon on dépasse sur le menu
 | 
						|
      height = Menu_Ordonnee - Y_Zoom;
 | 
						|
    else
 | 
						|
      height = Loupe_Facteur;
 | 
						|
 | 
						|
    Block_Tall(
 | 
						|
      Table_mul_facteur_zoom[X-Loupe_Decalage_X]+Principal_X_Zoom, 
 | 
						|
      Y_Zoom, Loupe_Facteur, height, Couleur
 | 
						|
      );
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void Ligne_horizontale_XOR_Tall(word Pos_X,word Pos_Y,word width)
 | 
						|
{
 | 
						|
  //On calcule la valeur initiale de Dest:
 | 
						|
  byte* Dest=Pos_Y*2*Largeur_ecran+Pos_X+Ecran;
 | 
						|
 | 
						|
  int X;
 | 
						|
 | 
						|
  for (X=0;X<width;X++)
 | 
						|
    *(Dest+X)=~*(Dest+X);
 | 
						|
 | 
						|
  Dest=(Pos_Y*2+1)*Largeur_ecran+Pos_X+Ecran;
 | 
						|
  for (X=0;X<width;X++)
 | 
						|
    *(Dest+X)=~*(Dest+X);
 | 
						|
}
 | 
						|
 | 
						|
void Ligne_verticale_XOR_Tall(word Pos_X,word Pos_Y,word height)
 | 
						|
{
 | 
						|
  int i;
 | 
						|
  byte color;
 | 
						|
  for (i=Pos_Y*2;i<(Pos_Y+height)*2;i++)
 | 
						|
  {
 | 
						|
    color=*(Ecran+Pos_X+i*Largeur_ecran);
 | 
						|
    *(Ecran+Pos_X+i*Largeur_ecran)=~color;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void Display_brush_Color_Tall(word Pos_X,word Pos_Y,word x_offset,word y_offset,word width,word height,byte Couleur_de_transparence,word Largeur_brosse)
 | 
						|
{
 | 
						|
  // Dest = Position à l'écran
 | 
						|
  byte* Dest = Ecran + Pos_Y * 2 * Largeur_ecran + Pos_X;
 | 
						|
  // Src = Position dans la brosse
 | 
						|
  byte* Src = Brosse + y_offset * Largeur_brosse + x_offset;
 | 
						|
 | 
						|
  word x,y;
 | 
						|
 | 
						|
  // Pour chaque ligne
 | 
						|
  for(y = height;y > 0; y--)
 | 
						|
  {
 | 
						|
    // Pour chaque pixel
 | 
						|
    for(x = width;x > 0; x--)
 | 
						|
    {
 | 
						|
      // On vérifie que ce n'est pas la transparence
 | 
						|
      if(*Src != Couleur_de_transparence)
 | 
						|
      {
 | 
						|
        *Dest = *Src;
 | 
						|
        *(Dest+Largeur_ecran) = *Src;
 | 
						|
      }
 | 
						|
 | 
						|
      // Pixel suivant
 | 
						|
      Src++; Dest++;
 | 
						|
    }
 | 
						|
 | 
						|
    // On passe à la ligne suivante
 | 
						|
    Dest = Dest + 2 * Largeur_ecran - width;
 | 
						|
    Src = Src + Largeur_brosse - width;
 | 
						|
  }
 | 
						|
  UpdateRect(Pos_X,Pos_Y,width,height);
 | 
						|
}
 | 
						|
 | 
						|
void Display_brush_Mono_Tall(word Pos_X, word Pos_Y,
 | 
						|
        word x_offset, word y_offset, word width, word height,
 | 
						|
        byte Couleur_de_transparence, byte Couleur, word Largeur_brosse)
 | 
						|
/* On affiche la brosse en monochrome */
 | 
						|
{
 | 
						|
  byte* Dest=Pos_Y*2*Largeur_ecran+Pos_X+Ecran; // Dest = adr Destination à 
 | 
						|
      // l'écran
 | 
						|
  byte* Src=Largeur_brosse*y_offset+x_offset+Brosse; // Src = adr ds 
 | 
						|
      // la brosse
 | 
						|
  int x,y;
 | 
						|
 | 
						|
  for(y=height;y!=0;y--)
 | 
						|
  //Pour chaque ligne
 | 
						|
  {
 | 
						|
    for(x=width;x!=0;x--)
 | 
						|
    //Pour chaque pixel
 | 
						|
    {
 | 
						|
      if (*Src!=Couleur_de_transparence)
 | 
						|
      {
 | 
						|
        *Dest=Couleur;
 | 
						|
        *(Dest+Largeur_ecran)=Couleur;
 | 
						|
      }
 | 
						|
 | 
						|
      // On passe au pixel suivant
 | 
						|
      Src++;
 | 
						|
      Dest++;
 | 
						|
    }
 | 
						|
 | 
						|
    // On passe à la ligne suivante
 | 
						|
    Src+=Largeur_brosse-width;
 | 
						|
    Dest+=2*Largeur_ecran-width;
 | 
						|
  }
 | 
						|
  UpdateRect(Pos_X,Pos_Y,width,height);
 | 
						|
}
 | 
						|
 | 
						|
void Clear_brush_Tall(word Pos_X,word Pos_Y,__attribute__((unused)) word x_offset,__attribute__((unused)) word y_offset,word width,word height,__attribute__((unused))byte Couleur_de_transparence,word image_width)
 | 
						|
{
 | 
						|
  byte* Dest=Ecran+Pos_X+Pos_Y*2*Largeur_ecran; //On va se mettre en 0,0 dans l'écran (Dest)
 | 
						|
  byte* Src = ( Pos_Y + Principal_Decalage_Y ) * image_width + Pos_X + Principal_Decalage_X + Principal_Ecran; //Coords de départ ds la source (Src)
 | 
						|
  int y;
 | 
						|
 | 
						|
  for(y=height;y!=0;y--)
 | 
						|
  // Pour chaque ligne
 | 
						|
  {
 | 
						|
    // On fait une copie de la ligne
 | 
						|
    memcpy(Dest,Src,width);
 | 
						|
    Dest+=Largeur_ecran;
 | 
						|
    memcpy(Dest,Src,width);
 | 
						|
 | 
						|
    // On passe à la ligne suivante
 | 
						|
    Src+=image_width;
 | 
						|
    Dest+=Largeur_ecran;
 | 
						|
  }
 | 
						|
  UpdateRect(Pos_X,Pos_Y,width,height);
 | 
						|
}
 | 
						|
 | 
						|
// Affiche une brosse (arbitraire) à l'écran
 | 
						|
void Affiche_brosse_Tall(byte * brush, word Pos_X,word Pos_Y,word x_offset,word y_offset,word width,word height,byte Couleur_de_transparence,word Largeur_brosse)
 | 
						|
{
 | 
						|
  // Dest = Position à l'écran
 | 
						|
  byte* Dest = Ecran + Pos_Y * 2 * Largeur_ecran + Pos_X;
 | 
						|
  // Src = Position dans la brosse
 | 
						|
  byte* Src = brush + y_offset * Largeur_brosse + x_offset;
 | 
						|
  
 | 
						|
  word x,y;
 | 
						|
  
 | 
						|
  // Pour chaque ligne
 | 
						|
  for(y = height;y > 0; y--)
 | 
						|
  {
 | 
						|
    // Pour chaque pixel
 | 
						|
    for(x = width;x > 0; x--)
 | 
						|
    {
 | 
						|
      // On vérifie que ce n'est pas la transparence
 | 
						|
      if(*Src != Couleur_de_transparence)
 | 
						|
      {
 | 
						|
        *Dest = *Src;
 | 
						|
        *(Dest+Largeur_ecran) = *Src;
 | 
						|
      }
 | 
						|
 | 
						|
      // Pixel suivant
 | 
						|
      Src++; Dest++;
 | 
						|
    }
 | 
						|
 | 
						|
    // On passe à la ligne suivante
 | 
						|
    Dest = Dest + Largeur_ecran * 2 - width;
 | 
						|
    Src = Src + Largeur_brosse - width;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void Remap_screen_Tall(word Pos_X,word Pos_Y,word width,word height,byte * Table_de_conversion)
 | 
						|
{
 | 
						|
  // Dest = coords a l'écran
 | 
						|
  byte* Dest = Ecran + Pos_Y * 2 * Largeur_ecran + Pos_X;
 | 
						|
  int x,y;
 | 
						|
 | 
						|
  // Pour chaque ligne
 | 
						|
  for(y=height*2;y>0;y--)
 | 
						|
  {
 | 
						|
    // Pour chaque pixel
 | 
						|
    for(x=width;x>0;x--)
 | 
						|
    {
 | 
						|
      *Dest = Table_de_conversion[*Dest];
 | 
						|
      Dest ++;
 | 
						|
    }
 | 
						|
 | 
						|
    Dest = Dest + Largeur_ecran - width;
 | 
						|
  }
 | 
						|
 | 
						|
  UpdateRect(Pos_X,Pos_Y,width,height);
 | 
						|
}
 | 
						|
 | 
						|
void Afficher_une_ligne_ecran_Tall(word Pos_X,word Pos_Y,word width,byte * line)
 | 
						|
/* On affiche toute une ligne de pixels. Utilisé pour les textes. */
 | 
						|
{
 | 
						|
  memcpy(Ecran+Pos_X+Pos_Y*2*Largeur_ecran,line,width);
 | 
						|
  memcpy(Ecran+Pos_X+(Pos_Y*2+1)*Largeur_ecran,line,width);
 | 
						|
}
 | 
						|
 | 
						|
void Lire_une_ligne_ecran_Tall(word Pos_X,word Pos_Y,word width,byte * line)
 | 
						|
{
 | 
						|
  memcpy(line,Largeur_ecran * 2 * Pos_Y + Pos_X + Ecran,width);
 | 
						|
}
 | 
						|
 | 
						|
void Afficher_partie_de_l_ecran_zoomee_Tall(
 | 
						|
        word width, // width non zoomée
 | 
						|
        word height, // height zoomée
 | 
						|
        word image_width,byte * Buffer)
 | 
						|
{
 | 
						|
  byte* Src = Principal_Ecran + Loupe_Decalage_Y * image_width 
 | 
						|
                      + Loupe_Decalage_X;
 | 
						|
  int y = 0; // Ligne en cours de traitement
 | 
						|
 | 
						|
  // Pour chaque ligne à zoomer
 | 
						|
  while(1)
 | 
						|
  {
 | 
						|
    int x;
 | 
						|
    
 | 
						|
    // On éclate la ligne
 | 
						|
    Zoomer_une_ligne(Src,Buffer,Loupe_Facteur,width);
 | 
						|
    // On l'affiche Facteur fois, sur des lignes consécutives
 | 
						|
    x = Loupe_Facteur*2;
 | 
						|
    // Pour chaque ligne
 | 
						|
    do{
 | 
						|
      // On affiche la ligne zoomée
 | 
						|
      Afficher_une_ligne_ecran_Simple(
 | 
						|
        Principal_X_Zoom, y, width*Loupe_Facteur,
 | 
						|
        Buffer
 | 
						|
      );
 | 
						|
      // On passe à la suivante
 | 
						|
      y++;
 | 
						|
      if(y==height*2)
 | 
						|
      {
 | 
						|
        UpdateRect(Principal_X_Zoom,0,
 | 
						|
          width*Loupe_Facteur,height);
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      x--;
 | 
						|
    }while (x > 0);
 | 
						|
    Src += image_width;
 | 
						|
  }
 | 
						|
// ATTENTION on n'arrive jamais ici !
 | 
						|
}
 | 
						|
 | 
						|
// Affiche une partie de la brosse couleur zoomée
 | 
						|
void Display_brush_Color_zoom_Tall(word Pos_X,word Pos_Y,
 | 
						|
        word x_offset,word y_offset,
 | 
						|
        word width, // width non zoomée
 | 
						|
        word Pos_Y_Fin,byte Couleur_de_transparence,
 | 
						|
        word Largeur_brosse, // width réelle de la brosse
 | 
						|
        byte * Buffer)
 | 
						|
{
 | 
						|
  byte* Src = Brosse+y_offset*Largeur_brosse + x_offset;
 | 
						|
  word y = Pos_Y;
 | 
						|
  byte bx;
 | 
						|
 | 
						|
  // Pour chaque ligne
 | 
						|
  while(1)
 | 
						|
  {
 | 
						|
    Zoomer_une_ligne(Src,Buffer,Loupe_Facteur,width);
 | 
						|
    // On affiche facteur fois la ligne zoomée
 | 
						|
    for(bx=Loupe_Facteur;bx>0;bx--)
 | 
						|
    {
 | 
						|
      Afficher_une_ligne_transparente_a_l_ecran_Simple(Pos_X,y*2,width*Loupe_Facteur,Buffer,Couleur_de_transparence);
 | 
						|
      memcpy(Ecran + (y*2 +1) * Largeur_ecran + Pos_X, Ecran + y*2* Largeur_ecran + Pos_X, width*Loupe_Facteur);
 | 
						|
      y++;
 | 
						|
      if(y==Pos_Y_Fin)
 | 
						|
      {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
    }
 | 
						|
    Src += Largeur_brosse;
 | 
						|
  }
 | 
						|
  // ATTENTION zone jamais atteinte
 | 
						|
}
 | 
						|
 | 
						|
void Display_brush_Mono_zoom_Tall(word Pos_X, word Pos_Y,
 | 
						|
        word x_offset, word y_offset, 
 | 
						|
        word width, // width non zoomée 
 | 
						|
        word Pos_Y_Fin,
 | 
						|
        byte Couleur_de_transparence, byte Couleur, 
 | 
						|
        word Largeur_brosse, // width réelle de la brosse
 | 
						|
        byte * Buffer
 | 
						|
)
 | 
						|
 | 
						|
{
 | 
						|
  byte* Src = Brosse + y_offset * Largeur_brosse + x_offset;
 | 
						|
  int y=Pos_Y*2;
 | 
						|
 | 
						|
  //Pour chaque ligne à zoomer :
 | 
						|
  while(1)
 | 
						|
  {
 | 
						|
    int BX;
 | 
						|
    // Src = Ligne originale
 | 
						|
    // On éclate la ligne
 | 
						|
    Zoomer_une_ligne(Src,Buffer,Loupe_Facteur,width);
 | 
						|
 | 
						|
    // On affiche la ligne Facteur fois à l'écran (sur des
 | 
						|
    // lignes consécutives)
 | 
						|
    BX = Loupe_Facteur*2;
 | 
						|
 | 
						|
    // Pour chaque ligne écran
 | 
						|
    do
 | 
						|
    {
 | 
						|
      // On affiche la ligne zoomée
 | 
						|
      Afficher_une_ligne_transparente_mono_a_l_ecran_Simple(
 | 
						|
        Pos_X, y, width * Loupe_Facteur, 
 | 
						|
        Buffer, Couleur_de_transparence, Couleur
 | 
						|
      );
 | 
						|
      // On passe à la ligne suivante
 | 
						|
      y++;
 | 
						|
      // On vérifie qu'on est pas à la ligne finale
 | 
						|
      if(y == Pos_Y_Fin*2)
 | 
						|
      {
 | 
						|
        UpdateRect( Pos_X, Pos_Y,
 | 
						|
          width * Loupe_Facteur, Pos_Y_Fin - Pos_Y );
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      BX --;
 | 
						|
    }
 | 
						|
    while (BX > 0);
 | 
						|
    
 | 
						|
    // Passage à la ligne suivante dans la brosse aussi
 | 
						|
    Src+=Largeur_brosse;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void Clear_brush_zoom_Tall(word Pos_X,word Pos_Y,word x_offset,word y_offset,word width,word Pos_Y_Fin,__attribute__((unused)) byte Couleur_de_transparence,word image_width,byte * Buffer)
 | 
						|
{
 | 
						|
  // En fait on va recopier l'image non zoomée dans la partie zoomée !
 | 
						|
  byte* Src = Principal_Ecran + y_offset * image_width + x_offset;
 | 
						|
  int y = Pos_Y;
 | 
						|
  int bx;
 | 
						|
 | 
						|
  // Pour chaque ligne à zoomer
 | 
						|
  while(1){
 | 
						|
    Zoomer_une_ligne(Src,Buffer,Loupe_Facteur,width);
 | 
						|
 | 
						|
    bx=Loupe_Facteur;
 | 
						|
 | 
						|
    // Pour chaque ligne
 | 
						|
    do{
 | 
						|
      Afficher_une_ligne_ecran_Tall(Pos_X,y,
 | 
						|
        width * Loupe_Facteur,Buffer);
 | 
						|
 | 
						|
      // Ligne suivante
 | 
						|
      y++;
 | 
						|
      if(y==Pos_Y_Fin)
 | 
						|
      {
 | 
						|
        UpdateRect(Pos_X,Pos_Y,
 | 
						|
          width*Loupe_Facteur,Pos_Y_Fin-Pos_Y);
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      bx--;
 | 
						|
    }while(bx!=0);
 | 
						|
 | 
						|
    Src+= image_width;
 | 
						|
  }
 | 
						|
}
 |