Blender V2.61 - r43446
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "MEM_guardedalloc.h"
#include "BLI_fileops.h"
#include "BLI_string.h"
#include "BLI_utildefines.h"
#include "BKE_customdata_file.h"
#include "BKE_global.h"
Go to the source code of this file.
Definition in file customdata_file.c.
#define CDF_DATA_FLOAT 0 |
Definition at line 45 of file customdata_file.c.
Referenced by cdf_layer_add(), and cdf_read_header().
#define CDF_ENDIAN_BIG 1 |
Definition at line 43 of file customdata_file.c.
Referenced by cdf_endian().
#define CDF_ENDIAN_LITTLE 0 |
Definition at line 42 of file customdata_file.c.
Referenced by cdf_endian().
#define CDF_SUBVERSION 0 |
Definition at line 81 of file customdata_file.c.
Referenced by cdf_write_open().
#define CDF_TILE_SIZE 64 |
Definition at line 82 of file customdata_file.c.
Referenced by cdf_write_open().
#define CDF_VERSION 0 |
Definition at line 80 of file customdata_file.c.
Referenced by cdf_read_header(), and cdf_write_open().
typedef struct CDataFileHeader CDataFileHeader |
typedef struct CDataFileImageHeader CDataFileImageHeader |
typedef struct CDataFileMeshHeader CDataFileMeshHeader |
CDataFile* cdf_create | ( | int | type | ) |
Definition at line 120 of file customdata_file.c.
References MEM_callocN(), and CDataFile::type.
Referenced by CustomData_external_read(), and CustomData_external_write().
static int cdf_endian | ( | void | ) | [static] |
Definition at line 104 of file customdata_file.c.
References CDF_ENDIAN_BIG, CDF_ENDIAN_LITTLE, ENDIAN_ORDER, and L_ENDIAN.
Referenced by cdf_read_header(), and cdf_write_open().
void cdf_free | ( | CDataFile * | cdf | ) |
Definition at line 129 of file customdata_file.c.
References cdf_read_close(), cdf_write_close(), CDataFile::layer, and MEM_freeN().
Referenced by CustomData_external_read(), and CustomData_external_write().
CDataFileLayer* cdf_layer_add | ( | CDataFile * | cdf, |
int | type, | ||
const char * | name, | ||
size_t | datasize | ||
) |
Definition at line 430 of file customdata_file.c.
References BLI_strncpy(), CDF_DATA_FLOAT, CDF_LAYER_NAME_MAX, CDataFileLayer::datasize, CDataFileLayer::datatype, CDataFile::layer, MEM_callocN(), CDataFileLayer::name, CDataFileLayer::structbytes, CDataFile::totlayer, and CDataFileLayer::type.
Referenced by CustomData_external_write().
CDataFileLayer* cdf_layer_find | ( | CDataFile * | cdf, |
int | type, | ||
const char * | name | ||
) |
Definition at line 415 of file customdata_file.c.
References CDataFile::layer, CDataFileLayer::name, NULL, CDataFile::totlayer, and CDataFileLayer::type.
Referenced by CustomData_external_read(), and CustomData_external_write().
void cdf_read_close | ( | CDataFile * | cdf | ) |
Definition at line 336 of file customdata_file.c.
References NULL, and CDataFile::readf.
Referenced by cdf_free(), cdf_read_open(), and CustomData_external_read().
int cdf_read_data | ( | CDataFile * | cdf, |
unsigned int | size, | ||
void * | data | ||
) |
Definition at line 316 of file customdata_file.c.
References data, CDataFile::readf, SWITCH_INT, and CDataFile::switchendian.
Referenced by layerRead_mdisps().
static int cdf_read_header | ( | CDataFile * | cdf | ) | [static] |
Definition at line 142 of file customdata_file.c.
References CDataFile::btype, CDF_DATA_FLOAT, cdf_endian(), CDF_TYPE_IMAGE, CDF_TYPE_MESH, CDF_VERSION, CDataFile::dataoffset, CDataFileLayer::datasize, CDataFileLayer::datatype, ELEM, CDataFileHeader::endian, CDataFile::header, CDataFileImageHeader::height, CDataFileHeader::ID, CDataFile::image, CDataFile::layer, MEM_callocN(), CDataFile::mesh, CDataFile::readf, CDataFileLayer::structbytes, CDataFileHeader::structbytes, CDataFileImageHeader::structbytes, CDataFileMeshHeader::structbytes, SWITCH_INT, SWITCH_INT64, CDataFile::switchendian, CDataFileImageHeader::tile_size, CDataFile::totlayer, CDataFileHeader::totlayer, CDataFileHeader::type, CDataFileLayer::type, CDataFileHeader::version, and CDataFileImageHeader::width.
Referenced by cdf_read_open().
int cdf_read_layer | ( | CDataFile * | cdf, |
CDataFileLayer * | blay | ||
) |
Definition at line 299 of file customdata_file.c.
References CDataFile::dataoffset, CDataFileLayer::datasize, CDataFile::layer, CDataFile::readf, and CDataFile::totlayer.
Referenced by CustomData_external_read().
int cdf_read_open | ( | CDataFile * | cdf, |
const char * | filename | ||
) |
Definition at line 276 of file customdata_file.c.
References cdf_read_close(), cdf_read_header(), CDataFile::header, CDataFile::readf, CDataFileHeader::type, and CDataFile::type.
Referenced by CustomData_external_read().
void cdf_remove | ( | const char * | filename | ) |
Definition at line 408 of file customdata_file.c.
References BLI_delete().
Referenced by CustomData_external_remove().
void cdf_write_close | ( | CDataFile * | cdf | ) |
Definition at line 400 of file customdata_file.c.
References NULL, and CDataFile::writef.
Referenced by cdf_free(), and CustomData_external_write().
int cdf_write_data | ( | CDataFile * | cdf, |
unsigned int | size, | ||
void * | data | ||
) |
Definition at line 391 of file customdata_file.c.
References CDataFile::writef.
Referenced by layerWrite_mdisps().
static int cdf_write_header | ( | CDataFile * | cdf | ) | [static] |
Definition at line 241 of file customdata_file.c.
References CDataFile::btype, CDF_TYPE_IMAGE, CDF_TYPE_MESH, CDataFile::header, CDataFile::image, CDataFile::layer, CDataFile::mesh, CDataFileHeader::totlayer, CDataFileHeader::type, and CDataFile::writef.
Referenced by cdf_write_open().
int cdf_write_layer | ( | CDataFile * | UNUSEDcdf, |
CDataFileLayer * | UNUSEDblay | ||
) |
Definition at line 386 of file customdata_file.c.
int cdf_write_open | ( | CDataFile * | cdf, |
const char * | filename | ||
) |
Definition at line 344 of file customdata_file.c.
References CDataFile::btype, cdf_endian(), CDF_SUBVERSION, CDF_TILE_SIZE, CDF_TYPE_IMAGE, CDF_TYPE_MESH, CDF_VERSION, cdf_write_header(), CDataFileHeader::endian, CDataFile::header, CDataFileHeader::ID, CDataFile::image, CDataFile::mesh, CDataFileHeader::structbytes, CDataFileImageHeader::structbytes, CDataFileMeshHeader::structbytes, CDataFileHeader::subversion, CDataFileImageHeader::tile_size, CDataFile::totlayer, CDataFileHeader::totlayer, CDataFileHeader::type, CDataFile::type, CDataFileHeader::version, and CDataFile::writef.
Referenced by CustomData_external_write().