of     4   
chevron_rightchevron_rightchevron_right

TheScriptAdventurer
#123295110Friday, January 17, 2014 12:50 AM GMT

Ok, once a upon a time, 5.1 was the latest Lua version. That has changed. Indeed, Lua has changed considerably: * Now yieldable pcall AND metamethods built in, instead of having to use the hackish ypcall! * New library for bit operations BUILT in! Now that we can use the Internet in-game, and we might send sensitive data in such communications (such as signing into an account for some service in-game), we could use such a thing to create stuff like AES encryption implementations to encrypt such sensitive data! * gotos! I just like them personally :). What is NOT to love?! Why not switch? If you want to, you can show your support by saying "I support this" on this thread.
appropriations
#123295876Friday, January 17, 2014 12:59 AM GMT

But no newproxy() :( Keyboard not found. Press F1 to continue.
TheScriptAdventurer
#123297830Friday, January 17, 2014 1:23 AM GMT

What IS the use of newproxy though? It just gives you an empty userdata with no predefined metamethods (except comparison I think, which is just worthless for anything but references)
MettaurSp
#123299045Friday, January 17, 2014 1:35 AM GMT

You can use getmetatable on it to gain a metatable and make it useful.
TheScriptAdventurer
#123299378Friday, January 17, 2014 1:39 AM GMT

just use a table in that case. Plus, I want to make an encryption module, and the lack of a bit manipulation module impedes that.
[rfa#hidefromsearch]
#123301975Friday, January 17, 2014 2:06 AM GMT

[rfa#hidefromsearch]
dogwarrior24
#123302062Friday, January 17, 2014 2:07 AM GMT

no.
cntkillme
#123304485Friday, January 17, 2014 2:33 AM GMT

newproxy is overrated, in most cases (well, all that I can think of) it could literally be replaced with a table
MettaurSp
#123305700Friday, January 17, 2014 2:47 AM GMT

rawset can ruin the point of using a table instead. newproxy would be better for when you want to create an object with tighter security (in my opinion).
TheLuaWeaver
#123306511Friday, January 17, 2014 2:56 AM GMT

Also, the fact that __index will only fire if the index is nil on a table = bad is some cases, especially where users are expected to use rawset. "Use a proxy!", you might say. But then you have two resources, and one resource might be freed while the other is still referenced, so that one is now leaked, = bad. newproxy can solve these problems. Also, in Lua 5.2, we can't do as nice sandboxing because of fenv setup changes, = bad. Sure, Lua 5.2 is good, but I do personally prefer 5.1. ~LuaWeaver; Programmer, gamer, developer.
cntkillme
#123306588Friday, January 17, 2014 2:57 AM GMT

Now that you say it that way
dogwarrior24
#123308008Friday, January 17, 2014 3:15 AM GMT

Its not that simple to switch to Lua 5.2
Alyte
#123329930Friday, January 17, 2014 4:21 PM GMT

I don't like 5.2
Notunknown99
#123330083Friday, January 17, 2014 4:24 PM GMT

Right, from what I have heard about Lua (Probably not that much) I dont see why they cannot simply take components from the current Lua version and plug them into Lua 5.2/5.3, then simply say "Deprecated (Do not use for new work)". Or simply remove them all together. Its not like they have not broken stuff before...
Prehistoricman
#123336168Friday, January 17, 2014 6:52 PM GMT

Because Lua does not come in parts.
Notunknown99
#123336503Friday, January 17, 2014 7:00 PM GMT

I thought it did, or something similar, which is why we have Instances and the Roblox Specific Functions and other things like that.
Notunknown99
#123336538Friday, January 17, 2014 7:00 PM GMT

And also why some of the default functions are excluded (os is one, I think there is a second)
dogwarrior24
#123341381Friday, January 17, 2014 8:38 PM GMT

And what if some of the lua source code uses newproxy?
jode6543
#123342651Friday, January 17, 2014 8:56 PM GMT

GOTO is evil; never use it. Anyways, the bit library is probably the feature that I'd like access to the most, but Roblox could just make their own C-side implementation of it instead of doing a total conversion to Lua 5.2. ~Jode
lordrambo
#123345247Friday, January 17, 2014 9:32 PM GMT

I feel like if ROBLOX ever updates to 5.2 then 5.3 will come out like few months after. I asked this a long time ago, but forgot the answer if I was even given one. Does anyone know the ETA for 5.3?
suremark
#123347983Friday, January 17, 2014 10:05 PM GMT

I don't like GOTO statements, but regardless of my own opinion, GOTO will facilitate the developing of bad habits in newbie scripters. It will turn code into spaghetti.
bohdan77
#123348653Friday, January 17, 2014 10:13 PM GMT

lordrambo From what i've seen, there's only about one new feature in 5.3. Following from their release schedule, i'm going to assume it's going to be released in several years.
suremark
#123349470Friday, January 17, 2014 10:23 PM GMT

^ Lol
lordrambo
#123349996Friday, January 17, 2014 10:30 PM GMT

@bohdan77 I'm sure there's going to be more than integer support in Lua 5.3 (assuming that's what you're talking about).
TheScriptAdventurer
#123740091Wednesday, January 22, 2014 2:16 AM GMT

I know it is late to talk about anything on this thread, but I want to reply to some objections. "newproxy has some uses!" First off, why would we in the context of Riblox EVER need to fake indexes in a table?! If you want to use the index metamethod to do some extra computation on the side whenever a certain index is used, why can't you use a get method instead?! It is just unnecessary in this context. "Can't we just add a bit manipulation library instead of upgrading? After all, upgrading is hard work." It is not. You would probably just need to replace the lua section part of the Roblox project file (I imagine that Roblox is a just a big project file they compile, but they might use different methods) if they put lua into its own section (which they should have as professional devs). "Gotos are evil!" That is if you use it as your primary form of control transfer. But, a label must be in scope, and it is not visible to nested functions to work, which helps to prevent spaghetti code. Plus, gotos can be used as a kind of exception mechanism. Feel free to challenge me. You might even change my mind if you are persuasive.

    of     4   
chevron_rightchevron_rightchevron_right