mirror of
https://github.com/UberGames/RPG-X2.git
synced 2024-11-14 17:01:32 +00:00
65 lines
No EOL
1.4 KiB
C
65 lines
No EOL
1.4 KiB
C
// Copyright (C) 2000 Raven Software
|
|
//
|
|
// g_roff.h -- local definitions for the Raven 'ROFF' format
|
|
// Ported from EF SP into EF Holomatch by Timothy 'TiM' Oliver
|
|
|
|
#ifndef __G_ROFF_H__
|
|
#define __G_ROFF_H__
|
|
|
|
|
|
#include "q_shared.h"
|
|
|
|
|
|
// ROFF Defines
|
|
//-------------------
|
|
#define ROFF_VERSION 1 // ver # for the (R)otation (O)bject (F)ile (F)ormat
|
|
#define MAX_ROFFS 16 // hard coded number of max roffs per level, sigh..
|
|
#define ROFF_SAMPLE_RATE 10 // 10hz
|
|
|
|
|
|
// ROFF Header file definition
|
|
//-------------------------------
|
|
typedef struct roff_hdr_s
|
|
{
|
|
char sHeader[4]; // should be "ROFF" (Rotation, Origin File Format)
|
|
long lVersion;
|
|
float fCount; // There isn't any reason for this to be anything other than an int, sigh...
|
|
//
|
|
// Move - Rotate data follows....vec3_t delta_origin, vec3_t delta_rotation
|
|
//
|
|
} roff_hdr_t;
|
|
|
|
|
|
// ROFF move rotate data element
|
|
//--------------------------------
|
|
typedef struct move_rotate_s
|
|
{
|
|
vec3_t origin_delta;
|
|
vec3_t rotate_delta;
|
|
|
|
} move_rotate_t;
|
|
|
|
|
|
// a precached ROFF list
|
|
//-------------------------
|
|
typedef struct roff_list_s
|
|
{
|
|
char *fileName; // roff filename
|
|
int frames; // number of roff entries
|
|
move_rotate_t *data; // delta move and rotate vector list
|
|
|
|
} roff_list_t;
|
|
|
|
|
|
extern roff_list_t roffs[];
|
|
extern int num_roffs;
|
|
|
|
|
|
// Function prototypes
|
|
//-------------------------
|
|
int G_LoadRoff( const char *fileName );
|
|
void G_Roff( gentity_t *ent );
|
|
void G_SaveCachedRoffs();
|
|
void G_LoadCachedRoffs();
|
|
|
|
#endif |