Difference between revisions of "Glosario"

From Second Life Wiki
Jump to navigation Jump to search
Line 68: Line 68:


==== LSL ====
==== LSL ====
Linden Scripting Language, a C-like language used for server-side scripting of objects.
Es un lenguaje de programación creado por Linden Labs, parecido al C y es usado en los servidores para el scripting sobre objetos.


==== Message Template ====
==== Message Template ====

Revision as of 21:24, 8 November 2008

Esta página está pendiente de ser traducida al español.

Al no estar reflejada en la página del Proyecto de Traducción del wiki, es importante que si usted empieza a traducirla lo indique aquí para evitar que otro usuario realice un trabajo baldío:

Spanish: 09.nov.2008, GusMarcos Spitteler, In Progress


Una vez traducida la página, por favor, borre este texto.


For non-technical, everyday Second Life lingo, please see the Second Life Wiki:

 Second Life Wiki Glossary




Agent

Son los datos que representan a tu usuario actual. Generalmente, está referido en el código “agent” tu identidad y “avatar” representando a otro. Es identificado con un UUID, llamado comunmente “agent_id” en el código fuente.

Aditi

Asi se llama el grid para Beta Testers usada para testear el software de SL por usuarios que no pertenecen a Linden Labs, antes de ser implementado en el grid principal.

Agni

Es el grid primario y por omisión al cual los usuarios se conectan.

Asset

Es un dato, como una imagen, sonido, script, objecto, etc. Los Assets pueden ser bajados al visualizador o subidos a un centro de datos. Los Assets son identificados por su UUID y su tipo. Los tipos se encuentran en llassettype.h.

Avatar

Es la represntación gráfica de un usuario. Implementado en la clase LLVOAvatar del visualizador/cliente.

Child

(Need a clear definition of "child"; this should include both "child agents" as referenced in How to Read 1.7 simulator Stats for instance, and other apparently subtly different definitions, as in "Your attachment is a child of your avatar which is in turn a child of the thing you are sitting on," in sitting) Child refers to an object or agent connected to or associated with another asset. While it is often technically part of the asset, it is not in itself the asset. Prims sub-linked to other prims are an example of a child. An avatar standing in a sim next to the one you are in would be a "child agent" of the sim you are standing in. Similarly, an asset attached to your avatar would also be a child.

Client

Sinónimo de Viewer.

Estate

Es una colección de regiones con determinadas reglas, usuarios baneados, posición del sol, etc. Cada estado tiene un dueño, puede ser un usuario o “Governor Linden”. La mayoria de regiones privadas estan en sus propios estados. Los Estados tienen identificadores del tipo "Integers", los cuales contienen enteros de 32 bits con signo (4 bytes) que se sitúan en el intervalo entre -2.147.483.648 y 2.147.483.647. La “mainland” tiene su id=1.

Farm

Sinónimo de Grid.

Floater

Es una caja de diálogo o ventana que aparece en la interfaz del usuario. Implementada en las clases como “LLFloater*”.

FMOD

Es una librería multiplataforma. Es usada para reproducir efectos de sonido sin compresión y emitir música en formato MP3 a usuarios en determinadas parcelas. Ver FMOD.org.

Grid

Es una colección de sims. Linden Lab ejecuta varios grids para testeo interno y externo.

Host

Es un servidor, usualmente llamado simulador (sim).

Indra

Es el nombre interno dado al proyecto de software que comprende a los servidores de Second Life (Userserver, Spaceserver, Dataserver, Simulator, y Backbone) y el visualizador (cliente)

JPEG2000

Es un formato de compresión de imágenes. Inherentemente progresivo, por ello es que las imágenes pueden ser mostradas teniendo parcialmente los datos de la misma, sin incrementar el tamaño del archivo. Ver la entrada en Wikipedia en JPEG2000.

Kakadu

Es una librería multiplataforma de alta performance basada en JPEG2000. Linden Lab no tiene derechos de redistribución de Kakadu por ellos es que el visualizador tiene integrado con OpenJPEG.

LSL

Es un lenguaje de programación creado por Linden Labs, parecido al C y es usado en los servidores para el scripting sobre objetos.

Message Template

The protocol description for UDP packet communication between the viewer and servers. Described in the text file app_settings/message_template.msg.

Ogg Vorbis

Open source audio compression library. Sound effects are stored as .ogg files in the asset system. See Ogg Vorbis.

Parcel

An area of land owned by a single user or group. Parcels are composed of square blocks measuring 4x4 meters, but the blocks do not have to be contiguous. Parcels have both an integer local id and a global UUID.

Prim

Abbreviation for primitive.

Primitive

3D object in the world. Each prim is represented by a set of parameters, including position, scale, rotation, shape, cut, hollow, etc. Prims can be linked together into link sets. They can also be attached to avatars, but this process is separate from linking. Primitives are implemented in LLPrimitive, with vertex generation performed in LLVolume and rendering in LLVOVolume.

Quaternion

Representation of a rotation. SL uses unit quaternions represented in four floats. This allows only three floats to be transmitted and the remaining value reconstructed on the viewer. See GameDev article on quaternions.

Region

Data set for a region of the world, like “Orientation Island” or “Ahern”. A region can be run by any simulator process, and regions move from sim to sim as the hosts are shut down, crash, etc.

Sim

Server host machine, for example sim1234.agni.lindenlab.com. The SL server grid consists of 2000+ sims. Sometimes “sim” is used incorrectly to mean simulator process or region.

Simulator

The primary SL server process. Each simulator process simulates one 256x256 meter region. As the viewer moves through the world it is handled off from one simulator to another. Multiple simulator processes run on each server host, currently 2 to 16.

SL

Common abbreviation for Second Life

Task

Server-side representation of a primitive or link set. Since primitives can contain scripts or be physically simulated each task adds load to the server process. The agent is also represented as a task on the server, but has extensive additional processing.

Texture

An image applied to the surface of an object.

UUID

Globally unique identifier, a 128-bit number represented as a 16-byte binary value or 36-byte hexadecimal string. UUIDs can be generated by any part of the system and are guaranteed to be unique. See Wikipedia article on UUIDs.

Vector

An array of floating point values used to represent positions, colors, etc. Implemented in LLVector3, LLVector4, LLColor4, etc.

Viewer

Client software, written in C++, that runs on the user’s Windows, Macintosh, or Linux computer. The process is named “newview” for historical reasons. You may specify Client parameters to it to alter its default behaviour.