diff options
author | Jacek Antonelli | 2008-08-15 23:44:46 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:46 -0500 |
commit | 38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4 (patch) | |
tree | adca584755d22ca041a2dbfc35d4eca01f70b32c /linden/indra/newview/noise.cpp | |
parent | README.txt (diff) | |
download | meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.zip meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.tar.gz meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.tar.bz2 meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.tar.xz |
Second Life viewer sources 1.13.2.12
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/noise.cpp | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/linden/indra/newview/noise.cpp b/linden/indra/newview/noise.cpp new file mode 100644 index 0000000..528e799 --- /dev/null +++ b/linden/indra/newview/noise.cpp | |||
@@ -0,0 +1,85 @@ | |||
1 | /** | ||
2 | * @file noise.cpp | ||
3 | * @brief Perlin noise routines for procedural textures, etc | ||
4 | * | ||
5 | * Copyright (c) 2000-2007, Linden Research, Inc. | ||
6 | * | ||
7 | * The source code in this file ("Source Code") is provided by Linden Lab | ||
8 | * to you under the terms of the GNU General Public License, version 2.0 | ||
9 | * ("GPL"), unless you have obtained a separate licensing agreement | ||
10 | * ("Other License"), formally executed by you and Linden Lab. Terms of | ||
11 | * the GPL can be found in doc/GPL-license.txt in this distribution, or | ||
12 | * online at http://secondlife.com/developers/opensource/gplv2 | ||
13 | * | ||
14 | * There are special exceptions to the terms and conditions of the GPL as | ||
15 | * it is applied to this Source Code. View the full text of the exception | ||
16 | * in the file doc/FLOSS-exception.txt in this software distribution, or | ||
17 | * online at http://secondlife.com/developers/opensource/flossexception | ||
18 | * | ||
19 | * By copying, modifying or distributing this software, you acknowledge | ||
20 | * that you have read and understood your obligations described above, | ||
21 | * and agree to abide by those obligations. | ||
22 | * | ||
23 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
24 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
25 | * COMPLETENESS OR PERFORMANCE. | ||
26 | */ | ||
27 | |||
28 | #include "llviewerprecompiledheaders.h" | ||
29 | |||
30 | #include "noise.h" | ||
31 | |||
32 | #include "llrand.h" | ||
33 | |||
34 | // static | ||
35 | #define B 0x100 | ||
36 | S32 p[B + B + 2]; | ||
37 | F32 g3[B + B + 2][3]; | ||
38 | F32 g2[B + B + 2][2]; | ||
39 | F32 g1[B + B + 2]; | ||
40 | S32 gNoiseStart = 1; | ||
41 | |||
42 | |||
43 | F32 noise2(F32 *vec) | ||
44 | { | ||
45 | U8 bx0, bx1, by0, by1; | ||
46 | U32 b00, b10, b01, b11; | ||
47 | F32 rx0, rx1, ry0, ry1, *q, sx, sy, a, b, u, v; | ||
48 | S32 i, j; | ||
49 | |||
50 | if (gNoiseStart) { | ||
51 | gNoiseStart = 0; | ||
52 | init(); | ||
53 | } | ||
54 | |||
55 | |||
56 | fast_setup(*vec, bx0, bx1, rx0, rx1); | ||
57 | fast_setup(*(vec + 1), by0, by1, ry0, ry1); | ||
58 | |||
59 | i = *(p + bx0); | ||
60 | j = *(p + bx1); | ||
61 | |||
62 | b00 = *(p + i + by0); | ||
63 | b10 = *(p + j + by0); | ||
64 | b01 = *(p + i + by1); | ||
65 | b11 = *(p + j + by1); | ||
66 | |||
67 | sx = s_curve(rx0); | ||
68 | sy = s_curve(ry0); | ||
69 | |||
70 | |||
71 | q = *(g2 + b00); | ||
72 | u = fast_at2(rx0, ry0, q); | ||
73 | q = *(g2 + b10); | ||
74 | v = fast_at2(rx1, ry0, q); | ||
75 | a = lerp_m(sx, u, v); | ||
76 | |||
77 | q = *(g2 + b01); | ||
78 | u = fast_at2(rx0,ry1,q); | ||
79 | q = *(g2 + b11); | ||
80 | v = fast_at2(rx1,ry1,q); | ||
81 | b = lerp_m(sx, u, v); | ||
82 | |||
83 | return lerp_m(sy, a, b); | ||
84 | } | ||
85 | |||