246 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			246 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*  Grafx2 - The Ultimate 256-color bitmap paint program
 | 
						|
 | 
						|
    Copyright 2008 Yves Rizoud
 | 
						|
    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.
 | 
						|
*/
 | 
						|
 | 
						|
// Fonctions de lecture/ecriture fichier, gèrent les systèmes big-endian et
 | 
						|
// little-endian.
 | 
						|
 | 
						|
#include <SDL_endian.h>
 | 
						|
#include <string.h>
 | 
						|
#include <sys/stat.h>
 | 
						|
#include <errno.h>
 | 
						|
#if defined(__amigaos4__)
 | 
						|
    #include <proto/dos.h>
 | 
						|
    #include <dirent.h>
 | 
						|
#elif defined(__WATCOMC__)
 | 
						|
    #include <direct.h>
 | 
						|
#elif defined(__WIN32__)
 | 
						|
    #include <dirent.h>
 | 
						|
    #include <windows.h>
 | 
						|
#else
 | 
						|
    #include <dirent.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#include "struct.h"
 | 
						|
#include "io.h"
 | 
						|
 | 
						|
word endian_magic16(word x)
 | 
						|
{
 | 
						|
  #if SDL_BYTEORDER == SDL_LIL_ENDIAN
 | 
						|
    return x;
 | 
						|
  #else
 | 
						|
    return SDL_Swap16(x);
 | 
						|
  #endif
 | 
						|
}
 | 
						|
dword endian_magic32(dword x)
 | 
						|
{
 | 
						|
  #if SDL_BYTEORDER == SDL_LIL_ENDIAN
 | 
						|
    return x;
 | 
						|
  #else
 | 
						|
    return SDL_Swap32(x);
 | 
						|
  #endif
 | 
						|
}
 | 
						|
 | 
						|
// Lit un octet
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int read_byte(FILE *Fichier, byte *Dest)
 | 
						|
{
 | 
						|
  return fread(Dest, 1, 1, Fichier) == 1;
 | 
						|
}
 | 
						|
// Ecrit un octet
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int write_byte(FILE *Fichier, byte Byte)
 | 
						|
{
 | 
						|
  return fwrite(&Byte, 1, 1, Fichier) == 1;
 | 
						|
}
 | 
						|
// Lit des octets
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int read_bytes(FILE *Fichier, void *Dest, size_t Taille)
 | 
						|
{
 | 
						|
  return fread(Dest, 1, Taille, Fichier) == Taille;
 | 
						|
}
 | 
						|
// Ecrit des octets
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int write_bytes(FILE *Fichier, void *Src, size_t Taille)
 | 
						|
{
 | 
						|
  return fwrite(Src, 1, Taille, Fichier) == Taille;
 | 
						|
}
 | 
						|
 | 
						|
// Lit un word (little-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int read_word_le(FILE *Fichier, word *Dest)
 | 
						|
{
 | 
						|
  if (fread(Dest, 1, sizeof(word), Fichier) != sizeof(word))
 | 
						|
    return 0;
 | 
						|
  #if SDL_BYTEORDER != SDL_LIL_ENDIAN
 | 
						|
    *Dest = SDL_Swap16(*Dest);
 | 
						|
  #endif
 | 
						|
  return -1;
 | 
						|
}
 | 
						|
// Ecrit un word (little-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int write_word_le(FILE *Fichier, word Mot)
 | 
						|
{
 | 
						|
  #if SDL_BYTEORDER != SDL_LIL_ENDIAN
 | 
						|
    Mot = SDL_Swap16(Mot);
 | 
						|
  #endif
 | 
						|
  return fwrite(&Mot, 1, sizeof(word), Fichier) == sizeof(word);
 | 
						|
}
 | 
						|
// Lit un word (big-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int read_word_be(FILE *Fichier, word *Dest)
 | 
						|
{
 | 
						|
  if (fread(Dest, 1, sizeof(word), Fichier) != sizeof(word))
 | 
						|
    return 0;
 | 
						|
  #if SDL_BYTEORDER != SDL_BIG_ENDIAN
 | 
						|
    *Dest = SDL_Swap16(*Dest);
 | 
						|
  #endif
 | 
						|
  return -1;
 | 
						|
}
 | 
						|
// Ecrit un word (big-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int write_word_be(FILE *Fichier, word Mot)
 | 
						|
{
 | 
						|
  #if SDL_BYTEORDER != SDL_BIG_ENDIAN
 | 
						|
    Mot = SDL_Swap16(Mot);
 | 
						|
  #endif
 | 
						|
  return fwrite(&Mot, 1, sizeof(word), Fichier) == sizeof(word);
 | 
						|
}
 | 
						|
// Lit un dword (little-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int read_dword_le(FILE *Fichier, dword *Dest)
 | 
						|
{
 | 
						|
  if (fread(Dest, 1, sizeof(dword), Fichier) != sizeof(dword))
 | 
						|
    return 0;
 | 
						|
  #if SDL_BYTEORDER != SDL_LIL_ENDIAN
 | 
						|
    *Dest = SDL_Swap32(*Dest);
 | 
						|
  #endif
 | 
						|
  return -1;
 | 
						|
}
 | 
						|
// Ecrit un dword (little-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int write_dword_le(FILE *Fichier, dword Mot)
 | 
						|
{
 | 
						|
  #if SDL_BYTEORDER != SDL_LIL_ENDIAN
 | 
						|
    Mot = SDL_Swap32(Mot);
 | 
						|
  #endif
 | 
						|
  return fwrite(&Mot, 1, sizeof(dword), Fichier) == sizeof(dword);
 | 
						|
}
 | 
						|
 | 
						|
// Lit un dword (big-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int read_dword_be(FILE *Fichier, dword *Dest)
 | 
						|
{
 | 
						|
  if (fread(Dest, 1, sizeof(dword), Fichier) != sizeof(dword))
 | 
						|
    return 0;
 | 
						|
  #if SDL_BYTEORDER != SDL_BIG_ENDIAN
 | 
						|
    *Dest = SDL_Swap32(*Dest);
 | 
						|
  #endif
 | 
						|
  return -1;
 | 
						|
}
 | 
						|
// Ecrit un dword (big-endian)
 | 
						|
// Renvoie -1 si OK, 0 en cas d'erreur
 | 
						|
int write_dword_be(FILE *Fichier, dword Mot)
 | 
						|
{
 | 
						|
  #if SDL_BYTEORDER != SDL_BIG_ENDIAN
 | 
						|
    Mot = SDL_Swap32(Mot);
 | 
						|
  #endif
 | 
						|
  return fwrite(&Mot, 1, sizeof(dword), Fichier) == sizeof(dword);
 | 
						|
}
 | 
						|
 | 
						|
// Détermine la position du dernier '/' ou '\\' dans une chaine,
 | 
						|
// typiquement pour séparer le nom de fichier d'un chemin.
 | 
						|
// Attention, sous Windows, il faut s'attendre aux deux car 
 | 
						|
// par exemple un programme lancé sous GDB aura comme argv[0]:
 | 
						|
// d:\Data\C\GFX2\grafx2/grafx2.exe
 | 
						|
char * Position_dernier_slash(const char * Chaine)
 | 
						|
{
 | 
						|
  const char * Position = NULL;
 | 
						|
  for (; *Chaine != '\0'; Chaine++)
 | 
						|
    if (*Chaine == SEPARATEUR_CHEMIN[0]
 | 
						|
#ifdef __WIN32__    
 | 
						|
     || *Chaine == '/'
 | 
						|
#endif
 | 
						|
     )
 | 
						|
      Position = Chaine;
 | 
						|
  return (char *)Position;
 | 
						|
}
 | 
						|
// Récupère la partie "nom de fichier seul" d'un chemin
 | 
						|
void Extraire_nom_fichier(char *Destination, const char *Source)
 | 
						|
{
 | 
						|
  const char * Position = Position_dernier_slash(Source);
 | 
						|
 | 
						|
  if (Position)
 | 
						|
    strcpy(Destination,Position+1);
 | 
						|
  else
 | 
						|
    strcpy(Destination,Source);
 | 
						|
}
 | 
						|
// Récupère la partie "répertoire+/" d'un chemin.
 | 
						|
void Extraire_chemin(char *Destination, const char *Source)
 | 
						|
{
 | 
						|
  char * Position;
 | 
						|
 | 
						|
  strcpy(Destination,Source);
 | 
						|
  Position = Position_dernier_slash(Destination);
 | 
						|
  if (Position)
 | 
						|
    *(Position+1) = '\0';
 | 
						|
  else
 | 
						|
    strcat(Destination, SEPARATEUR_CHEMIN);
 | 
						|
}
 | 
						|
 | 
						|
int Fichier_existe(char * Fichier)
 | 
						|
//   Détermine si un fichier passé en paramètre existe ou non dans le
 | 
						|
// répertoire courant.
 | 
						|
{
 | 
						|
    struct stat buf;
 | 
						|
    int Resultat;
 | 
						|
 | 
						|
    Resultat=stat(Fichier,&buf);
 | 
						|
    if (Resultat!=0)
 | 
						|
        return(errno!=ENOENT);
 | 
						|
    else
 | 
						|
        return 1;
 | 
						|
 | 
						|
}
 | 
						|
int Repertoire_existe(char * Repertoire)
 | 
						|
//   Détermine si un répertoire passé en paramètre existe ou non dans le
 | 
						|
// répertoire courant.
 | 
						|
{
 | 
						|
  DIR* Enreg;    // Structure de lecture des éléments
 | 
						|
 | 
						|
  if (strcmp(Repertoire,"..")==0)
 | 
						|
    return 1;
 | 
						|
  else
 | 
						|
  {
 | 
						|
    //  On va chercher si le répertoire existe à l'aide d'un Opendir. S'il
 | 
						|
    //  renvoie NULL c'est que le répertoire n'est pas accessible...
 | 
						|
 | 
						|
    Enreg=opendir(Repertoire);
 | 
						|
    if (Enreg==NULL)
 | 
						|
        return 0;
 | 
						|
    else
 | 
						|
    {
 | 
						|
        closedir(Enreg);
 | 
						|
        return 1;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |