renderingSpin

renderingSpin — A module able to represent atoms by their position and spin.

Synopsis




#define     SPINMAXMODULUS_ID
#define     SPINVALUES_ID
#define     SPIN_MODULUS
#define     SPIN_PHI
#define     SPIN_THETA
enum        SpinGlobalResources;
enum        SpinElementResources;
enum        SpinDrawingPolicy;
enum        SpinModulusPolicy;

void        rspin_addLoadMethod             (RenderingFormatLoad *meth);
gboolean    rspin_load                      (VisuData *data,
                                             FileFormat *format,
                                             int nSet,
                                             GError **error);
gboolean    rspin_setGlobalResource_boolean (SpinGlobalResources property,
                                             gboolean value);
gboolean    rspin_getGlobalResource_boolean (SpinGlobalResources property);
gboolean    rspin_setGlobalResource_float   (SpinGlobalResources property,
                                             gfloat value);
gfloat      rspin_getGlobalResource_float   (SpinGlobalResources property);
gboolean    rspin_setGlobalResource_uint    (SpinGlobalResources property,
                                             guint value);
guint       rspin_getGlobalResource_uint    (SpinGlobalResources property);
gpointer    rspin_getGlobalResource         (SpinGlobalResources property,
                                             GType *type);
guint       rspin_getElementResource_uint   (VisuElement *ele,
                                             SpinElementResources property);
gboolean    rspin_setElementResource_uint   (VisuElement *ele,
                                             SpinElementResources property,
                                             guint value);
gfloat      rspin_getElementResource_float  (VisuElement *ele,
                                             SpinElementResources property);
gboolean    rspin_setElementResource_float  (VisuElement *ele,
                                             SpinElementResources property,
                                             gfloat value);
gboolean    rspin_setElementResource_boolean
                                            (VisuElement *ele,
                                             SpinElementResources property,
                                             gboolean value);
gboolean    rspin_getElementResource_boolean
                                            (VisuElement *ele,
                                             SpinElementResources property);
gpointer    rspin_getElementResource        (VisuElement *ele,
                                             SpinElementResources property,
                                             GType *type);
int         rspin_get_number_of_shapes      ();
const char* rspin_shape_number_to_translated_name
                                            (int n);
const char* rspin_hiding_number_to_name     (int n);
const char* rspin_hiding_number_to_translated_name
                                            (int n);
int         rspin_hiding_name_to_number     (const char *name);

RenderingMethod* initSpin                   ();

Description

This method draws arrows to represent atoms. Each arrow has a given orientation which is set acording to parameters. This is one way to represent the spin of an atom. These arrows direction are determined by the spin of each atom. It is designed to read two separate files : one containing the position of the atoms, the other containing the spin of each atom. Of course these two files need to have the exact same number of atoms and also need to sort atoms in the same order.

Details

SPINMAXMODULUS_ID

#define SPINMAXMODULUS_ID "spinRendering_maxModulus"

This flag should be used when creating a new spin rendering method as the flag for the max modulus values as a VisuData property (see visuDataSet_property()).


SPINVALUES_ID

#define SPINVALUES_ID     "spinRendering_values"

This flag should be used when creating a new spin rendering method as the flag for the spin values as node properties (see visuNodeNew_pointerProperty()).


SPIN_MODULUS

#define SPIN_MODULUS 2

The offset to read the modulus in a float[3] array.


SPIN_PHI

#define SPIN_PHI     1

The offset to read phi in a float[3] array.


SPIN_THETA

#define SPIN_THETA   0

The offset to read theta in a float[3] array.


enum SpinGlobalResources

typedef enum
  {
    spin_globalConeTheta,
    spin_globalConePhi,
    spin_globalColorWheel,
    spin_globalHidingMode,
    spin_globalAtomic,
    spin_globalModulus,
    spin_nbGlobalResources
  } SpinGlobalResources;

These are resources that impact the entire rendering spin method. They can be accessed through rspin_getGlobalResource() or rspin_setGlobalResource_boolean() and other similar methods.

spin_globalConeTheta the theta angle to set the color cone ;
spin_globalConePhi the phi angle to set the color cone ;
spin_globalColorWheel an angle to set the color origin around the z axis of the cone ;
spin_globalHidingMode an id used to define the policy used to draw spin with null modulus (see SpinDrawingPolicy) ;
spin_globalAtomic if TRUE, atoms are drawn with spins ;
spin_globalModulus an id used to define the policy used to draw spin depending on modulus (see SpinModulusPolicy) ;
spin_nbGlobalResources number of global resources.

enum SpinElementResources

typedef enum
  {
    spin_elementHatLength,
    spin_elementTailLength,
    spin_elementHatRadius,
    spin_elementTailRadius,
    spin_elementHatColor,
    spin_elementTailColor,
    spin_elementAAxis,
    spin_elementBAxis,
    spin_elementElipsoidColor,
    spin_elementShape,
    spin_nbElementResources
  } SpinElementResources;

These are resources defined for each element. They can be accessed with rspin_getElementResource() or rspin_getElementResource_boolean() and other methods of the same kind.

spin_elementHatLength the length of the pointing element ;
spin_elementTailLength the length of the tail ;
spin_elementHatRadius the raidus of the pointing element ;
spin_elementTailRadius the radius of the tail ;
spin_elementHatColor if TRUE, the pointing part use the color of the element ;
spin_elementTailColor if TRUE, the tail uses the color of the element ;
spin_elementAAxis the size of the A axis (elipsoid shape) ;
spin_elementBAxis the size of the B axis (elipsoid shape) ;
spin_elementElipsoidColor if TRUE, the elipsoid uses the color of the element ;
spin_elementShape an id to defined the shape (rounded arrow, elipsoid...) ;
spin_nbElementResources number of resources per element.

enum SpinDrawingPolicy

typedef enum
  {
    policyAlwaysSpin,    
    policyHideNullSpin,  
    policyAtomicNullSpin,
    policyNbModes
  } SpinDrawingPolicy;

Different policy to render the spin when the modulus is null. This policy is applied for all VisuElement.

policyAlwaysSpin Arrows are drawn whatever the modulus value.
policyHideNullSpin Spin with a null modulus are hidden.
policyAtomicNullSpin Follow atomic rendering for null modulus.
policyNbModes a flag to count the number of modes.

enum SpinModulusPolicy

typedef enum
  {
    policyNoneModulus,    
    policyPerTypeModulus,  
    policyGlobalModulus,
    policyNbModulusModes
  } SpinModulusPolicy;

Different policy to render the spin depending on the modulus.

policyNoneModulus arrows have all the same size, whatever the modulus value.
policyPerTypeModulus arrows are scaled per node type.
policyGlobalModulus arrows are scaled globaly.
policyNbModulusModes a flag to count the number of modes.

rspin_addLoadMethod ()

void        rspin_addLoadMethod             (RenderingFormatLoad *meth);

This routine is used to register a new load method with its description (file formats, name...). The list of all known load methods is automatically resorted after a call to this method to reflect the priorities.

meth : a new load method.

rspin_load ()

gboolean    rspin_load                      (VisuData *data,
                                             FileFormat *format,
                                             int nSet,
                                             GError **error);

Try to load the spin file declared in the data. It tries all formats added with rspin_addLoadMethod().

data : a VisuData object ;
format : a pointer on a format (can be NULL if format is to be guessed) ;
nSet : an integer ;
error : a pointer to store a possible error.
Returns : FALSE if the file can't be loaded.

rspin_setGlobalResource_boolean ()

gboolean    rspin_setGlobalResource_boolean (SpinGlobalResources property,
                                             gboolean value);

This method is used to change global resources that are boolean.

property : the id of the property to set ;
value : its value.
Returns : TRUE if the value was changed.

rspin_getGlobalResource_boolean ()

gboolean    rspin_getGlobalResource_boolean (SpinGlobalResources property);

This is the specific method to retrieve value of boolean global resources.

property : the id of the property to get.
Returns : the boolean value.

rspin_setGlobalResource_float ()

gboolean    rspin_setGlobalResource_float   (SpinGlobalResources property,
                                             gfloat value);

This method is used to change global resources that are floating point.

property : the id of the property to set ;
value : its value.
Returns : TRUE if the value was changed.

rspin_getGlobalResource_float ()

gfloat      rspin_getGlobalResource_float   (SpinGlobalResources property);

This is the specific method to retrieve value of floating point global resources.

property : the id of the property to get.
Returns : the floating point value.

rspin_setGlobalResource_uint ()

gboolean    rspin_setGlobalResource_uint    (SpinGlobalResources property,
                                             guint value);

This method is used to change global resources that are unsigned int.

property : the id of the property to set ;
value : its value.
Returns : TRUE if the value was changed.

rspin_getGlobalResource_uint ()

guint       rspin_getGlobalResource_uint    (SpinGlobalResources property);

This is the specific method to retrieve value of unsigned int global resources.

property : the id of the property to get.
Returns : the unsigned int value.

rspin_getGlobalResource ()

gpointer    rspin_getGlobalResource         (SpinGlobalResources property,
                                             GType *type);

This is a generic method to access global resources. Use rspin_setGlobalResource_boolean() is favored if the type of the value is known. If the returned value is not NULL the argument type contains the type of the returned value.

property : the name of the resource ;
type : a location to store the type.
Returns : a pointer to the location where the value for the given global resource is stored.

rspin_getElementResource_uint ()

guint       rspin_getElementResource_uint   (VisuElement *ele,
                                             SpinElementResources property);

This is the specific method to retrieve value of unsigned int element resources.

ele : a pointer to a VisuElement object ;
property : the id of the property to get.
Returns : the unsigned int value.

rspin_setElementResource_uint ()

gboolean    rspin_setElementResource_uint   (VisuElement *ele,
                                             SpinElementResources property,
                                             guint value);

This method is used to change element resources that are unsigned int.

ele : a pointer to a VisuElement object ;
property : the id of the property to set ;
value : its value.
Returns : TRUE if the value was changed.

rspin_getElementResource_float ()

gfloat      rspin_getElementResource_float  (VisuElement *ele,
                                             SpinElementResources property);

This is the specific method to retrieve value of floating point element resources.

ele : a pointer to a VisuElement object ;
property : the id of the property to get.
Returns : the floating point value.

rspin_setElementResource_float ()

gboolean    rspin_setElementResource_float  (VisuElement *ele,
                                             SpinElementResources property,
                                             gfloat value);

This method is used to change element resources that are floating point.

ele : a pointer to a VisuElement object ;
property : the id of the property to set ;
value : its value.
Returns : TRUE if the value was changed.

rspin_setElementResource_boolean ()

gboolean    rspin_setElementResource_boolean
                                            (VisuElement *ele,
                                             SpinElementResources property,
                                             gboolean value);

This method is used to change element resources that are boolean.

ele : a pointer to a VisuElement object ;
property : the id of the property to set ;
value : its value.
Returns : TRUE if the value was changed.

rspin_getElementResource_boolean ()

gboolean    rspin_getElementResource_boolean
                                            (VisuElement *ele,
                                             SpinElementResources property);

This is the specific method to retrieve value of boolean element resources.

ele : a pointer to a VisuElement object ;
property : the id of the property to get.
Returns : the boolean value.

rspin_getElementResource ()

gpointer    rspin_getElementResource        (VisuElement *ele,
                                             SpinElementResources property,
                                             GType *type);

This is a generic method to access resources per element. Use rspin_setElementResource_boolean() is favored if the type of the value is known (boolean in this exemple). If the returned value is not NULL the argument type contains the type of the returned value.

ele : a pointer to a VisuElement object ;
property : the id of the resource (see SpinElementResources) ;
type : a location to store the type.
Returns : a pointer to the location where the value for the given global resource is stored.

rspin_get_number_of_shapes ()

int         rspin_get_number_of_shapes      ();

Pouet

Returns : the number of different shapes that can be used to draw spins

rspin_shape_number_to_translated_name ()

const char* rspin_shape_number_to_translated_name
                                            (int n);

This routine returnes the translated name in UTF-8 corresponding to the given shape id.

n : an id for spin shape.
Returns : a string owned by V_Sim.

rspin_hiding_number_to_name ()

const char* rspin_hiding_number_to_name     (int n);

Transform ids to untranslated names.

n : an id for hiding policy.
Returns : the name associated to the id.

rspin_hiding_number_to_translated_name ()

const char* rspin_hiding_number_to_translated_name
                                            (int n);

Transform ids to translated names.

n : an id for hiding policy.
Returns : the name associated to the id in UTF-8.

rspin_hiding_name_to_number ()

int         rspin_hiding_name_to_number     (const char *name);

In the config file, the hiding policy resource is stored with its name (untranslated). This method is used to retrieve the id from the name.

name : a string.
Returns : -1 if the name is invalid.

initSpin ()

RenderingMethod* initSpin                   ();

Create the whole method and initialise its values.

Returns : a RenderingMethod pointer to the new method created. Used by the core to register it.