Mercurial > wow > cyborg-mmo7
view RatPageController.lua @ 4:d186f8cd5000
Renamed functions to avoid conflicts
author | madcatzinc@35b17cf1-18cd-47ff-9ca3-31d6b526ef09 |
---|---|
date | Mon, 28 May 2012 15:54:52 +0000 |
parents | bf9220814fb5 |
children | 6cb9a2936580 |
line wrap: on
line source
--~ Warcraft Plugin for Cyborg MMO7 --~ Filename: RatPageController.lua --~ Description: Controller logic for the RatPage --~ Copyright (C) 2012 Mad Catz Inc. --~ Author: Christopher Hooks --~ This program is free software; you can redistribute it and/or --~ modify it under the terms of the GNU General Public License --~ as published by the Free Software Foundation; either version 2 --~ of the License, or (at your option) any later version. --~ This program is distributed in the hope that it will be useful, --~ but WITHOUT ANY WARRANTY; without even the implied warranty of --~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --~ GNU General Public License for more details. --~ You should have received a copy of the GNU General Public License --~ along with this program; if not, write to the Free Software --~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. CyborgMMO_RatPageController = { new = function() local self = {}; CyborgMMO_RatPageModel.Instance().SetMode(1); self.SlotClicked = function(slot) local slotObject = nil slotObject = CyborgMMO_RatPageModel.Instance().GetObjectOnButton(slot.Id) CyborgMMO_RatPageModel.Instance().SetObjectOnButton(slot.Id, CyborgMMO_RatPageModel.Instance().GetMode(), self.GetCursorObject()); if(slotObject ~= nil) then slotObject.Pickup(); end end self.ModeClicked = function(mode) msg("Setting mode "..tostring(mode.Id)); CyborgMMO_RatPageModel.Instance().SetMode(mode.Id); end self.GetCursorObject = function() local cursorObject = nil; if(nil ~= GetCursorInfo()) then local type, detail, subdetail = GetCursorInfo(); cursorObject = CyborgMMO_WowObject.Create(type, detail, subdetail); ClearCursor(); end return cursorObject; end self.CallbackDropped = function(callbackObject) local slot = nil; local observers = CyborgMMO_RatPageModel.Instance().GetAllObservers(); for i = 1, (# observers) do if(MouseIsOver(observers[i])) then slot = observers[i]; break; end end if(nil ~= slot) then CyborgMMO_RatPageModel.Instance().SetObjectOnButton(slot.Id, CyborgMMO_RatPageModel.Instance().GetMode(), callbackObject.wowObject); end end self.Close = function() end self.Open = function() end return self; end, m_Instance = nil, Instance = function() if(nil == CyborgMMO_RatPageController.m_Instance) then CyborgMMO_RatPageController.m_Instance = CyborgMMO_RatPageController.new(); end return CyborgMMO_RatPageController.m_Instance; end }