Re: [Opensim-dev] Opensim beginner

2010-02-12 Thread Stefan Andersson
I would presume you also need to schedule the prim for a terse or a full
update.

 

/Stefan

 

From: opensim-dev-boun...@lists.berlios.de
[mailto:opensim-dev-boun...@lists.berlios.de] On Behalf Of Nilushi perera
Sent: den 12 februari 2010 07:16
To: opensim-dev@lists.berlios.de
Subject: Re: [Opensim-dev] Opensim beginner

 

Hi
I could successfully build the opensim workspace and run the helloworld
region module. Now I am looking for more programming stuff. I tried to
change the color of hello prim. But it didnt change. Here is the code:

  SceneObjectPart sop = new SceneObjectPart();
  sop.UUID = new UUID();
  sop.CreatorID = UUID.Zero;
  sop.Shape = PrimitiveBaseShape.CreateBox();
  sop.Material = (byte)Material.Metal;
  Color color1 = Color.FromArgb(255, 255, 0, 0);
  sop.Color = color1;
  sop.Scale = new Vector3(0.3f, 0.3f, 2f);
  Vector3 pos = new Vector3(120, 128, 30);
  SceneObjectGroup sog = new SceneObjectGroup(UUID.Zero, pos,
PrimitiveBaseShape.CreateBox());
  sog.SetRootPart(sop);
  prims1.Add(sog);

Please can you help me & give some suggestions. 



On Fri, Feb 12, 2010 at 1:12 AM, Robert Martin  wrote:

On Thu, Feb 11, 2010 at 12:15 PM, Nilushi perera 
wrote:
> Hi
>

> Thank you very much for your immediate response Michael and Robert. I'll
go
> through those links and instructions. I'll let you know my status after
> following your instructions Robert.
>
> Thank You
>

as far as how to make the stuff if you have a SecondLife account send
me a message
(robertltux mccallen) and i can give you a few pointers and you can
also google for
|| mermaid diaries secondlife || for a few tutorials



--
Robert L Martin

 

___
Opensim-dev mailing list
Opensim-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/opensim-dev


Re: [Opensim-dev] Opensim beginner

2010-02-11 Thread Len Brown
Yes, I too highly recommend OSGrid.  When you download the server from them
it's already pre-configured so you do not need your own local database
running (such as MySQL).  and if you use Hippo Viewer, which they recommend
on their site, it's already pre-configured to connect to OSGrid
automagically.

Once you name and locate your region on the grid and log in, you can find
your region by bringing up the Map and then searching for the name of your
region, then you can teleport to it and have fun building, etc.

Wright Plaza is a great place to TP to and get all sorts of items you can
enjoy on your region too.

- Len W. Brown
 lenwbr...@gmail.com

On Thu, Feb 11, 2010 at 11:15 AM, Nilushi perera wrote:

> Hi
>
> Thank you very much for your immediate response Michael and Robert. I'll go
> through those links and instructions. I'll let you know my status after
> following your instructions Robert.
>
> Thank You
>
> -- Forwarded message --
> From: Robert Martin 
> Date: Feb 11, 2010 11:00 PM
> Subject: Re: [Opensim-dev] Opensim beginner
> To: nilushi@gmail.com
>
> On Thu, Feb 11, 2010 at 11:35 AM, Nilushi perera 
> wrote:
> > Hi All,
> >
> > I am new to opensim. I could able to download and setup the opensim
> source
> > project. I am really interesting with the things in opensim. I would like
> to
> > develop vertual world for lectures using opensim. But the problem is that
> I
> > am a new guy to opensim. Can anyone help me to start the development
> stuff.
> okay to get you started (this assumes you are using Windows)
>
> 1 grab these files
> http://cloud.github.com/downloads/diva/diva-distribution/diva-r11766.zip
> http://www.apachefriends.org/download.php?xampp-win32-1.7.3.zip
>
> and unzip them to an empty folder
>
> 2 run the xampp setup and choose no drive letters then start the control
> panel
> 3 start apache and mysql
> 4 hit admin and setup your database and user (both named opensim
> REMEMBER YOUR PASSWORD
> 5 go over to the diva/bin folder and run the configure.exe
> use any name you want and the correct password
> this is windows/dotnet
> 6 when everything is done in the same folder run opensim.exe
>
> at this point a buncha stuff will scroll by when it stops you should
> see a line stating that it is enabling logins for %region%
>
> 7 you want to login to http://127.0.0.1:9000 how depends on what viewer
> you have
> most will use the --loginuri http://127.0.0.1:9000 trick
>
> reply back when you have this done
>
>
> --
> Robert L Martin
>
>
> ___
> Opensim-dev mailing list
> Opensim-dev@lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-dev
>
>


--
___
Opensim-dev mailing list
Opensim-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/opensim-dev


Re: [Opensim-dev] Opensim beginner

2010-02-11 Thread Nilushi perera
Hi
I could successfully build the opensim workspace and run the helloworld
region module. Now I am looking for more programming stuff. I tried to
change the color of hello prim. But it didnt change. Here is the code:

  SceneObjectPart sop = new SceneObjectPart();
  sop.UUID = new UUID();
  sop.CreatorID = UUID.Zero;
  sop.Shape = PrimitiveBaseShape.CreateBox();
  sop.Material = (byte)Material.Metal;
  Color color1 = Color.FromArgb(255, 255, 0, 0);
  sop.Color = color1;
  sop.Scale = new Vector3(0.3f, 0.3f, 2f);
  Vector3 pos = new Vector3(120, 128, 30);
  SceneObjectGroup sog = new SceneObjectGroup(UUID.Zero, pos,
PrimitiveBaseShape.CreateBox());
  sog.SetRootPart(sop);
  prims1.Add(sog);

Please can you help me & give some suggestions.


On Fri, Feb 12, 2010 at 1:12 AM, Robert Martin  wrote:

> On Thu, Feb 11, 2010 at 12:15 PM, Nilushi perera 
> wrote:
> > Hi
> >
> > Thank you very much for your immediate response Michael and Robert. I'll
> go
> > through those links and instructions. I'll let you know my status after
> > following your instructions Robert.
> >
> > Thank You
> >
> as far as how to make the stuff if you have a SecondLife account send
> me a message
> (robertltux mccallen) and i can give you a few pointers and you can
> also google for
> || mermaid diaries secondlife || for a few tutorials
>
>
>
> --
> Robert L Martin
>
___
Opensim-dev mailing list
Opensim-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/opensim-dev


Re: [Opensim-dev] Opensim beginner

2010-02-11 Thread Michael Cerquoni
a good place to learn how to use OpenSimulator is OSgrid, (http://osgrid.org)
it is totally free to join and run your own sim, a lot of people start off
on OSgrid, learn the basics and move on to their own projects.  you can also
join the web chat on the website and talk with others using the software to
learn more about their experiences, and also explore our forums too at
http://osgrid.org/forums

Hope this helps you.

On Thu, Feb 11, 2010 at 9:35 AM, Nilushi perera wrote:

> Hi All,
>
> I am new to opensim. I could able to download and setup the opensim source
> project. I am really interesting with the things in opensim. I would like to
> develop vertual world for lectures using opensim. But the problem is that I
> am a new guy to opensim. Can anyone help me to start the development stuff.
> The things like "how to add 3D modules such as chairs, trees and how to
> start to develop the enviornment for this" are my problems.
> I want to know from where should I start this and from where I can find
> tutorials or examples for programming in opensim.
> Any response are greatly welcome.
>
> Thank you
> Nilushi
>
> ___
> Opensim-dev mailing list
> Opensim-dev@lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-dev
>
>


-- 
Michael Emory Cerquoni - Nebadon Izumi @ http://osgrid.org
___
Opensim-dev mailing list
Opensim-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/opensim-dev


Re: [Opensim-dev] OpenSim beginner question

2009-12-07 Thread Dahlia Trimble
Hi Max,

The communication with the client is mainly handled in the class
LLClientView.cs (OpenSim\Region\ClientStack\LindenUDP\LLClientView.cs on my
installation). It communicates with the rest of OpenSim through various
interface classes. To make exploring the code easier, I would recommending
opening the OpenSim solution in Visual Studio or Visual C# Express and using
the "Go To Definition" and "Find All References" features that appear when
right-clicking on a identifier name.



On Mon, Dec 7, 2009 at 10:49 AM, Max 79  wrote:

> Hi all,
>
> i discovered this project last week and now i´m trying to understand the
> the OpenSimServer. I read onlinedocs on projects site, then i started to
> look at the source code. Now i`m searching for something like the entry
> point of a message processing, which has been send to the server. Can
> anybody give me a hint, which class serves as communicator to the client?
>
> Thanks in advance,
> Max
>
> ___
> Opensim-dev mailing list
> Opensim-dev@lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-dev
>
>
___
Opensim-dev mailing list
Opensim-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/opensim-dev