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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/*
A* -------------------------------------------------------------------
B* This file contains source code for the PyMOL computer program
C* Copyright (c) Schrodinger, LLC.
D* -------------------------------------------------------------------
E* It is unlawful to modify or remove this copyright notice.
F* -------------------------------------------------------------------
G* Please see the accompanying LICENSE file for further information.
H* -------------------------------------------------------------------
I* Additional authors of this source file include:
-*
-*
-*
Z* -------------------------------------------------------------------
*/
#ifndef _H_Base
#define _H_Base
#include "os_limits.h"
#include "os_types.h"
#include "RenderPass.h"
#ifndef PI
#define PI 3.14159265358979323846
#endif
typedef unsigned char uchar;
typedef unsigned int uint;
#define MAX_VDW 2.5F /* this has to go */
#ifndef R_SMALL4
#define R_SMALL4 0.0001F
#endif
#ifndef R_SMALL8
#define R_SMALL8 0.00000001F
#endif
#define cPuttyTransformNormalizedNonlinear 0
#define cPuttyTransformRelativeNonlinear 1
#define cPuttyTransformScaledNonlinear 2
#define cPuttyTransformAbsoluteNonlinear 3
#define cPuttyTransformNormalizedLinear 4
#define cPuttyTransformRelativeLinear 5
#define cPuttyTransformScaledLinear 6
#define cPuttyTransformAbsoluteLinear 7
#define cPuttyTransformImpliedRMS 8
typedef struct LabPosType {
int mode;
float pos[3];
float offset[3];
} LabPosType;
typedef struct RefPosType {
float coord[3];
int specified;
} RefPosType;
/* not a global, but CRay widely used and Ray.h definitely isn't a
* lightweight include... */
typedef struct _CRay CRay;
/* likewise */
#ifndef CGO_DEFINED
class CGO;
#define CGO_DEFINED
#endif
class PickColorManager;
struct RenderInfo {
int state = 0;
CRay* ray = nullptr;
CGO* alpha_cgo = nullptr;
PickColorManager* pick = nullptr;
RenderPass pass = RenderPass::Antialias;
int width_scale_flag = 0;
float front = 0.f;
float back = 0.f;
float stereo_front = 0.f;
float fog_start = 0.f;
float fog_end = 0.f;
float view_normal[3] = {};
float width_scale = 0.f;
float vertex_scale =
0.f; ///< how large is a screen pixel in model space at the origin
int sampling = 1; ///< are we supersampling?
int ortho = 0; ///< orthoscopic projection?
int line_lighting = 0; ///< line lighting
int dynamic_width = 0;
float dynamic_width_factor = 0.f;
float dynamic_width_min = 0.f;
float dynamic_width_max = 0.f;
int texture_font_size = 0;
int use_shaders = 0;
};
#define MAXLINELEN 1024
#define PYMOL_MAX_THREADS 125
#ifndef _PYMOL_NO_XRAY
#define _PYMOL_XRAY
#endif
// no MMLIBS in open-source
#ifndef NO_MMLIBS
#define NO_MMLIBS
#endif
#endif
|