]> git.sesse.net Git - vlc/blob - modules/visualization/galaktos/init_cond.c
Remove stdlib.h
[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 #include <string.h>
31
32 #include "common.h"
33 #include "fatal.h"
34
35 #include "param_types.h"
36 #include "expr_types.h"
37 #include "init_cond_types.h"
38 #include "init_cond.h"
39
40 #include "splaytree_types.h"
41 #include "splaytree.h"
42 char init_cond_string_buffer[STRING_BUFFER_SIZE];
43 int init_cond_string_buffer_index = 0;
44
45
46 void init_cond_to_string(init_cond_t * init_cond);
47
48 /* Frees initial condition structure */
49 void free_init_cond(init_cond_t * init_cond) {
50   free(init_cond);
51 }
52
53 /* Evaluate an initial conditon */
54 void eval_init_cond(init_cond_t * init_cond) {
55
56   if (init_cond == NULL)
57     return;
58  
59   /* Parameter is of boolean type, either a 1 or 0 value integer */
60
61   /* Set matrix flag to zero. This ensures
62      its constant value will be used rather than a matrix value 
63   */
64   init_cond->param->matrix_flag = 0;
65   if (init_cond->param->type == P_TYPE_BOOL) {
66          if (INIT_COND_DEBUG) printf("init_cond: %s = %d (TYPE BOOL)\n", init_cond->param->name, init_cond->init_val.bool_val); 
67          *((int*)init_cond->param->engine_val) = init_cond->init_val.bool_val;
68      return;
69   }
70   
71   /* Parameter is an integer type, just like C */
72   
73   if (init_cond->param->type == P_TYPE_INT) {
74          if (INIT_COND_DEBUG) printf("init_cond: %s = %d (TYPE INT)\n", init_cond->param->name, init_cond->init_val.int_val);
75          *((int*)init_cond->param->engine_val) = init_cond->init_val.int_val;
76      return;
77   }
78
79   /* Parameter is of a double type, just like C */
80
81   if (init_cond->param->type == P_TYPE_DOUBLE) {
82         if (INIT_COND_DEBUG) printf("init_cond: %s = %f (TYPE DOUBLE)\n", init_cond->param->name, init_cond->init_val.double_val);
83         *((double*)init_cond->param->engine_val) = init_cond->init_val.double_val;
84     return;
85   }
86
87   /* Unknown type of parameter */
88   return;
89 }
90
91 /* Creates a new initial condition */
92 init_cond_t * new_init_cond(param_t * param, value_t init_val) {
93
94   init_cond_t * init_cond;
95
96   init_cond = (init_cond_t*)malloc(sizeof(init_cond_t));
97    
98   if (init_cond == NULL)
99     return NULL;
100  
101   init_cond->param = param;
102   init_cond->init_val = init_val;
103   return init_cond;
104 }
105
106 /* WIP */
107 void init_cond_to_string(init_cond_t * init_cond) {
108         
109         int string_length;
110         char string[MAX_TOKEN_SIZE];
111         
112         if (init_cond == NULL)
113                 return;
114
115         /* Create a string "param_name=val" */
116         switch (init_cond->param->type) {
117                 lldiv_t div;
118                 
119                 case P_TYPE_BOOL:
120                         sprintf(string, "%s=%d\n", init_cond->param->name, init_cond->init_val.bool_val);
121                         break; 
122                 case P_TYPE_INT:
123                         sprintf(string, "%s=%d\n", init_cond->param->name, init_cond->init_val.int_val);
124                         break;
125                 case P_TYPE_DOUBLE:
126                         div = lldiv( init_cond->init_val.double_val * 1000000,
127                                      1000000 );
128                         sprintf(string, "%s="I64Fd".%06u\n", init_cond->param->name, div.quot, (unsigned int) div.rem );
129                         break;
130                 default:
131                         return;
132         }               
133                 
134         /* Compute the length of the string */
135         string_length = strlen(string);
136         
137         /* Buffer overflow check */
138         if ((init_cond_string_buffer_index + string_length + 1)  > (STRING_BUFFER_SIZE - 1))
139                 return;
140         
141         /* Copy the string into the initial condition string buffer */
142         
143         strncpy(init_cond_string_buffer + init_cond_string_buffer_index, string, string_length);
144         
145         /* Increment the string buffer, offset by one for the null terminator, which will be
146            overwritten by the next call to this function */
147         init_cond_string_buffer_index+= string_length + 1;
148                 
149 }
150
151
152 char * create_init_cond_string_buffer(splaytree_t * init_cond_tree) {
153
154         if (init_cond_tree == NULL)
155                 return NULL;
156         
157         init_cond_string_buffer_index = 0;
158         
159         splay_traverse(init_cond_to_string, init_cond_tree);
160         
161         return init_cond_string_buffer;
162                 
163 }