summaryrefslogtreecommitdiff
path: root/3dc/win95/fragchnk.hpp
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-07-01 00:55:22 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:09:04 +0200
commit2186d5f3f95cd74a070a490d899291648d58667a (patch)
tree55241a1afa3e1a22e0b6593a8dead0b703800f44 /3dc/win95/fragchnk.hpp
parent218ca90543758a20ac326e444ca0643174ca7384 (diff)
Initial revision
Diffstat (limited to '3dc/win95/fragchnk.hpp')
-rw-r--r--3dc/win95/fragchnk.hpp82
1 files changed, 0 insertions, 82 deletions
diff --git a/3dc/win95/fragchnk.hpp b/3dc/win95/fragchnk.hpp
deleted file mode 100644
index 4fc806e..0000000
--- a/3dc/win95/fragchnk.hpp
+++ /dev/null
@@ -1,82 +0,0 @@
-#ifndef _fragchnk_hpp_
-#define _fragchnk_hpp_
-
-#include "chunk.hpp"
-#include "chnktype.hpp"
-
-
-class Fragment_Type_Data_Chunk : public Chunk
-{
-public :
-
- Fragment_Type_Data_Chunk(Chunk_With_Children* parent,const char* name);
- Fragment_Type_Data_Chunk (Chunk_With_Children * const parent,const char *, size_t const);
- ~Fragment_Type_Data_Chunk();
-
- size_t size_chunk ();
- void fill_data_block (char * data_start);
-
-
- char* frag_type_name;
- int pad1,pad2,pad3;
-
-};
-
-class Fragment_Type_Shape_Chunk : public Chunk
-{
-public:
-
- Fragment_Type_Shape_Chunk(Chunk_With_Children* parent,const char* _name,int number,ChunkVectorInt _location);
- Fragment_Type_Shape_Chunk (Chunk_With_Children * const parent,const char *, size_t const);
- ~Fragment_Type_Shape_Chunk();
-
- size_t size_chunk ();
- void fill_data_block (char * data_start);
-
-
- int num_fragments;
- ChunkVectorInt location;
- char* name;
-
- int pad1,pad2,pad3;
-
-};
-class Fragment_Type_Sound_Chunk : public Chunk
-{
-public:
-
- Fragment_Type_Sound_Chunk(Chunk_With_Children* parent);
- Fragment_Type_Sound_Chunk (Chunk_With_Children * const parent,const char *, size_t const);
- ~Fragment_Type_Sound_Chunk();
-
- size_t size_chunk ();
- void fill_data_block (char * data_start);
-
- char* wav_name;
- unsigned long inner_range;
- unsigned long outer_range;
- int max_volume;
- int pitch;
- int pad;
-
-};
-
-class Fragment_Type_Chunk : public Chunk_With_Children
-{
-public :
- Fragment_Type_Chunk(Chunk_With_Children * parent,const char* name)
- : Chunk_With_Children (parent, "FRAGTYPE")
- {new Fragment_Type_Data_Chunk(this,name);}
-
- Fragment_Type_Chunk (Chunk_With_Children * const parent,const char *, size_t const);
-
- const char* get_name();
-
-};
-
-
-
-
-
-
-#endif \ No newline at end of file