Skip to content

ManipulateLight

mazarsju edited this page May 18, 2016 · 8 revisions

Implementing light

When using opengl display, GAMA provides you the possibility to manipulate one or several lights, making your display more realistic. Most of the following screenshots will be taken with the following short example gaml :

model test_light

grid cells {
	aspect base {
		draw square(1) at:{grid_x,grid_y} color:#white;
	}
}
experiment my_experiment type:gui{
	output {
		display my_display type:opengl background:#darkblue {
			graphics "my_layer" {
				draw square(100) color:#white at:{50,50};
				draw cube(5) color:#lightgrey at:{50,30};
				draw cube(5) color:#lightgrey at:{30,35};
				draw cube(5) color:#lightgrey at:{60,35};
				draw sphere(5) color:#lightgrey at:{10,10,2.5};
				draw sphere(5) color:#lightgrey at:{20,30,2.5};
				draw sphere(5) color:#lightgrey at:{40,30,2.5};
				draw sphere(5) color:#lightgrey at:{40,60,2.5};
				draw cone3D(5,5) color:#lightgrey at:{55,10,0};
				draw cylinder(5,5) color:#lightgrey at:{10,60,0};
			}
		}
	}
}

Index

Light generalities

Before going deep into the code, here is a quick explanation about how light works in opengl. First of all, you need to know that there are 3 types of lights you can manipulate : the ambient light, the diffuse light and the specular light. Each "light" in opengl is in fact composed of those 3 types of lights.

Ambient light

The ambient light is the light of your world without any lighting. If a face of a cube is not stricken by the light rays for instance, this face will appear totally black if there is no ambient light. To make your world more realistic, it is better to have an ambient light. An ambient light has then no position or direction. It is equally distributed to all the objects of your scene.

Here is an example of our GAML scene using only ambient light (color red) :

resources/images/lightRecipes/ambient_light.png

Diffuse light

The diffuse light can be seen as the light rays : if a face of a cube is stricken by the diffuse light, it will take the color of this diffuse light. You have to know that the more perpendicular the face of your object will be to the light ray, the more lightened the face will be.

Here is an example of our GAML scene using only diffuse light (color red, the light source is displayed as a red sphere) :

resources/images/lightRecipes/diffuse_light.png

A diffuse light has then a direction. It can have also a position. Your have 2 categories of diffuse light : the positional lights, and the directional lights.

Positional lights

Those lights have a position in your world. It is the case of point lights and spot lights.

  • Point lights

Points lights can be seen as a candle in your world, diffusing the light equally in all the direction.

Here is an example of our GAML scene using only diffuse light (color red, the light source is displayed as a red sphere) :

resources/images/lightRecipes/point_light.png

  • Spot lights

Spot lights can be seen as a torch light in your world. It needs a position, and also a direction and an angle.

resources/images/lightRecipes/spot_light.png

Positional lights, as they have a position, can also have an attenuation according to the distance between the light source and the object. The value of positional lights are computed with the following formula : diffuse_light = diffuse_light * ( 1 / (1 + constante_attenuation + linear_attenuation * d + quadratic_attenuation * d)) By changing those 3 values (constante_attenuation, linear_attenuation and quadratic_attenuation), you can control the way light is diffused over your world (if your world is "foggy" for instance, you may turn your linear and quadratic attenuation on). Note that by default, all those attenuation are equal to 0.

Here is an example of our GAML scene using a point light with linear attenuation (color red, the light source is displayed as a red sphere) :

resources/images/lightRecipes/point_light_with_attenuation.png

Directional lights

Directional lights have no real "position" : they only have a direction. A directional light will strike all the objects of your world with the same direction. An example of directional light you have in the real world would be the light of the sun : the sun is so far away from us that you can consider that the rays have the same direction and the same intensity wherever they strike. Since there is no position for directional lights, there is no attenuation either.

resources/images/lightRecipes/direction_light.png

Specular light

This is a more advanced concept, giving an aspect a little bit "shinny" to the objects stricken by the specular light. It is used to simulate the interaction between the light and a special material (ex : wood, steel, rubber...).

Default light

In your opengl display, without specifying any light, you will have only one light, with those following properties :

Those values have been chosen in order to have the same visual effect in both opengl and java2D displays, when you display 2D objects, and also to have a nice "3D effect" when using the opengl displays. We chose the following setting by default : The ambient light value : rgb(127,127,127,255) diffuse light value : rgb(127,127,127,255) type of light : direction direction of the light : (0.5,0.5,-1);

Custom lights

In your opengl display, you can create up to 8 lights, giving them the properties you want.

Ambient light

In order to keep it simple, the ambient light can be set directly when you are declaring your display, through the facet ambient_light. You will have one only ambient light.

experiment my_experiment type:gui {
	output {
		display "my_display" type:opengl {
			light id:0;
		}
	}
}

Note for developpers : Note that this ambient light is set to the GL_LIGHT0. This GL_LIGHT0 only contains an ambient light, and no either diffuse nor specular light. However, you still can manipulate the diffuse light for the GL_LIGHT0 through the deprecated facet diffuse_light (not recommanded).

Diffuse and Specular light

In order to add lights, or modifying the existing lights, you can use the statement light, inside your display scope :

experiment my_experiment type:gui {
	output {
		display "my_display" type:opengl {
			light id:0;
		}
	}
}

This statement has just one non-optionnal facet : the facet "id". Through this facet, you can specify which light you want. You can control over 8 lights, through an integer value between 0 and 6. Once you are manipulating a light through the light statement, the light is turned on. To swich off the light, you have to add the facet active, and turn it to false. The light you are declaring through the light statement is in fact a "diffuse" light. You can specify the color of the diffuse light through the facet color (by default, the color will be turn to white). An other very important facet is the type facet. This facet accepts a value among direction, point and spot.

Declaring direction light

A direction light, as explayed in the first part, is a light without any position. Instead of the facet position, you will use the facet direction, giving a 3D vector.

Example of implementation :

light id:0 type:direction direction:{1,1,1} color:rgb(255,0,0);

Screenshot of this effect :

[TODO Image]

Declaring point light

A point light will need a facet position, in order to give the position of the light source.

Example of implementation of a basic point light :

light id:0 type:point position:{10,20,10} color:rgb(255,0,0);

Screenshot of this effect :

[TODO Image]

You can add, if you want, a custom attenuation of the light, through the facets linear_attenuation or quadratic_attenuation.

Example of implementation of a point light with attenuation :

light id:0 type:point position:{10,20,10} color:rgb(255,0,0) linear_attenuation:0.1;

Screenshot of this effect :

[TODO Image]

Declaring spot light

A spot light will need the facet position (a spot light is a positionnal light) and the facet direction. A spot light will also need a special facet spot_angle to determine the angle of the spot (by default, this value is set to 45 degree).

Example of implementation of a basic spot light :

light id:0 type:spot position:{0,0,10} direction:{1,1,1} color:rgb(255,0,0) spot_angle:20;

Screenshot of this effect :

[TODO Image]

Same as for point light, you can specify an attenuation for a spot light.

Example of implementation of a spot light with attenuation :

light id:0 type:spot position:{0,0,10} direction:{1,1,1} color:rgb(255,0,0) spot_angle:20;

Screenshot of this effect :

[TODO Image]

A more advanced feature allows you to add a specular light, through the facet specular_color, to give some more realism to your scene :

[TODO Image]

Note that when you are working with lights, you can display your lights through the facet draw light to help you implementing your model. The three types of lights are displayed differently :

  • The point light is represented by a sphere with the color of the diffuse light you specified, in the position of your light source.
  • The spot light is represented by a cone with the color of the diffuse light you specified, in the position of your light source, the orientation of your light source. The size of the base of the cone will depend of the angle you specified.
  • The direction light, as it has no real position, is represented with 4 arrows striking the 4 corners of your world, with the direction of your direction light, and the color of the diffuse light you specified.

[TODO Image]

Note for developpers : Note that, since the GL_LIGHT0 is already reserved for the ambient light (only !), all the other lights (from 0 to 6) are in fact the lights from GL_LIGHT1 to GL_LIGHT7.

  1. What's new (Changelog)
  1. Installation and Launching
    1. Installation
    2. Launching GAMA
    3. Updating GAMA
    4. Installing Plugins
  2. Workspace, Projects and Models
    1. Navigating in the Workspace
    2. Changing Workspace
    3. Importing Models
  3. Editing Models
    1. GAML Editor (Generalities)
    2. GAML Editor Tools
    3. Validation of Models
  4. Running Experiments
    1. Launching Experiments
    2. Experiments User interface
    3. Controls of experiments
    4. Parameters view
    5. Inspectors and monitors
    6. Displays
    7. Batch Specific UI
    8. Errors View
  5. Running Headless
    1. Headless Batch
    2. Headless Server
    3. Headless Legacy
  6. Preferences
  7. Troubleshooting
  1. Introduction
    1. Start with GAML
    2. Organization of a Model
    3. Basic programming concepts in GAML
  2. Manipulate basic Species
  3. Global Species
    1. Regular Species
    2. Defining Actions and Behaviors
    3. Interaction between Agents
    4. Attaching Skills
    5. Inheritance
  4. Defining Advanced Species
    1. Grid Species
    2. Graph Species
    3. Mirror Species
    4. Multi-Level Architecture
  5. Defining GUI Experiment
    1. Defining Parameters
    2. Defining Displays Generalities
    3. Defining 3D Displays
    4. Defining Charts
    5. Defining Monitors and Inspectors
    6. Defining Export files
    7. Defining User Interaction
  6. Exploring Models
    1. Run Several Simulations
    2. Batch Experiments
    3. Exploration Methods
  7. Optimizing Model Section
    1. Runtime Concepts
    2. Optimizing Models
  8. Multi-Paradigm Modeling
    1. Control Architecture
    2. Defining Differential Equations
  1. Manipulate OSM Data
  2. Diffusion
  3. Using Database
  4. Using FIPA ACL
  5. Using BDI with BEN
  6. Using Driving Skill
  7. Manipulate dates
  8. Manipulate lights
  9. Using comodel
  10. Save and restore Simulations
  11. Using network
  12. Headless mode
  13. Using Headless
  14. Writing Unit Tests
  15. Ensure model's reproducibility
  16. Going further with extensions
    1. Calling R
    2. Using Graphical Editor
    3. Using Git from GAMA
  1. Built-in Species
  2. Built-in Skills
  3. Built-in Architecture
  4. Statements
  5. Data Type
  6. File Type
  7. Expressions
    1. Literals
    2. Units and Constants
    3. Pseudo Variables
    4. Variables And Attributes
    5. Operators [A-A]
    6. Operators [B-C]
    7. Operators [D-H]
    8. Operators [I-M]
    9. Operators [N-R]
    10. Operators [S-Z]
  8. Exhaustive list of GAMA Keywords
  1. Installing the GIT version
  2. Developing Extensions
    1. Developing Plugins
    2. Developing Skills
    3. Developing Statements
    4. Developing Operators
    5. Developing Types
    6. Developing Species
    7. Developing Control Architectures
    8. Index of annotations
  3. Introduction to GAMA Java API
    1. Architecture of GAMA
    2. IScope
  4. Using GAMA flags
  5. Creating a release of GAMA
  6. Documentation generation

  1. Predator Prey
  2. Road Traffic
  3. 3D Tutorial
  4. Incremental Model
  5. Luneray's flu
  6. BDI Agents

  1. Team
  2. Projects using GAMA
  3. Scientific References
  4. Training Sessions

Resources

  1. Videos
  2. Conferences
  3. Code Examples
  4. Pedagogical materials
Clone this wiki locally