Difference between revisions of "LibraryDisplayLandScreenshot"
Jump to navigation
Jump to search
m (<lsl> tag to <source>) |
|||
(3 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
--[[User:Jon Desmoulins|Jon Desmoulins]] 17:49, 16 February 2010 (UTC) | --[[User:Jon Desmoulins|Jon Desmoulins]] 17:49, 16 February 2010 (UTC) | ||
NOTE: Your location has to be in the search for this to work. Also, it may take some time for your location to appear in search if you just checked the "Show in Search" button in your land settings. (I forget the cache time) | NOTE: <s>Your location has to be in the search for this to work. (this limitation appears to have been removed.) Also, it may take some time for your location to appear in search if you just checked the "Show in Search" button in your land settings. (I forget the cache time)</s> (this limitation appears to have been removed, but there can still be delays for pages to update.) | ||
Edits: | Edits: | ||
2/19/2010 - Erased my own land's key from the code, forgot to omit this on submission. | *2/19/2010 - Erased my own land's key from the code, forgot to omit this on submission. | ||
*10/4/2010 (Cerise) - whacked a typo and shuffled some deck chairs | |||
< | <source lang="lsl2">// Credit goes to Jana Kamachi/Solar Alter | ||
// Credit goes to Jana Kamachi/Solar Alter | |||
// for discovering this concept first | // for discovering this concept first | ||
// and taking it beyond just displaying the profile picture | // and taking it beyond just displaying the profile picture | ||
Line 14: | Line 14: | ||
// and https://wiki.secondlife.com/wiki/User:Jana_Kamachi/Profile | // and https://wiki.secondlife.com/wiki/User:Jana_Kamachi/Profile | ||
// for further information | // for further information | ||
/* | /* | ||
Modified by Jon Desmoulins to use the new PARCEL_DETAILS_ID | Modified by Jon Desmoulins to use the new PARCEL_DETAILS_ID | ||
to fetch the image that displays on the world.secondlife.com pages | to fetch the image that displays on the world.secondlife.com pages | ||
It's a little hacky, but it works. | It's a little hacky, but it works. | ||
*/ | */ | ||
string | string gLandUrl = "http://world.secondlife.com/place/"; //Base URL for world search | ||
string gMetaTag = "<meta name=\"imageid\" content=\""; // tag that will contain the texture UUID | |||
integer gMetaTagLength; | |||
ResetTextures() | |||
{ | |||
llSetTexture(TEXTURE_BLANK, ALL_SIDES); | |||
} | |||
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
ResetTextures(); | |||
gMetaTagLength = llStringLength(gMetaTag); | |||
} | } | ||
touch_start(integer num_detected) | touch_start(integer num_detected) | ||
{ | { | ||
string requestUrl = gLandUrl + (string)llList2Key(llGetParcelDetails(llGetPos(), [PARCEL_DETAILS_ID]), 0); | |||
llHTTPRequest( | llOwnerSay(requestUrl); | ||
llHTTPRequest(requestUrl, [], ""); | |||
} | } | ||
on_rez(integer start_param) | on_rez(integer start_param) | ||
{ | { | ||
ResetTextures(); | |||
} | } | ||
http_response(key request_id,integer status, list metadata, string body) | http_response(key request_id,integer status, list metadata, string body) | ||
{ | { | ||
if (status == 200) | |||
if ( | |||
{ | { | ||
// Find starting point of the land picture UUID | // Find starting point of the land picture UUID | ||
integer | integer uuidStart = llSubStringIndex(body, gMetaTag) + gMetaTagLength; | ||
// | // Say something if meta tag is missing (format change, page creation broke, etc.) | ||
if (uuidStart < gMetaTagLength) | |||
// Parse out land UUID from the body | { | ||
llOwnerSay("Parcel page not in expected format"); | |||
ResetTextures(); | |||
} | |||
else | |||
{ | |||
// Parse out land UUID from the body | |||
string parcelImage = llGetSubString(body, uuidStart, uuidStart + 35); | |||
// If the parcel has no picture the image will be NULL_KEY or "". | |||
if ((llGetSubString(parcelImage, 0, 0) == "\"") || (parcelImage == NULL_KEY)) { | |||
llOwnerSay("No image for this parcel"); // Tell the avatar they have no picture | |||
ResetTextures(); | |||
} | |||
else | |||
{ | |||
llOwnerSay("Found parcel image " + parcelImage); | |||
llSetTexture(parcelImage, ALL_SIDES); | |||
} | |||
} | |||
} | } | ||
else | else | ||
{ | { | ||
llOwnerSay("Could not retrieve parcel page"); | |||
ResetTextures(); | |||
} | } | ||
} | } | ||
} | }</source> | ||
</ |
Latest revision as of 22:21, 24 January 2015
This is nothing special, but it gets the job done. :) --Jon Desmoulins 17:49, 16 February 2010 (UTC)
NOTE: Your location has to be in the search for this to work. (this limitation appears to have been removed.) Also, it may take some time for your location to appear in search if you just checked the "Show in Search" button in your land settings. (I forget the cache time) (this limitation appears to have been removed, but there can still be delays for pages to update.)
Edits:
- 2/19/2010 - Erased my own land's key from the code, forgot to omit this on submission.
- 10/4/2010 (Cerise) - whacked a typo and shuffled some deck chairs
// Credit goes to Jana Kamachi/Solar Alter
// for discovering this concept first
// and taking it beyond just displaying the profile picture
// see http://forums.secondlife.com/showthread.php?t=225460
// and https://wiki.secondlife.com/wiki/User:Jana_Kamachi/Profile
// for further information
/*
Modified by Jon Desmoulins to use the new PARCEL_DETAILS_ID
to fetch the image that displays on the world.secondlife.com pages
It's a little hacky, but it works.
*/
string gLandUrl = "http://world.secondlife.com/place/"; //Base URL for world search
string gMetaTag = "<meta name=\"imageid\" content=\""; // tag that will contain the texture UUID
integer gMetaTagLength;
ResetTextures()
{
llSetTexture(TEXTURE_BLANK, ALL_SIDES);
}
default
{
state_entry()
{
ResetTextures();
gMetaTagLength = llStringLength(gMetaTag);
}
touch_start(integer num_detected)
{
string requestUrl = gLandUrl + (string)llList2Key(llGetParcelDetails(llGetPos(), [PARCEL_DETAILS_ID]), 0);
llOwnerSay(requestUrl);
llHTTPRequest(requestUrl, [], "");
}
on_rez(integer start_param)
{
ResetTextures();
}
http_response(key request_id,integer status, list metadata, string body)
{
if (status == 200)
{
// Find starting point of the land picture UUID
integer uuidStart = llSubStringIndex(body, gMetaTag) + gMetaTagLength;
// Say something if meta tag is missing (format change, page creation broke, etc.)
if (uuidStart < gMetaTagLength)
{
llOwnerSay("Parcel page not in expected format");
ResetTextures();
}
else
{
// Parse out land UUID from the body
string parcelImage = llGetSubString(body, uuidStart, uuidStart + 35);
// If the parcel has no picture the image will be NULL_KEY or "".
if ((llGetSubString(parcelImage, 0, 0) == "\"") || (parcelImage == NULL_KEY)) {
llOwnerSay("No image for this parcel"); // Tell the avatar they have no picture
ResetTextures();
}
else
{
llOwnerSay("Found parcel image " + parcelImage);
llSetTexture(parcelImage, ALL_SIDES);
}
}
}
else
{
llOwnerSay("Could not retrieve parcel page");
ResetTextures();
}
}
}