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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*
* PyMOL Scene C++ implementation
*
* (c) 2014 Schrodinger, Inc.
*/
#ifndef _H_MOVIESCENE
#define _H_MOVIESCENE
#include "os_python.h"
#include "Base.h"
#include "PyMOLGlobals.h"
#include "Result.h"
#include "SceneView.h"
#include <vector>
#include <string>
enum {
cMovieSceneStackDefault = 0,
cMovieSceneStackUndo = 1,
cMovieSceneStack_SIZE
};
struct MovieSceneFuncArgs
{
std::string key;
std::string action;
std::string message;
bool store_view = true;
bool store_color = true;
bool store_active = true;
bool store_rep = true;
bool store_frame = true;
float animate = -1.0f;
std::string new_key;
bool hand = true;
std::string sele = "all";
std::size_t stack = cMovieSceneStackDefault;
};
/**
* Struct to hold scene stored atom properties
*/
class MovieSceneAtom {
public:
int color;
int visRep;
};
/**
* Struct to hold scene stored object properties
*/
class MovieSceneObject {
public:
int color;
int visRep;
};
/**
* Struct to hold all scene data
*/
class MovieScene {
public:
/// bitmask, features stored in this scene
int storemask;
/// global state or movie frame
int frame;
/// text to display (with message wizard)
std::string message;
/// camera view
SceneViewType view;
/// atom properties (color, rep, etc.)
std::map<int, MovieSceneAtom> atomdata;
/// objects properties (enabled, color, reps, etc.)
std::map<std::string, MovieSceneObject> objectdata;
};
/**
* Replacement for pymol._scene_dict and pymol._scene_order
*/
class CMovieScenes {
int scene_counter;
public:
std::map<std::string, MovieScene> dict;
std::vector<std::string> order;
CMovieScenes() {
scene_counter = 1;
}
std::string getUniqueKey();
};
pymol::Result<> MovieSceneFunc(PyMOLGlobals* G, const MovieSceneFuncArgs& args);
pymol::Result<> MovieSceneStore(PyMOLGlobals * G, const char * name,
const char * message,
bool store_view,
bool store_color,
bool store_active,
bool store_rep,
bool store_frame,
const char * sele,
std::size_t stack);
pymol::Result<> MovieSceneRename(PyMOLGlobals * G, const char * name, const char * new_name = nullptr);
pymol::Result<> MovieSceneRecall(PyMOLGlobals * G, const char * name, float animate = -1.0,
bool recall_view = true,
bool recall_color = true,
bool recall_active = true,
bool recall_rep = true,
bool recall_frame = true,
const char * sele = "all",
size_t stack = cMovieSceneStackDefault);
pymol::Result<> MovieSceneRecallAllInstant(PyMOLGlobals * G, pymol::zstring_view name,
std::size_t stack = cMovieSceneStackDefault);
pymol::Result<> MovieSceneDelete(PyMOLGlobals * G, const char * name,
size_t stack = cMovieSceneStackDefault);
pymol::Result<> MovieSceneOrder(PyMOLGlobals * G, const char * names,
bool sort = false,
const char * location = NULL /* "current" */);
pymol::Result<> MovieSceneOrder(PyMOLGlobals* G, std::vector<std::string> names,
bool sort = false, const char* location = nullptr);
const std::vector<std::string> & MovieSceneGetOrder(PyMOLGlobals * G);
void MovieScenesInit(PyMOLGlobals * G);
void MovieScenesFree(PyMOLGlobals * G);
PyObject * MovieScenesAsPyList(PyMOLGlobals * G);
void MovieScenesFromPyList(PyMOLGlobals * G, PyObject * o);
#endif
|