Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Checking if variable has changed inside class without loops?

Asked by 8 years ago
Edited 8 years ago

So i have this Player class in module script:

01local module = {}
02 
03function module.new()
04    local obj = {}
05    obj.Name = 'Player1'   
06 
07    obj.eChanged = Instance.new('BindableEvent')
08    obj.Changed = obj.eChanged
09    return obj 
10end
11 
12return module

The problem is i want to detect change in class if i change any property, "Name" for example. Now you would say i could use SetFunctions() , example SetName() and then fire the bindable event inside class but i would like to detect change through metatables instead and let metamethod fire the Bindable Event but i ran into problems, heres example code:

01local ScriptService = game:GetService('ServerScriptService')
02local Player = require(ScriptService:WaitForChild('Player'))
03 
04 
05local player = Player.new()
06 
07setmetatable(player,{
08__newindex = function(tbl,key,val)
09print('Detected change on property and returning property'..key)
10tbl.Changed:Fire(key,val)
11 
12 
13player.Changed.Event:connect(function(property, val)
14    print('Detetected change on property: '..tostring(property)..' '..val)
15    --do stuff here
View all 24 lines...

Quick Points 1)If Player.Name is set to something other than nil already in player class and then i change player.Name to some other string the __newindex doesn't fire, why?

2)If Player.Name is set to nil by default in player class and then change the player.Name to string then it fires but only once and doesn't detect new change after that anymore.

Is it even possible to create this detect variable change in class system without loops , or do i have to fire the Change event myself through SetFunctions etc.. everytime i change property?

1 answer

Log in to vote
0
Answered by 8 years ago

Never mind i found solution to my problem by looking at roblox new chat system code

Example code what i was looking for:

01local module = {}
02 
03 
04local ChangedEvent = Instance.new("BindableEvent")
05 
06local proxyTable = setmetatable({},
07{
08    __index = function(tbl, index)
09        return module[index]
10    end,
11    __newindex = function(tbl, index, value)
12        module[index] = value
13        ChangedEvent:Fire(index, value)
14    end,
15})
16 
17rawset(proxyTable, "SettingsChanged", ChangedEvent.Event)
Ad

Answer this question