Imported Upstream version 0.3.17
[platform/upstream/liboil.git] / liboil / liboilrandom.c
1 /*
2  * LIBOIL - Library of Optimized Inner Loops
3  * Copyright (c) 2005 David A. Schleef <ds@schleef.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #include <liboil/liboilrandom.h>
33 #include <liboil/liboilcolorspace.h>
34 #include <stdlib.h>
35
36 /**
37  * SECTION:liboilrandom
38  * @title: Random Number Generation
39  * @short_description: Random number generation
40  */
41
42 static void
43 _oil_random_bits (void *dest, int n)
44 {
45   int i;
46   uint8_t *d = dest;
47   for(i=0;i<n;i++){
48     d[i] = (rand()>>16);
49   }
50 }
51
52 /**
53  * oil_random_s32:
54  * @dest:
55  * @n:
56  *
57  * Writes random values in the range [-(1<<31), (1<<31)-1] to the
58  * destination array.
59  */
60 void
61 oil_random_s32(oil_type_s32 *dest, int n)
62 {
63   _oil_random_bits (dest, n*4);
64 }
65
66 /**
67  * oil_random_s64:
68  *
69  * Writes random values in the range [-(1<<63), (1<<63)-1] to the
70  * destination array.
71  */
72 void
73 oil_random_s64 (oil_type_s64 *dest, int n)
74 {
75   _oil_random_bits (dest, n*8);
76 }
77
78 /**
79  * oil_random_s16:
80  *
81  * Writes random values in the range [-(1<<15), (1<<15)-1] to the
82  * destination array.
83  */
84 void
85 oil_random_s16 (oil_type_s16 *dest, int n)
86 {
87   _oil_random_bits (dest, n*2);
88 }
89
90 /**
91  * oil_random_s8:
92  *
93  * Writes random values in the range [-(1<<7), (1<<7)-1] to the
94  * destination array.
95  */
96 void
97 oil_random_s8 (oil_type_s8 *dest, int n)
98 {
99   _oil_random_bits (dest, n);
100 }
101
102 /**
103  * oil_random_u32:
104  *
105  * Writes random values in the range [0, (1<<32)-1] to the
106  * destination array.
107  */
108 void
109 oil_random_u32 (oil_type_u32 *dest, int n)
110 {
111   _oil_random_bits (dest, n*4);
112 }
113
114 /**
115  * oil_random_u64:
116  *
117  * Writes random values in the range [0, (1<<64)-1] to the
118  * destination array.
119  */
120 void
121 oil_random_u64 (oil_type_u64 *dest, int n)
122 {
123   _oil_random_bits (dest, n*8);
124 }
125
126 /**
127  * oil_random_u16:
128  *
129  * Writes random values in the range [0, (1<<16)-1] to the
130  * destination array.
131  */
132 void
133 oil_random_u16 (oil_type_u16 *dest, int n)
134 {
135   _oil_random_bits (dest, n*2);
136 }
137
138 /**
139  * oil_random_u8:
140  *
141  * Writes random values in the range [0, (1<<8)-1] to the
142  * destination array.
143  */
144 void
145 oil_random_u8 (oil_type_u8 *dest, int n)
146 {
147   _oil_random_bits (dest, n);
148 }
149
150 /**
151  * oil_random_f64:
152  *
153  * Writes random double-precision floating point values in the
154  * range [0, 1.0) to the destination array.
155  */
156 void
157 oil_random_f64 (oil_type_f64 *dest, int n)
158 {
159   int i;
160   for(i=0;i<n;i++){
161     dest[i] = (((rand()/(RAND_MAX+1.0))+rand())/(RAND_MAX+1.0));
162   }
163 }
164
165 /**
166  * oil_random_f32:
167  *
168  * Writes random single-precision floating point values in the
169  * range [0, 1.0) to the destination array.
170  */
171 void
172 oil_random_f32 (oil_type_f32 *dest, int n)
173 {
174   int i;
175   for(i=0;i<n;i++){
176     dest[i] = (rand()/(RAND_MAX+1.0));
177   }
178 }
179
180 /**
181  * oil_random_alpha:
182  *
183  * Writes random values in the range [0, 255] to the destination
184  * array suitable for alpha values.  This is similar to oil_random_u8(),
185  * except the values 0 and 255 are strongly favored.
186  */
187 void
188 oil_random_alpha(uint8_t *dest, int n)
189 {
190   int i;
191   int x;
192   for(i=0;i<n;i++){
193     x = ((rand()>>8) & 0x1ff) - 0x80;
194     if (x<0) x = 0;
195     if (x>255) x = 255;
196     dest[i] = x;
197   }
198 }
199
200 /**
201  * oil_random_argb:
202  * @dest: destination array.
203  * @n: number of values to write.
204  *
205  * Creates valid random RGBA values and places them in the destination
206  * array.
207  */
208 void
209 oil_random_argb(uint32_t *dest, int n)
210 {
211   int i;
212   int x;
213   for(i=0;i<n;i++){
214     x = ((rand()>>8) & 0x1ff) - 0x80;
215     if (x<0) x = 0;
216     if (x>255) x = 255;
217     dest[i] = oil_argb_noclamp(x,
218         oil_muldiv_255(x,oil_rand_u8()),
219         oil_muldiv_255(x,oil_rand_u8()),
220         oil_muldiv_255(x,oil_rand_u8()));
221   }
222
223 }
224
225