Evita  0.16
evDefinitions.h
Go to the documentation of this file.
1 /*
2  *
3  * EVITA: Efficient Visualization of Terascale Datasets
4  * Copyright (C) 2000-2016 Team Evita
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
19  * MA 02139, USA.
20  *
21  */
22 
23 
24 #ifndef __evDefinitions_h
25 #define __evDefinitions_h
26 
27 #define EVMINUS 0
28 #define EVPLUS 1
29 
30 // evita_encoder
31 #define EVGUITHREAD 0
32 #define EVENCODERTHREAD 1
33 
34 // Evita Client
35 #define EVDECODERTHREAD 0
36 #define EVVISUALIZERTHREAD 1
37 
38 // Messages
39 #define EVMESSAGE_DECODE_DONE 0
40 #define EVMESSAGE_VISUALIZER_DONE 1
41 #define EVMESSAGE_SETUP_NUMDIMENSIONS 2
42 #define EVMESSAGE_SETUP_SIZE 3
43 #define EVMESSAGE_SETUP_RANGE 4
44 #define EVMESSAGE_SETUP_FIELD 5
45 #define EVMESSAGE_SELECT_ROI 6
46 #define EVMESSAGE_START_ENCODING 7
47 #define EVMESSAGE_COMPONENTS 8
48 #define EVMESSAGE_DONE_ENCODING 9
49 #define EVMESSAGE_PROGRESS 10
50 #define EVMESSAGE_PROCESS 11
51 #define EVMESSAGE_HOSTNAME 12
52 #define EVMESSAGE_BITSTREAM 13
53 #define EVMESSAGE_CONNECTION_STATUS 14
54 #define EVMESSAGE_VISUALIZE 15
55 #define EVMESSAGE_UPDATE_VIEWFRUSTUM 16
56 #define EVMESSAGE_DEACTIVATE_ROI 17
57 
58 // Grid types
59 #define EVGRID_RECTANGULAR 0
60 #define EVGRID_CURVILINEAR 1
61 
62 
63 #endif