OLPCities/Using Links

From OLPC
< OLPCities
Revision as of 09:36, 22 September 2006 by Adamascj (talk | contribs)
Jump to: navigation, search

Look the figure. The avatar is going near an sprite that is like an OLPC station over a table.

Tut4-1.jpg

This sprite is a Link and you can find and copy it from our Inventory at Links.

It's not a 3D object because we will use it in the superior part of an "street". But it has a "shadow for collision". So: it is really two sprites: LinkD and LinkS.

When the avatar collides against the "shadow" is open (over the Lot) a "normal" web page having text etc.

At the web page we have the icon:


Linkback.gif

When this icon is clicked, the Lot returns.

Our chalenge is that the avatar needs to be near the sprite that is the Link - to create the ilusion that he has readed the page at the computer over the table>

To do this "trick" we need to use a cookie. You can read the reference of the Class Cookie.

At this cookie we write a "flag" to define the future "entry" of the avatar at the Lot. So: an avatar can entry inside a Lot comming from many places: another Lot near it (using Transit - we will talk about this soon), a "normal" web page that is linked to the Lot, another OLPCity etc. etc.

To go to the "normal" web page, we capture the collision of the avatar against the "shadow" of the Link and we will use a property of the Class Window. The lines of code (inside the "timestep loop") are:

if(av.hasHit(linkS)){
  entryt.setvalue("LTUT"); //a value for the cookie "entryt"
  linkD.switchOff(); //the Link disapears
  window.location="somepage.html";//load the new page
} 

At the "normal" web page we have the usual HREF to return to the Lot (that is another web page).

Look all the code of our exercice:

<html>
<head>
<script language="Javascript" src="http://www.dmu.com/olpc/gamelib_core.js"></script> 
<script language="Javascript"  src="http://www.dmu.com/olpc/gamelib_sprites.js"></script>
<script language="Javascript" src="http://www.dmu.com/olpc/gamelib_keyboard.js"></script>
<script language="Javascript">

 function init(){

  Sp_linuxcompatible=true;

  Gl_preloader("floorW05N07.gif"); 
  Gl_preloader("avat1.gif");
  Gl_preloader("linkD.gif");  
  Gl_preloader("linkS.gif"); 

  entryt = new Gl_cookie("entt"); 

   upkey=Kb_trapkey("UP");				 
   downkey=Kb_trapkey("DOWN");			  
   rightkey=Kb_trapkey("RIGHT");	
   leftkey=Kb_trapkey("LEFT");
 
   av=new Sp_Sprite();	 
   av.setImage("avat1.gif",32,32,4,2);  
   av.setXlimits(5,610);
   av.setYlimits(5,385);
   if(entryt.value=="LTUT"){	 
     av.moveTo( 160,95);	 
     av.setFrame(2);
     entryt.setvalue("G");
   }
   else{	 
    av.moveTo( 300,170);	 
    av.setFrame(3);
   }
   av.setFrameByDirection(90,90,1,180,180,3,270,270,0,0,0,2);
   av.setAnimation(0);
   av.setZ(10);
   av.collides=true;
   av.useHitEvents(true);
   av.setAnimationSpeed(3);
   av.switchOn();

  floor=new Sp_Sprite();			 
  floor.setImage("floorW05N07.gif",614,390,1,1); 
  floor.setXlimits( 0,614);	 
  floor.setYlimits( 0,390);
  floor.setFrame(0);	 
  floor.moveTo(0 , 0 );				 
  floor.setZ(5);  
  floor.switchOn();				 

  linkD=new Sp_Sprite(); 
  linkD.setImage("linkD.gif",20,28,1,1); 
  linkD.setXlimits( 0,614);	 
  linkD.setYlimits( 0,390);
  linkD.setFrame(0);	 
  linkD.moveTo(160 , 70 );				 
  linkD.setZ(6);  
  linkD.switchOn();
		
  linkS=new Sp_Sprite();			 
  linkS.setImage("linkS.gif",20,13,1,1); 
  linkS.setXlimits( 0,614);	 
  linkS.setYlimits( 0,390);
  linkS.setFrame(0);	 
  linkS.moveTo(160 , 70 );				 
  linkS.setZ(0);  
  linkS.makeHard();
  linkS.switchOn();


  Gl_hook("timestep()"); 
  Gl_start();	
 } 

 function timestep(){
    av.setSpeed(0); 
    av.setAnimationRepeat(0);
   if(rightkey.pressed){
     av.setDir(1,0);
     av.setAnimationRepeat(-1);
     av.setSpeed(2);
   }
   else if(leftkey.pressed){
    av.setDir(-1,0);
    av.setAnimationRepeat(-1);
    av.setSpeed(2);
   }
   else if(downkey.pressed){
    av.setDir(0,1);
    av.setAnimationRepeat(-1);
    av.setSpeed(2);
   }
   else if(upkey.pressed){
    av.setDir(0,-1);
    av.setAnimationRepeat(-1);
    av.setSpeed(2);
   }

   if(av.hasHit(linkS)){
    entryt.setvalue("LTUT");
    linkD.switchOff(); 
    window.location="linktut.html";
   } 
   
 }//timestep

</script>
</head>

<title>TUTCITY  </title>
<body  bgcolor="black"  onload="init()" >
</html>

And the "normal" web page only has:

<html>
<title>LINK FROM TUT</title>
<p>This is only a test for a "normal" web-page linked by a Lot of an OLPCity. 
<p>If you like to go back to the Lot, click the icon:
<p><a href="tut4.html"><img src="linkback.gif"></a></center>
</html>

Look the Lot of the exercice at our web server: http://www.dmu.com/olpctut/tut4.html Go near the Link to go to the "normal" web page. Try to come back clicking the icon in the page.


PREVIOUS LESSON: Using 3D objects...........TOC :OLPCities Tutorials..........NEXT LESSON : Using Transit