mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
Move evaluation of attributes into the input routine.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5592 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
44c70d01cb
commit
1a7b115b3c
@ -39,6 +39,7 @@
|
|||||||
#include "fileid.h"
|
#include "fileid.h"
|
||||||
|
|
||||||
/* sp65 */
|
/* sp65 */
|
||||||
|
#include "attr.h"
|
||||||
#include "error.h"
|
#include "error.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "pcx.h"
|
#include "pcx.h"
|
||||||
@ -51,15 +52,19 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct InputFormatDesc InputFormatDesc;
|
/* Possible input formats */
|
||||||
struct InputFormatDesc {
|
enum InputFormat {
|
||||||
|
ifPCX, /* PCX */
|
||||||
/* Read routine */
|
ifCount /* Number of actual input formats w/o ifAuto*/
|
||||||
Bitmap* (*Read) (const char* Name);
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Table with input formats */
|
typedef struct InputFormatDesc InputFormatDesc;
|
||||||
|
struct InputFormatDesc {
|
||||||
|
/* Read routine */
|
||||||
|
Bitmap* (*Read) (const Collection*);
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Table with input formats indexed by InputFormat */
|
||||||
static InputFormatDesc InputFormatTable[ifCount] = {
|
static InputFormatDesc InputFormatTable[ifCount] = {
|
||||||
{ ReadPCXFile },
|
{ ReadPCXFile },
|
||||||
};
|
};
|
||||||
@ -80,46 +85,39 @@ static const FileId FormatTable[] = {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
int FindInputFormat (const char* Name)
|
Bitmap* ReadInputFile (const Collection* A)
|
||||||
/* Find an input format by name. The function returns a value less than zero
|
/* Read a bitmap from a file and return it. Format, file name etc. must be
|
||||||
* if Name is not a known input format.
|
* given as attributes in A. If no format is given, the function tries to
|
||||||
|
* autodetect it by using the extension of the file name.
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
/* Search for the entry in the table. */
|
const FileId* F;
|
||||||
const FileId* F = bsearch (Name,
|
|
||||||
|
/* Get the file format from the command line */
|
||||||
|
const char* Format = GetAttrVal (A, "format");
|
||||||
|
if (Format != 0) {
|
||||||
|
/* Format is given, search for it in the table. */
|
||||||
|
F = bsearch (Format,
|
||||||
FormatTable,
|
FormatTable,
|
||||||
sizeof (FormatTable) / sizeof (FormatTable[0]),
|
sizeof (FormatTable) / sizeof (FormatTable[0]),
|
||||||
sizeof (FormatTable[0]),
|
sizeof (FormatTable[0]),
|
||||||
CompareFileId);
|
CompareFileId);
|
||||||
|
if (F == 0) {
|
||||||
/* Return the id or an error code */
|
Error ("Unknown input format `%s'", Format);
|
||||||
return (F == 0)? -1 : F->Id;
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
/* No format given, use file name extension */
|
||||||
|
const char* Name = NeedAttrVal (A, "name", "write");
|
||||||
Bitmap* ReadInputFile (const char* Name, InputFormat Format)
|
F = GetFileId (Name, FormatTable,
|
||||||
/* Read a bitmap from a file and return it. If Format is ifAuto, the routine
|
|
||||||
* tries to determine the format from the file name extension.
|
|
||||||
*/
|
|
||||||
{
|
|
||||||
/* If the format is Auto, try to determine it from the file name */
|
|
||||||
if (Format == ifAuto) {
|
|
||||||
/* Search for the entry in the table */
|
|
||||||
const FileId* F = GetFileId (Name, FormatTable,
|
|
||||||
sizeof (FormatTable) / sizeof (FormatTable[0]));
|
sizeof (FormatTable) / sizeof (FormatTable[0]));
|
||||||
/* Found? */
|
/* Found? */
|
||||||
if (F == 0) {
|
if (F == 0) {
|
||||||
Error ("Cannot determine file format of input file `%s'", Name);
|
Error ("Cannot determine file format of input file `%s'", Name);
|
||||||
}
|
}
|
||||||
Format = F->Id;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check the format just for safety */
|
|
||||||
CHECK (Format >= 0 && Format < ifCount);
|
|
||||||
|
|
||||||
/* Call the format specific read */
|
/* Call the format specific read */
|
||||||
return InputFormatTable[Format].Read (Name);
|
return InputFormatTable[F->Id].Read (A);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,42 +38,24 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* common */
|
||||||
|
#include "coll.h"
|
||||||
|
|
||||||
/* sp65 */
|
/* sp65 */
|
||||||
#include "bitmap.h"
|
#include "bitmap.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
|
||||||
/* Data */
|
|
||||||
/*****************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
enum InputFormat {
|
|
||||||
ifAuto = -1, /* Auto detect */
|
|
||||||
ifPCX, /* PCX */
|
|
||||||
|
|
||||||
ifCount /* Number of actual input formats w/o ifAuto*/
|
|
||||||
};
|
|
||||||
typedef enum InputFormat InputFormat;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Code */
|
/* Code */
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int FindInputFormat (const char* Name);
|
Bitmap* ReadInputFile (const Collection* A);
|
||||||
/* Find an input format by name. The function returns a value less than zero
|
/* Read a bitmap from a file and return it. Format, file name etc. must be
|
||||||
* if Name is not a known input format.
|
* given as attributes in A. If no format is given, the function tries to
|
||||||
*/
|
* autodetect it by using the extension of the file name.
|
||||||
|
|
||||||
Bitmap* ReadInputFile (const char* Name, InputFormat Format);
|
|
||||||
/* Read a bitmap from a file and return it. If Format is ifAuto, the routine
|
|
||||||
* tries to determine the format from the file name extension.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -207,19 +207,6 @@ static void OptRead (const char* Opt, const char* Arg)
|
|||||||
/* Parse the argument */
|
/* Parse the argument */
|
||||||
Collection* A = ParseAttrList (Arg, NameList, 2);
|
Collection* A = ParseAttrList (Arg, NameList, 2);
|
||||||
|
|
||||||
/* Must have a file name given */
|
|
||||||
const char* FileName = NeedAttrVal (A, "name", Opt);
|
|
||||||
|
|
||||||
/* Determine the format of the input file */
|
|
||||||
int IF = ifAuto;
|
|
||||||
const char* Format = GetAttrVal (A, "format");
|
|
||||||
if (Format != 0) {
|
|
||||||
IF = FindInputFormat (Format);
|
|
||||||
if (IF < 0) {
|
|
||||||
Error ("Unknown input format `%s'", Format);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Clear the working copy */
|
/* Clear the working copy */
|
||||||
SetWorkBitmap (0);
|
SetWorkBitmap (0);
|
||||||
|
|
||||||
@ -227,7 +214,7 @@ static void OptRead (const char* Opt, const char* Arg)
|
|||||||
FreeBitmap (B);
|
FreeBitmap (B);
|
||||||
|
|
||||||
/* Read the file and use it as original and as working copy */
|
/* Read the file and use it as original and as working copy */
|
||||||
B = C = ReadInputFile (FileName, IF);
|
B = C = ReadInputFile (A);
|
||||||
|
|
||||||
/* Delete the attribute list */
|
/* Delete the attribute list */
|
||||||
FreeCollection (A);
|
FreeCollection (A);
|
||||||
|
@ -243,7 +243,7 @@ static void ReadPlane (FILE* F, PCXHeader* P, unsigned char* L)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
Bitmap* ReadPCXFile (const char* Name)
|
Bitmap* ReadPCXFile (const Collection* A)
|
||||||
/* Read a bitmap from a PCX file */
|
/* Read a bitmap from a PCX file */
|
||||||
{
|
{
|
||||||
PCXHeader* P;
|
PCXHeader* P;
|
||||||
@ -254,6 +254,8 @@ Bitmap* ReadPCXFile (const char* Name)
|
|||||||
unsigned X, Y;
|
unsigned X, Y;
|
||||||
|
|
||||||
|
|
||||||
|
/* Get the file name */
|
||||||
|
const char* Name = NeedAttrVal (A, "name", "read pcx file");
|
||||||
|
|
||||||
/* Open the file */
|
/* Open the file */
|
||||||
FILE* F = fopen (Name, "rb");
|
FILE* F = fopen (Name, "rb");
|
||||||
|
@ -38,6 +38,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* common */
|
||||||
|
#include "coll.h"
|
||||||
|
|
||||||
/* sp65 */
|
/* sp65 */
|
||||||
#include "bitmap.h"
|
#include "bitmap.h"
|
||||||
|
|
||||||
@ -49,7 +52,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
Bitmap* ReadPCXFile (const char* Name);
|
Bitmap* ReadPCXFile (const Collection* A);
|
||||||
/* Read a bitmap from a PCX file */
|
/* Read a bitmap from a PCX file */
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user