1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifndef __JUMPNODE_H__
#define __JUMPNODE_H__
#include <stdlib.h>
#include "globalincs/globals.h"
#include "graphics/2d.h"
struct vec3d;
class object;
class draw_list;
//Jump node flags
#define JN_USE_DISPLAY_COLOR (1<<0) //Use display_color instead of HUD color
#define JN_SHOW_POLYS (1<<1) //Display model normally, rather than as wireframe
#define JN_HIDE (1<<2) //Hides a jump node
#define JN_SPECIAL_MODEL (1<<3) //If non-default model
class CJumpNode
{
private:
char m_name[NAME_LENGTH];
float m_radius;
int m_modelnum;
int m_objnum; // objnum of this jump node
int m_flags;
color m_display_color; // Color node will be shown in (Default:0/255/0/255)
vec3d m_pos;
CJumpNode(const CJumpNode&);
CJumpNode& operator=(const CJumpNode&);
public:
//Constructors
CJumpNode();
CJumpNode(vec3d *position);
CJumpNode(CJumpNode&& other);
CJumpNode& operator=(CJumpNode&&);
//Destructor
~CJumpNode();
//Getting
char *GetName();
int GetModelNumber();
int GetSCPObjectNumber();
object *GetSCPObject();
color GetColor();
vec3d *GetPosition();
//Setting
void SetAlphaColor(int r, int g, int b, int alpha);
void SetModel(char *model_name, bool show_polys=false);
void SetName(const char *new_name);
void SetVisibility(bool enabled);
//Query
bool IsHidden();
bool IsColored();
bool IsSpecialModel();
//Rendering
void RenderDEPRECATED(vec3d *pos, vec3d *view_pos = NULL);
void Render(vec3d *pos, vec3d *view_pos = NULL);
void Render(draw_list *scene, vec3d *pos, vec3d *view_pos = NULL);
};
//-----Globals------
extern SCP_list<CJumpNode> Jump_nodes;
//-----Functions-----
CJumpNode *jumpnode_get_by_name(const char *name);
CJumpNode *jumpnode_get_which_in(object *objp);
void jumpnode_render_all();
void jumpnode_level_close();
#endif
|