Keyboard Shortcuts
Likes
Search
Re: wxlua frame
开云体育Hi Brian, ? Below is the code I have running at this time it works form the MDI right loads the dialog when I run the m6 script and I can exit it fine.. ? But when I run it in the g code the dialog runs fine but I get two copies if the dialog on the screen it seems to still be running ok no error’s and I can close both dialogs out with no errors I know the code looks like crap but I’m not a programmer but did get it to work in the g code with no errors so that’s a start for me. Any suggestions as to why it runs fine called from the MDI, but then displays 2 dialog boxes when called from the g code file?. ? Thanks Gary ? ----this is in the m6 macro ? function m6() ? local inst = mc.mcGetInstance("M6 Toolchange") ? local tchangeReg = mc.mcRegGetHandle(inst,"gRegs0/ATC/ToolDialog") local rc = mc.mcRegSetValueString(tchangeReg,"ShowTchangeDlg") ? ? -- Code to wait for the dialog to end while(mc.mcRegGetValueString(tchangeReg) == "ShowTchangeDlg") do ??? wx.wxMilliSleep(500) -- May want to add some code here in the event someone presses stop or kills the program end mc.mcRegSetValueString(tchangeReg, "NoTchangeDig") local ReturnValue = mc.mcRegGetValueString(tchangeReg) ? end ? ? ---this is it the screen load script ? ------ Tool change Dialog ------------------------ function ToolChangeDia() local wx = require("wx") ??????????????? --inst = mc.mcGetInstance() ??????????????? local tchangeReg = mc.mcRegGetHandle(inst,"gRegs0/ATC/ToolDialog") ??????????????? local function ManualEvent(event) ??? coroutine.wrap(function() ??????? -- code for button 1 event ??????????????????????????????? Manual() ??? end)() end ? local function ManualTouchEvent(event) ??? coroutine.wrap(function() ??????? -- code for button 2 event ??????????????????????????????? ManualTouch() ??? end)() end ? local function ManualProbeEvent(event) ??? coroutine.wrap(function() ??????? -- code for button 3 event ??????????????????????????????? ManualProbe() ??? end)() end ? local function AbortEvent(event, frame) ??? coroutine.wrap(function() ??? Abort() ??????????????? --mc.mcRegSetValueString(M6reg,"0") ??? frame:Destroy() ??????? -- code for button 4 event ??? end)() end ? local function main() ??? -- Create a new frame ??? local frame = wx.wxFrame(wx.NULL, wx.wxID_ANY, "My Frame", ??????????????????????????? wx.wxDefaultPosition, wx.wxSize(340, 400)) ? ??? -- Create Text above each button ??? local text1 = wx.wxStaticText(frame, wx.wxID_ANY, "Manual Button:\nTool must be in the Tool Table and offset set Swap tool out then Press Manual", ??????????????????????????????? wx.wxPoint(20, 10), wx.wxSize(150, 100)) ??? local text2 = wx.wxStaticText(frame, wx.wxID_ANY, "Manual Touch:\nSwap tool out then Jog Z down to part surface use a feeler gauge, then Press Manual Touch", ???????????????? ???????????????wx.wxPoint(20, 70), wx.wxSize(150, 100)) ??? local text3 = wx.wxStaticText(frame, wx.wxID_ANY, "Manual Probe:\nSwap tool out then put your touch off plate on top of part, Z will move down to above part surface and probe part, After Pressing Manual Touch", ??????????????????????????????? wx.wxPoint(20, 150), wx.wxSize(150, 100)) ??? local text4 = wx.wxStaticText(frame, wx.wxID_ANY, "Abort:\nPress abort only if you cannot do a tool swap it will exit and also will disable the machine stop all code from running", ??????????????????????????????? wx.wxPoint(20, 260), wx.wxSize(150, 100)) ? ??? -- Create buttons ??? local Manual = wx.wxButton(frame, wx.wxID_ANY, "Manual", ??????????????????????????????? wx.wxPoint(200, 20), wx.wxSize(100, 30)) ??? local ManualTouch = wx.wxButton(frame, wx.wxID_ANY, "Manual Touch", ??????????????????????????????? wx.wxPoint(200, 90), wx.wxSize(100, 30)) ??? local ManualProbe = wx.wxButton(frame, wx.wxID_ANY, "Manual Probe", ??????????????????????????????? wx.wxPoint(200, 180), wx.wxSize(100, 30)) ??? local Abort = wx.wxButton(frame, wx.wxID_ANY, "Abort", ??????????????????????????????? wx.wxPoint(200, 280), wx.wxSize(100, 30)) ? ??? -- Connect button events ??? Manual:Connect(wx.wxEVT_COMMAND_BUTTON_CLICKED, ManualEvent) ??? ManualTouch:Connect(wx.wxEVT_COMMAND_BUTTON_CLICKED, ManualTouchEvent) ??? ManualProbe:Connect(wx.wxEVT_COMMAND_BUTTON_CLICKED, ManualProbeEvent) ??? Abort:Connect(wx.wxEVT_COMMAND_BUTTON_CLICKED, function(event) AbortEvent(event, frame) end) ? -- Show the frame frame:Show(true) end ? local co = coroutine.wrap(main) co() -- start the coroutine mc.mcRegSetValueString(tchangeReg, "NoTchangeDig") function Manual() --frame:Destroy() wx.wxMessageBox("Manual") end ? function ManualTouch() --frame:Destroy() wx.wxMessageBox("Manual Touch off") end ? function ManualProbe() --frame:Destroy() wx.wxMessageBox("Manual Probe") end ? function Abort() --frame:Destroy() wx.wxMessageBox("Abort") mc.mcRegSetValueString(tchangeReg, "NoTchangeDig") end --wx.wxGetApp():MainLoop() mc.mcRegSetValueString(tchangeReg, "NoTchangeDig") return nul end ? ? ---this is in the PLC ? ----tool change dialog---- local inst = mc.mcGetInstance("M6 Toolchange Dialog") toolchangeReg = mc.mcRegGetHandle(inst,"gRegs0/ATC/ToolDialog") if ( mc.mcRegGetValueString(toolchangeReg) == "ShowTchangeDlg" ) then?? -- put the handle to the toolchange Osig in the global table ????toolchangeActiveReg = mc.mcSignalGetHandle(inst,mc.OSIG_TOOL_CHANGE) end --if ( toolchangeReg == nul ) then --end --else ? if ( mc.mcRegGetValueString(toolchangeReg) == "ShowTchangeDlg" and mc.mcSignalGetState( toolchangeActiveReg ) == 1 ) then ??? dlghandle = ToolChangeDia() -- Remember to pass back something from the dialog so we know it has been done ? elseif ( mc.mcRegGetValueString( toolchangeReg ) ~= "ShowTchangeDlg" ) then ????????dlghandle = nil-- kill the dialog so the garbage collector can get it back ? end ? ? Sent from for Windows ? From: Brian Barker
Sent: Monday, January 30, 2023 8:47 AM To: [email protected] Subject: Re: [MachCNC] wxlua frame ? Hi Gary, Sorry I was coaching robotics and had a comp this weekend so I was flat out :) The good news is that I had 2 more teems qualify for states! Okay back to work!? ? We don't have any real library for semaphores, it's really telling you how you need to architect the system. Let me see if I can make something to show you how I would do it in a screen. But basically we don't allow graphics in the Macro's (Mostly because we didn't see the need and I think this is still the best). How you communicate to the macro's is through registers. The registers are the only way to have thread safe data in Lua to the rest of the system. Having graphics in the Mcodes could and would put the events into the macro's / Gcode thread and we REALLY don't want that! By communicating via registers it will allow you to have your dialog and not have the Gcode interpreter thread plugged up with graphics. ? Now onto the solution! ? You need to setup a register in the register conifig dialog: Mine is at the following path "iRegs0/ToolSettings" ? So in my M6 macro I would put the following: local inst = mc.mcGetInstance("M6 Toolchange") ? ? Now in the screen you can put your dialog in a function and check to see if you need to launch it in the PLC script :
? ? This is all untested and 100% can be changed but I think it clearly shows how I would do it :) ? Hope that helps! ______________________________ ? Brian Barker Engineering / Development ArtSoft | Newfangled Solutions Livermore Falls, Maine (USA) Webpage: On 1/27/2023 9:38 AM, Gary wrote:
? |