<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/lslplus/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/lslplus/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 20 Sep 2010 10:17:07 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/lslplus/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Update to use structured text editor</title><link>https://sourceforge.net/p/lslplus/feature-requests/39/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In the new Eclipse Helios release there is a more formal structured text editor which seems to standardise a lot of features across different languages, including better handling of all types of brackets, formatting, text-encoding, and also access to the tasks feature.&lt;/p&gt;
&lt;p&gt;If LSL Plus could be updated to use structured text editors then it should allow it to take advantage of a number of neat features without needing to do any of the grunt work.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Haravikk</dc:creator><pubDate>Mon, 20 Sep 2010 10:17:07 -0000</pubDate><guid>https://sourceforge.neta5a0c8c4679198b8ccc03de391ba11cc66a13a8b</guid></item><item><title>Add support for packages</title><link>https://sourceforge.net/p/lslplus/feature-requests/38/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Fairly simple, but it'd be nice to be able to mimic packages and have the LSL view implement the same behaviours for displaying packages more neatly rather than as a stack of nested folders.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Haravikk</dc:creator><pubDate>Sun, 19 Sep 2010 12:10:38 -0000</pubDate><guid>https://sourceforge.net4e3d78856912b97589977042544215fc81578d17</guid></item><item><title>Native Java engine</title><link>https://sourceforge.net/p/lslplus/feature-requests/37/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Fairly simply this is a proposal to replace the Haskell engine with a native Java one for maximum compatibility across platforms and removing the need for the extra build stage. I realise that Haskell is quite concise, but it seems there are few advantages to using it when a native Java component could offer greater performance and take advantage of more of the compilation/processing features of Eclipse to avoid overly long delays etc.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Haravikk</dc:creator><pubDate>Sun, 19 Sep 2010 12:09:39 -0000</pubDate><guid>https://sourceforge.net4c6fbafc0b7376dc4aa9d6a16fa07760ca46c13b</guid></item><item><title>break and continue</title><link>https://sourceforge.net/p/lslplus/feature-requests/36/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It would be cool if you could make the compiler translate break and continue statements into the appropriate jumps.  It would clean up a lot of "jump break01;" and "jump continue01;" mess, lol.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 08 Jan 2010 13:32:13 -0000</pubDate><guid>https://sourceforge.net5e8d96b5ddbfe68f3c39d912ee4a202e509551ba</guid></item><item><title>Pass comments toggle for options.</title><link>https://sourceforge.net/p/lslplus/feature-requests/35/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;While using LSLP, I am very much against is behaviour where it strips out large numbers of my comments - even when I'm not using the optimizer, it seems to strip out comments inside all imported functions and inside all states.&lt;/p&gt;
&lt;p&gt;Please add a toggle to the options/preferences to switch off this behaviour, and pass all comments through to the generated code. Thank you.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 15 Oct 2009 17:49:40 -0000</pubDate><guid>https://sourceforge.netfc3328d8fc705c433a1351261eb61cf5f90bad24</guid></item><item><title>Support for .lsl files without .lslp</title><link>https://sourceforge.net/p/lslplus/feature-requests/34/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Currently, lslplus thinks of .lsl files only as of .lslp counterparts. By opening .lsl files in the same editor as .lslp files (meaning coloring and code assist), it would be possible to have .lsl files without .lslp files and .lslp extensions, thus allowing to avoid code duplication when it's not needed.&lt;/p&gt;
&lt;p&gt;I suppose this would also mean that "This file is derived. Do you really want to edit it?" would have to be tweaked to show only if edited .lsl file has .lslp counterpart.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Domagoj Klepac</dc:creator><pubDate>Sun, 20 Sep 2009 21:05:20 -0000</pubDate><guid>https://sourceforge.netd8411fd240d659071477c2144e90514b8ccbd86d</guid></item><item><title>String Constant Folding</title><link>https://sourceforge.net/p/lslplus/feature-requests/33/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Would be nice if strings were also considered for folding.&lt;/p&gt;
&lt;p&gt;Example:&lt;/p&gt;
&lt;p&gt;string FOO = "bar";&lt;br /&gt;
default {&lt;br /&gt;
state_entry() {&lt;br /&gt;
llOwnerSay(FOO);&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;would then optimize to:&lt;/p&gt;
&lt;p&gt;default {&lt;br /&gt;
state_entry() {&lt;br /&gt;
llOwnerSay("bar");&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">IcyNeko</dc:creator><pubDate>Sun, 06 Sep 2009 18:14:51 -0000</pubDate><guid>https://sourceforge.netd9781b4ccab7c07469797455c4a4e9086871f627</guid></item><item><title>Joining constants</title><link>https://sourceforge.net/p/lslplus/feature-requests/32/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Fairly simple in theory, but possibly complex in practise. The idea here is that if several constants are concatenated (as can happen as a result of the optimisation process), then it may be worth joining these together. &lt;/p&gt;
&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;string getLabel(integer v) { return llList2String(["Label1", "Label2", "Label3"], v);&lt;/p&gt;
&lt;p&gt;default {&lt;br /&gt;
state_entry() {&lt;br /&gt;
llOwnerSay("[" + getLabel(2) + "] " + (string)llGetFreeMemory());&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;This will result in the state_entry() becoming:&lt;/p&gt;
&lt;p&gt;llOwnerSay("[" + "Label3" + "] " + (string)llGetFreeMemory());&lt;/p&gt;
&lt;p&gt;This isn't really ideal, as it should become:&lt;/p&gt;
&lt;p&gt;llOwnerSay("[Label3] " + (string)llGetFreeMemory());&lt;/p&gt;
&lt;p&gt;As this will be more efficient. However, it'll require a table of possible optimisations, as in some cases it is more efficient (on memory) to concatenate two common strings, rather than storing the concatenated form ready-made, which is where things get a bit complicated.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Haravikk</dc:creator><pubDate>Thu, 16 Jul 2009 12:05:14 -0000</pubDate><guid>https://sourceforge.netcdf339a403b395f6691deb22f1e3a4fe76ca9e76</guid></item><item><title>Fully eliminate redundant functions</title><link>https://sourceforge.net/p/lslplus/feature-requests/31/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Currently LSL plus won't full eliminate traces of a function whose contents are removed.&lt;/p&gt;
&lt;p&gt;If you have the following function:&lt;/p&gt;
&lt;p&gt;// pragma inline&lt;br /&gt;
function debug(string s, integer debug) {&lt;br /&gt;
if (debug) llOwnerSay(s);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Using it in the following simplified code:&lt;/p&gt;
&lt;p&gt;integer DEBUG() { return TRUE; }&lt;/p&gt;
&lt;p&gt;default {&lt;br /&gt;
state_entry() {&lt;br /&gt;
debug("Script started", DEBUG());&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;If you leave DEBUG() as TRUE, then you get the expected results whereby debug() is replaced by:&lt;/p&gt;
&lt;p&gt;string s = "Script started";&lt;br /&gt;
llOwnerSay(s);&lt;/p&gt;
&lt;p&gt;This could be further optimised (replace references to s) but that's another issue. However, if you set DEBUG() to FALSE, then the following code is produced:&lt;/p&gt;
&lt;p&gt;string s = "Script started";&lt;/p&gt;
&lt;p&gt;This isn't desirable, as it seems to actually make it through the compile process in Mono to take up memory, even though it's never used anywhere. In cases such as these LSL plus should be able to identify that a variable it created for inlining is never used, and eliminate it.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Haravikk</dc:creator><pubDate>Thu, 16 Jul 2009 11:23:57 -0000</pubDate><guid>https://sourceforge.net373785b7ed06f5fae6b5831927184f12be9c53b3</guid></item><item><title>Report unused variables/functions</title><link>https://sourceforge.net/p/lslplus/feature-requests/30/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Quite simply; any variables or functions ignored by LSL plus due to never being used, should appear as warnings in Eclipse. It would be cool if this could also work correctly across modules to highlight functions that none of your scripts are using, but this could get complicated.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Haravikk</dc:creator><pubDate>Sun, 05 Jul 2009 16:35:27 -0000</pubDate><guid>https://sourceforge.netf725f81e3bec0f7b5c318765a60d688ee4fecd4a</guid></item></channel></rss>