62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file txaFile.h
|
||
|
* @author drose
|
||
|
* @date 2000-11-30
|
||
|
*/
|
||
|
|
||
|
#ifndef TXAFILE_H
|
||
|
#define TXAFILE_H
|
||
|
|
||
|
#include "pandatoolbase.h"
|
||
|
|
||
|
#include "txaLine.h"
|
||
|
|
||
|
#include "filename.h"
|
||
|
#include "vector_string.h"
|
||
|
|
||
|
#include "pvector.h"
|
||
|
|
||
|
/**
|
||
|
* This represents the .txa file (usually textures.txa) that contains the user
|
||
|
* instructions for resizing, grouping, etc. the various textures.
|
||
|
*/
|
||
|
class TxaFile {
|
||
|
public:
|
||
|
TxaFile();
|
||
|
|
||
|
bool read(std::istream &in, const std::string &filename);
|
||
|
|
||
|
bool match_egg(EggFile *egg_file) const;
|
||
|
bool match_texture(TextureImage *texture) const;
|
||
|
|
||
|
void write(std::ostream &out) const;
|
||
|
|
||
|
private:
|
||
|
static int get_line_or_semicolon(std::istream &in, std::string &line);
|
||
|
|
||
|
bool parse_group_line(const vector_string &words);
|
||
|
bool parse_palette_line(const vector_string &words);
|
||
|
bool parse_margin_line(const vector_string &words);
|
||
|
bool parse_background_line(const vector_string &words);
|
||
|
bool parse_coverage_line(const vector_string &words);
|
||
|
bool parse_powertwo_line(const vector_string &words);
|
||
|
bool parse_imagetype_line(const vector_string &words);
|
||
|
bool parse_shadowtype_line(const vector_string &words);
|
||
|
bool parse_round_line(const vector_string &words);
|
||
|
bool parse_remap_line(const vector_string &words);
|
||
|
bool parse_cutout_line(const vector_string &words);
|
||
|
bool parse_textureswap_line(const vector_string &words);
|
||
|
|
||
|
typedef pvector<TxaLine> Lines;
|
||
|
Lines _lines;
|
||
|
};
|
||
|
|
||
|
#endif
|