]> git.sesse.net Git - vlc/blob - modules/visualization/galaktos/init_cond.c
Remove _GNU_SOURCE and string.h too
[vlc] / modules / visualization / galaktos / init_cond.c
1 /*****************************************************************************
2  * init_cond.:
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet <asmax@videolan.org>
8  *          code from projectM http://xmms-projectm.sourceforge.net
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include <vlc/vlc.h>
26
27 /* Library functions to manipulate initial condition values */
28
29 #include <stdio.h>
30
31 #include "common.h"
32 #include "fatal.h"
33
34 #include "param_types.h"
35 #include "expr_types.h"
36 #include "init_cond_types.h"
37 #include "init_cond.h"
38
39 #include "splaytree_types.h"
40 #include "splaytree.h"
41 char init_cond_string_buffer[STRING_BUFFER_SIZE];
42 int init_cond_string_buffer_index = 0;
43
44
45 void init_cond_to_string(init_cond_t * init_cond);
46
47 /* Frees initial condition structure */
48 void free_init_cond(init_cond_t * init_cond) {
49   free(init_cond);
50 }
51
52 /* Evaluate an initial conditon */
53 void eval_init_cond(init_cond_t * init_cond) {
54
55   if (init_cond == NULL)
56     return;
57  
58   /* Parameter is of boolean type, either a 1 or 0 value integer */
59
60   /* Set matrix flag to zero. This ensures
61      its constant value will be used rather than a matrix value 
62   */
63   init_cond->param->matrix_flag = 0;
64   if (init_cond->param->type == P_TYPE_BOOL) {
65          if (INIT_COND_DEBUG) printf("init_cond: %s = %d (TYPE BOOL)\n", init_cond->param->name, init_cond->init_val.bool_val); 
66          *((int*)init_cond->param->engine_val) = init_cond->init_val.bool_val;
67      return;
68   }
69   
70   /* Parameter is an integer type, just like C */
71   
72   if (init_cond->param->type == P_TYPE_INT) {
73          if (INIT_COND_DEBUG) printf("init_cond: %s = %d (TYPE INT)\n", init_cond->param->name, init_cond->init_val.int_val);
74          *((int*)init_cond->param->engine_val) = init_cond->init_val.int_val;
75      return;
76   }
77
78   /* Parameter is of a double type, just like C */
79
80   if (init_cond->param->type == P_TYPE_DOUBLE) {
81         if (INIT_COND_DEBUG) printf("init_cond: %s = %f (TYPE DOUBLE)\n", init_cond->param->name, init_cond->init_val.double_val);
82         *((double*)init_cond->param->engine_val) = init_cond->init_val.double_val;
83     return;
84   }
85
86   /* Unknown type of parameter */
87   return;
88 }
89
90 /* Creates a new initial condition */
91 init_cond_t * new_init_cond(param_t * param, value_t init_val) {
92
93   init_cond_t * init_cond;
94
95   init_cond = (init_cond_t*)malloc(sizeof(init_cond_t));
96    
97   if (init_cond == NULL)
98     return NULL;
99  
100   init_cond->param = param;
101   init_cond->init_val = init_val;
102   return init_cond;
103 }
104
105 /* WIP */
106 void init_cond_to_string(init_cond_t * init_cond) {
107         
108         int string_length;
109         char string[MAX_TOKEN_SIZE];
110         
111         if (init_cond == NULL)
112                 return;
113
114         /* Create a string "param_name=val" */
115         switch (init_cond->param->type) {
116                 lldiv_t div;
117                 
118                 case P_TYPE_BOOL:
119                         sprintf(string, "%s=%d\n", init_cond->param->name, init_cond->init_val.bool_val);
120                         break; 
121                 case P_TYPE_INT:
122                         sprintf(string, "%s=%d\n", init_cond->param->name, init_cond->init_val.int_val);
123                         break;
124                 case P_TYPE_DOUBLE:
125                         div = lldiv( init_cond->init_val.double_val * 1000000,
126                                      1000000 );
127                         sprintf(string, "%s="I64Fd".%06u\n", init_cond->param->name, div.quot, (unsigned int) div.rem );
128                         break;
129                 default:
130                         return;
131         }               
132                 
133         /* Compute the length of the string */
134         string_length = strlen(string);
135         
136         /* Buffer overflow check */
137         if ((init_cond_string_buffer_index + string_length + 1)  > (STRING_BUFFER_SIZE - 1))
138                 return;
139         
140         /* Copy the string into the initial condition string buffer */
141         
142         strncpy(init_cond_string_buffer + init_cond_string_buffer_index, string, string_length);
143         
144         /* Increment the string buffer, offset by one for the null terminator, which will be
145            overwritten by the next call to this function */
146         init_cond_string_buffer_index+= string_length + 1;
147                 
148 }
149
150
151 char * create_init_cond_string_buffer(splaytree_t * init_cond_tree) {
152
153         if (init_cond_tree == NULL)
154                 return NULL;
155         
156         init_cond_string_buffer_index = 0;
157         
158         splay_traverse(init_cond_to_string, init_cond_tree);
159         
160         return init_cond_string_buffer;
161                 
162 }