should now work.

Sugilite
MW 2007-06-28 11:54:51 +00:00
parent 50b180b545
commit 14ea54b441
34 changed files with 175 additions and 2 deletions

View File

@ -31,7 +31,6 @@ using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
//using OpenSim.CAPS;
using Nwc.XmlRpc;
using System.Collections;
using OpenSim.Framework.Console;

View File

@ -47,7 +47,7 @@ namespace OpenSim.Region.Communications.Local
: base(serversInfo)
{
UserServices = new LocalUserServices(this , serversInfo.DefaultHomeLocX, serversInfo.DefaultHomeLocY);
UserServices.AddPlugin("OpenGrid.Framework.Data.DB4o.dll");
UserServices.AddPlugin("OpenSim.Framework.Data.DB4o.dll");
UserServer = UserServices;
GridServer = SandBoxServices;
InterRegion = SandBoxServices;

View File

@ -0,0 +1,19 @@
Use the "terrain load" command to import these datafiles.
They are stored as Float-32 arrays, use the F32 import type.
These files are formatted on a scale of 0 to 1, they are designed for a range of 0..58.81
use the 'multiply' command to multiply them by 58.81 to achieve correct height values.
Example ------------------
Region# : terrain load f32 c:\opensim\datafiles\output_x0_y0.r32
Region# : terrain multiply 58.81
<AdamZaius> 0,0 - 1,0 - 2,0
<AdamZaius> 0,1 - 1,1 - 2,1
<AdamZaius> 0,2 - 1,2, 2,2
for a 3x3 area on the grid

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

View File

@ -0,0 +1,50 @@
using System;
using libTerrain;
using OpenSim.Terrain;
/// <summary>
/// A Demonstration Filter
/// </summary>
public class DemoFilter : ITerrainFilter
{
public void Filter(Channel heightmap, string[] args)
{
Console.WriteLine("Hello world");
}
public string Register()
{
return "demofilter";
}
public string Help()
{
return "demofilter - Does nothing\n";
}
}
public class SineFilter : ITerrainFilter
{
public void Filter(Channel heightmap, string[] args)
{
double max = heightmap.findMax();
for (int x = 0; x < heightmap.w; x++)
{
for (int y = 0; y < heightmap.h; y++)
{
heightmap.set(x,y,((Math.Sin(heightmap.get(x,y) * Convert.ToDouble(args[1])) + 1) / 2) * max);
}
}
}
public string Register()
{
return "sinefilter";
}
public string Help()
{
return "sinefilter <theta> - Converts the heightmap to the functional output of a sine wave";
}
}

105
bin/assets/base_shape.dat Normal file
View File

@ -0,0 +1,105 @@
LLWearable version 22
Female Shape and Outfit 3 Shape
Created by system from avatar's appearance.
permissions 0
{
base_mask 00082000
owner_mask 00082000
group_mask 00082000
everyone_mask 00082000
next_owner_mask 00082000
creator_id 3d924400-038e-6ad9-920b-cfbb9b40585c
owner_id 542ffb8e-8932-49b9-8664-58f53e442797
last_owner_id 3d924400-038e-6ad9-920b-cfbb9b40585c
group_id 00000000-0000-0000-0000-000000000000
}
sale_info 0
{
sale_type not
sale_price 0
}
type 0
parameters 82
1 .21
2 -.5
4 -.11
5 -.1
6 -.3
7 -.4
8 -.5
10 .7
11 .34
12 -.5
13 0
14 .04
15 .58
17 .56
18 -.26
19 -.73
20 -.34
21 -.01
22 1
23 -.5
24 -.63
25 .44
27 .05
33 -.24
34 -.7
35 -.16
36 -.2
37 -.98
38 -.5
80 0
105 .07
155 -.22
157 0
185 -1
193 .86
196 -.74
505 .65
506 .12
507 -1.5
515 0
517 .16
518 .8
629 0
637 0
646 .4
647 1
649 .36
650 .85
652 .49
653 -1
656 0
659 .65
662 .5
663 0
664 0
665 0
675 -.15
676 .26
678 .28
682 .27
683 -.19
684 -.09
685 0
690 .45
692 .4
693 -0
753 -.5
756 -.08
758 .24
759 .6
760 .11
764 -.38
765 -.3
769 .42
773 .51
795 .16
796 .11
799 .36
841 0
842 -.82
879 0
880 0
textures 0

BIN
bin/assets/bricks.jp2 Normal file

Binary file not shown.

BIN
bin/assets/granite.jp2 Normal file

Binary file not shown.

BIN
bin/assets/hardwood.jp2 Normal file

Binary file not shown.

BIN
bin/assets/map1.jp2 Normal file

Binary file not shown.

BIN
bin/assets/map_base.jp2 Normal file

Binary file not shown.

BIN
bin/assets/plywood.jp2 Normal file

Binary file not shown.

BIN
bin/assets/rocks.jp2 Normal file

Binary file not shown.

BIN
bin/assets/testpic2.jp2 Normal file

Binary file not shown.

Binary file not shown.