LSL Protocol/ListMessage

From Second Life Wiki
< LSL Protocol
Revision as of 21:22, 10 October 2007 by Ppaatt Lynagh (talk | contribs) (suggest a way of encoding lists, non-lists, non-results, verb-not-found, and partially evaluated Polish expressions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Back to Protocol page

List Message Protocol

(Proposed) (Draft, not implemented) (Open for comments)

When we solve problems like interpreting an LSL expression a la Chatbot, ...

We then work with results of any non-list type, also results of list type, also parameter lists that include lists as entries, also the results of verbs that return no results, also the result that is failing to make sense of an unintelligible unknown verb.

I guess we want llMessageLinked to pass such things to link_message, so that we can divide the work of interpretation across indefinitely many scripts.

I guess we want to invent some way of escaping such things: (a) some perfectly reversible way to encode such things as a list we can pass around a script, and (b) some perfectly reversible way of encoding a list as a string.

[] = unknown verb

[ "<>" ] = the result of a verb that returns no result

[ 0... ] = float or integer result
[ "\"...\"" ] = key or string result, may be empty = encoded simply as "\"" + ([[lEscapeURL]](string) + "\""
[ "<...>" ] = rot or vector

[ "[", ..., "]" ] = list, may be empty

[ "(", ..., ")" ] = partially evaluated Polish expression = list of verb with zero or more args, may be nested in the sense of args may be lists