Difference between revisions of "User:Michel Lemmon/Script Intermedio"
Jump to navigation
Jump to search
m (added to category) |
|||
(5 intermediate revisions by one other user not shown) | |||
Line 39: | Line 39: | ||
* le graffe le metto su nuova linea per chiarezza di dove iniziano e finiscono | * le graffe le metto su nuova linea per chiarezza di dove iniziano e finiscono | ||
if(x==1) | if(x==1) | ||
{ | { | ||
<a> | <a> | ||
} | } | ||
else | else | ||
{ | { | ||
<b> | <b> | ||
} | } | ||
<div id="box"> | <div id="box"> | ||
==Debug== | ==Debug== | ||
<div style="padding: 0.5em"> | <div style="padding: 0.5em"> | ||
* uso sempre una funzione debug(string str) | * uso sempre una funzione debug(string str) | ||
debug(string str) | debug(string str) | ||
{ | { | ||
if(iDEBUG==1) llSay(10,str); | if(iDEBUG==1) llSay(10,str); | ||
} | } | ||
l'uso del canale 10 è legato al fatto che non disturba gli altri in modalità debug. Per "leggere" il debug di un oggetto siffatto basta scriptare quanto segue: | l'uso del canale 10 è legato al fatto che non disturba gli altri in modalità debug. Per "leggere" il debug di un oggetto siffatto basta scriptare quanto segue: | ||
Line 64: | Line 63: | ||
* debugger (lo trovate nella box) | * debugger (lo trovate nella box) | ||
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
Line 74: | Line 73: | ||
llOwnerSay("DEBUG obj: "+objname+": "+str); | llOwnerSay("DEBUG obj: "+objname+": "+str); | ||
} | } | ||
} | } | ||
</div> | </div> | ||
Line 106: | Line 105: | ||
Oggetto A (Trasmittente): | Oggetto A (Trasmittente): | ||
integer iCHANNEL=-3000; // negativo per non essere utilizzato da avatars | |||
integer iCHANNEL=-3000; // negativo per non essere utilizzato da avatars | integer iDEBUG=1; // abilita debug | ||
debug(string str) | |||
integer iDEBUG=1; // abilita debug | { | ||
debug(string str) | |||
{ | |||
if(iDEBUG==1) llSay(10,str); | if(iDEBUG==1) llSay(10,str); | ||
} | } | ||
default | |||
default | { | ||
{ | |||
state_entry() | state_entry() | ||
{ | { | ||
Line 128: | Line 121: | ||
llSay(iCHANNEL,"Here I am"); | llSay(iCHANNEL,"Here I am"); | ||
} | } | ||
} | } | ||
Oggetto B (ricevente): | Oggetto B (ricevente): | ||
integer iCHANNEL=-3000; // negativo per non essere utilizzato da avatars | |||
integer iCHANNEL=-3000; // negativo per non essere utilizzato da avatars | integer iDEBUG=1; // abilita debug | ||
debug(string str) | |||
integer iDEBUG=1; // abilita debug | { | ||
debug(string str) | |||
{ | |||
if(iDEBUG==1) llSay(10,str); | if(iDEBUG==1) llSay(10,str); | ||
} | } | ||
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
Line 157: | Line 145: | ||
} | } | ||
} | } | ||
} | } | ||
</div> | </div> | ||
</div> | </div> | ||
Line 167: | Line 155: | ||
Oggetto A (trasmittente) | Oggetto A (trasmittente) | ||
integer iCHANNEL=-3000; | |||
integer iCHANNEL=-3000; | integer iDIALOG=-3001; // canale per llDialog | ||
integer iDEBUG=1; | |||
integer iDIALOG=-3001; // canale per llDialog | integer iLISTEN=0; | ||
debug(string str) {} | |||
integer iDEBUG=1; | default | ||
{ | |||
integer iLISTEN=0; | |||
debug(string str) {} | |||
default | |||
{ | |||
touch_start(integer count) | touch_start(integer count) | ||
{ | { | ||
Line 195: | Line 177: | ||
llSay(iCHANNEL,str); | llSay(iCHANNEL,str); | ||
} | } | ||
} | } | ||
Oggetto B(finestra) | Oggetto B(finestra) | ||
integer iCHANNEL=-3000; | |||
integer iCHANNEL=-3000; | integer iDEBUG=1; | ||
debug().... | |||
integer iDEBUG=1; | default | ||
{ | |||
debug().... | |||
default | |||
{ | |||
state_entry() | state_entry() | ||
{ | { | ||
Line 220: | Line 198: | ||
if(str=="100%") llSetAlpha(0,ALL_SIDES); | if(str=="100%") llSetAlpha(0,ALL_SIDES); | ||
} | } | ||
} | } | ||
</div> | </div> | ||
</div> | </div> | ||
Line 228: | Line 206: | ||
Oggetto A (trasmittente) | Oggetto A (trasmittente) | ||
integer iCHANNEL=-3000; // questo è privato al linkset | |||
integer iCHANNEL=-3000; // questo è privato al linkset | integer iDIALOG=-3001; // canale per llDialog | ||
integer iDEBUG=1; | |||
integer iDIALOG=-3001; // canale per llDialog | integer iLISTEN=0; | ||
debug(string str) {} | |||
integer iDEBUG=1; | default | ||
{ | |||
integer iLISTEN=0; | |||
debug(string str) {} | |||
default | |||
{ | |||
touch_start(integer count) | touch_start(integer count) | ||
{ | { | ||
Line 251: | Line 224: | ||
{ | { | ||
debug("received the command "+str+" transmitting to the window"); | debug("received the command "+str+" transmitting to the window"); | ||
llListenRemove(iLISTEN); | llListenRemove(iLISTEN); | ||
iLISTEN=0; | iLISTEN=0; | ||
llMessageLinked(LINK_SET, iCHANNEL, str, ""); | llMessageLinked(LINK_SET, iCHANNEL, str, ""); | ||
} | } | ||
} | } | ||
B Oggetto B(finestra) | B Oggetto B(finestra) | ||
integer iCHANNEL=-3000; | |||
integer iCHANNEL=-3000; | integer iDEBUG=1; | ||
debug().... | |||
integer iDEBUG=1; | default | ||
{ | |||
debug().... | |||
default | |||
{ | |||
state_entry() | state_entry() | ||
{ | { | ||
Line 274: | Line 242: | ||
link_message(integer sender, integer num, string str, key id) | link_message(integer sender, integer num, string str, key id) | ||
{ | { | ||
if(num!=iCHANNEL) return; | |||
debug("Received command: "+str); | |||
if(str=="0%") llSetAlpha(1,ALL_SIDES); | |||
if(str=="50%") llSetAlpha(0.5,ALL_SIDES); | |||
if(str=="100%") llSetAlpha(0,ALL_SIDES); | |||
} | } | ||
} | } | ||
</div> | </div> | ||
</div> | </div> | ||
Line 313: | Line 281: | ||
<div style="padding: 0.5em"> | <div style="padding: 0.5em"> | ||
* interruttore che accende / spegne una luce. | * interruttore che accende / spegne una luce. | ||
si può usare llSetPrimitiveParams([PRIM_POINT_LIGHT, TRUE, <1, 1, 1>, 1.0, 10.0 | si può usare llSetPrimitiveParams([PRIM_POINT_LIGHT, TRUE, <1, 1, 1>, 1.0, 10.0]); | ||
</div> | </div> | ||
</div> | </div> | ||
Line 321: | Line 289: | ||
|} | |} | ||
[[User:Michel Lemmon|Michel Lemmon]] 20:00, 1 april 2008(PST) | [[User:Michel Lemmon|Michel Lemmon]] 20:00, 1 april 2008(PST) | ||
[[category:Pagine italiane da wikificare]] |
Latest revision as of 12:07, 1 November 2009
Michel Lemmon 20:00, 1 april 2008(PST)