Jump to content




Windows or Objects?



17 replies to this topic

#1 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 27 February 2017 - 01:38 AM

Hey!

So I've come to the crossroads between writing a script to draw objects on a screen or just using windows and drawing things in those instead.

By drawing objects on a screen I mean drawing things like buttons with text etc. I know you can do this with windows but would that decrease performance significantly if I used multiple windows for different buttons/menus etc.?

I want to create windows that have other programs running in them as well (like creating multiple instances of shells), so that'll be happening in the background separately from the other objects or 'object windows'.

With the windows API I could draw things in the window a bit easier (and also harder because I have to create functions to calculate the actual cursor position within the active window) and I could run multiple windows doing different things 'in parallel' as well.

What do you think? Pros and cons wise I reckon sticking with objects is better and having the other windows acting as program-runners, but what are your thoughts?

#2 KingofGamesYami

  • Members
  • 3,002 posts
  • LocationUnited States of America

Posted 27 February 2017 - 02:15 AM

If you're talking about creating a new window object for every single button or element, DON'T. That's not how it should be used and there is no benefit to doing so. In fact, there are several downsides.

Now, obviously you would need a window to restrict other program's access to the screen if you're trying to do what I think you're trying to do, which is the intended use of the window API and therefore appropriate.

#3 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 27 February 2017 - 05:47 AM

View PostKingofGamesYami, on 27 February 2017 - 02:15 AM, said:

If you're talking about creating a new window object for every single button or element, DON'T. That's not how it should be used and there is no benefit to doing so. In fact, there are several downsides.

Now, obviously you would need a window to restrict other program's access to the screen if you're trying to do what I think you're trying to do, which is the intended use of the window API and therefore appropriate.

Yeah, I didn't think it would be wise. At the moment I just have some OOP coding that draws objects (tables of data values - x,y,w,h,colour,label etc.) which works fine. :)

Yes, I will be using the windows API for all that, don't you worry ;)

#4 Exerro

  • Members
  • 801 posts

Posted 27 February 2017 - 03:11 PM

View PostKingofGamesYami, on 27 February 2017 - 02:15 AM, said:

If you're talking about creating a new window object for every single button or element, DON'T. That's not how it should be used and there is no benefit to doing so. In fact, there are several downsides.

Windows aren't particularly efficient at rendering, but if you have a nested structure of elements and you only draw changes, the caching can actually give you a bit of a performance gain. That being said, I've never used windows myself, just self-written buffer libraries, so they might've been more optimised for drawing in this style.

Have you considered using a GUI framework? They're generally pretty good at drawing buttons and stuff. I know Titanium handles buttons and windows.

#5 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 28 February 2017 - 03:27 AM

View PostExerro, on 27 February 2017 - 03:11 PM, said:

View PostKingofGamesYami, on 27 February 2017 - 02:15 AM, said:

If you're talking about creating a new window object for every single button or element, DON'T. That's not how it should be used and there is no benefit to doing so. In fact, there are several downsides.

Windows aren't particularly efficient at rendering, but if you have a nested structure of elements and you only draw changes, the caching can actually give you a bit of a performance gain. That being said, I've never used windows myself, just self-written buffer libraries, so they might've been more optimised for drawing in this style.

Have you considered using a GUI framework? They're generally pretty good at drawing buttons and stuff. I know Titanium handles buttons and windows.

Yeah my code is made to only draw changes, except every 30 seconds it buffers anyway just to refresh anything in the background (notifications or whatever). I changed it from 10 seconds because the flickering got a little annoying. :P

Using a GUI framework is just boring in my eyes to be honest. It's like more than half your coding is gone. No fun at all :(
I find it is far more interesting making your own that suits what you are designing.

#6 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 28 February 2017 - 05:54 AM

Hey,

Yes, another question!

Can someone show me an example of how I would create multiple windows (that are draggable, meaning I should be able to click in other places on the screen and interact with other things on the screen - not just the windows) that can run their own programs independent of each other?

E.g. 2 separate windows each running their own shell and I can swap between them and do other stuff as well.

The windows I am thinking of can be infinite basically (store data in a table).

Thanks.

#7 Dog

  • Members
  • 1,179 posts
  • LocationEarth orbit

Posted 28 February 2017 - 06:10 AM

The best example I can think of would be Lyqyd OS

#8 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 28 February 2017 - 09:04 AM

View PostDog, on 28 February 2017 - 06:10 AM, said:

The best example I can think of would be Lyqyd OS

I KNEW SOMEONE WOULD SAY THAT! Ugh!

Everytime I try and install it it just crashes and fails to install the packages. I looked in his Github files and noticed that half the packages it wants to download don't even exist.

#9 Bomb Bloke

    Hobbyist Coder

  • Moderators
  • 7,099 posts
  • LocationTasmania (AU)

Posted 28 February 2017 - 09:12 AM

Threads merged; please keep questions about the one project in the one place.

#10 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 28 February 2017 - 09:56 AM

View PostBomb Bloke, on 28 February 2017 - 09:12 AM, said:

Threads merged; please keep questions about the one project in the one place.

Who said they are for the one project??

Are you assuming my project...? Mate. You can't assume anything in the 21st century. Quite dangerous...:P

In all serious, no problem :D

#11 Lupus590

  • Members
  • 2,029 posts
  • LocationUK

Posted 28 February 2017 - 11:07 AM

View PostDave-ee Jones, on 28 February 2017 - 09:04 AM, said:

Everytime I try and install it it just crashes and fails to install the packages.

I had no issue installing via packman (once a bug involving multishell was fixed), could you post some screenshots or something?

Edited by Lupus590, 28 February 2017 - 11:07 AM.


#12 Exerro

  • Members
  • 801 posts

Posted 28 February 2017 - 09:30 PM

View PostDave-ee Jones, on 28 February 2017 - 05:54 AM, said:

Can someone show me an example of how I would create multiple windows (that are draggable, meaning I should be able to click in other places on the screen and interact with other things on the screen - not just the windows) that can run their own programs independent of each other?

local dragging

local function on_mouse_down( x, y )
	for i = #windows, 1, -1 do
		if y == windows[i].y and x >= windows[i].x and x < windows[i].x + windows[i].width then
			dragging = { window = windows[i], offset = x - windows[i].x }
			return true
		end
	end
end

local function on_mouse_drag( x, y )
	dragging.window.x = x + dragging.offset
	dragging.window.y = y
end

local function mouse_event( event, button, x, y, ... )
	if event == "mouse_click" and on_mouse_down( x, y ) then
		return
	elseif event == "mouse_drag" and dragging then
		return on_mouse_drag( x, y )
	end
	for i = #windows, 1, -1 do
		if x >= windows[i].x and x < windows[i].x + windows[i].width and y > windows[i].y and y <= windows[i].y + windows[i].height then --# note, the height is of the window content, not including the title bar
			local rx, ry = x - windows[i].x + 1, y - windows[i] + 1
			resume_coroutine( co, event, button, rx, ry, ... )
		end
	end
end

Something like that should work.

Edit: uugh it took me longer to fix the forum's indentation than to write the code, what is this.

Edited by Exerro, 28 February 2017 - 09:35 PM.


#13 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 28 February 2017 - 10:36 PM

View PostExerro, on 28 February 2017 - 09:30 PM, said:

View PostDave-ee Jones, on 28 February 2017 - 05:54 AM, said:

Can someone show me an example of how I would create multiple windows (that are draggable, meaning I should be able to click in other places on the screen and interact with other things on the screen - not just the windows) that can run their own programs independent of each other?

local dragging

local function on_mouse_down( x, y )
	for i = #windows, 1, -1 do
		if y == windows[i].y and x >= windows[i].x and x < windows[i].x + windows[i].width then
			dragging = { window = windows[i], offset = x - windows[i].x }
			return true
		end
	end
end

local function on_mouse_drag( x, y )
	dragging.window.x = x + dragging.offset
	dragging.window.y = y
end

local function mouse_event( event, button, x, y, ... )
	if event == "mouse_click" and on_mouse_down( x, y ) then
		return
	elseif event == "mouse_drag" and dragging then
		return on_mouse_drag( x, y )
	end
	for i = #windows, 1, -1 do
		if x >= windows[i].x and x < windows[i].x + windows[i].width and y > windows[i].y and y <= windows[i].y + windows[i].height then --# note, the height is of the window content, not including the title bar
			local rx, ry = x - windows[i].x + 1, y - windows[i] + 1
			resume_coroutine( co, event, button, rx, ry, ... )
		end
	end
end

Something like that should work.

Edit: uugh it took me longer to fix the forum's indentation than to write the code, what is this.

Okay, I've looked through it, and I understand most of it but what I don't understand is why you randomly put
coroutine.resume(...)
there. I know it starts/resumes a coroutine but I don't know where coroutine
co
came from. Unless you mean the program I start in the window will be known as coroutine 'co'? (Example kinda thing?) In which case, where would I create it?

EDIT: What are those for loops doing as well? I didn't know those could be done in LuaJ...The -1 is putting me off...Is it just going from the #windows down to 1 in increments of 1?

Edited by Dave-ee Jones, 28 February 2017 - 10:40 PM.


#14 Exerro

  • Members
  • 801 posts

Posted 01 March 2017 - 10:58 AM

View PostDave-ee Jones, on 28 February 2017 - 10:36 PM, said:

View PostExerro, on 28 February 2017 - 09:30 PM, said:

-snip-

Okay, I've looked through it, and I understand most of it but what I don't understand is why you randomly put
coroutine.resume(...)
there. I know it starts/resumes a coroutine but I don't know where coroutine
co
came from. Unless you mean the program I start in the window will be known as coroutine 'co'? (Example kinda thing?) In which case, where would I create it?

You'd have to work out what 'co' was yourself. I figured this'd be utilising coroutines to run programs, so you'll probably have some way of linking windows to their respective coroutines.

To clarify, CC passes events into coroutines via coroutine.resume(). When the shell runs, it is actually running inside a coroutine. `os.pullEventRaw()` actually calls `coroutine.yield()`, which gets data from whatever calls `coroutine.resume()` on the computer's coroutine.

I also forgot to mention that you'd want to redirect to the coroutine's window before resuming it, then redirect back afterwards.

View PostDave-ee Jones, on 28 February 2017 - 10:36 PM, said:

EDIT: What are those for loops doing as well? I didn't know those could be done in LuaJ...The -1 is putting me off...Is it just going from the #windows down to 1 in increments of 1?

Yep, that's it.
for <name> = <initial>, <final> [, <increment>] do <block> end
--# increment defaults to 1


#15 Bomb Bloke

    Hobbyist Coder

  • Moderators
  • 7,099 posts
  • LocationTasmania (AU)

Posted 01 March 2017 - 09:41 PM

View PostExerro, on 28 February 2017 - 09:30 PM, said:

Edit: uugh it took me longer to fix the forum's indentation than to write the code, what is this.

Just turn off the rich text editor and dump your code in. If the indentation appears to break before you hit Post, ignore it; it'll be fine in the finished product.

#16 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 01 March 2017 - 11:02 PM

View PostDave-ee Jones, on 28 February 2017 - 09:04 AM, said:

View PostDog, on 28 February 2017 - 06:10 AM, said:

The best example I can think of would be Lyqyd OS
I KNEW SOMEONE WOULD SAY THAT! Ugh!
Everytime I try and install it it just crashes and fails to install the packages. I looked in his Github files and noticed that half the packages it wants to download don't even exist.

All of the packages exist, and it should install just fine. If you really are having issues installing the software, please post a report with screenshots or exact error messages in the LyqydOS thread or open an issue on Github. Otherwise, I'll have to assume that the root cause is an unwillingness to attempt the installation.

#17 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 02 March 2017 - 12:39 AM

View PostLyqyd, on 01 March 2017 - 11:02 PM, said:

View PostDave-ee Jones, on 28 February 2017 - 09:04 AM, said:

View PostDog, on 28 February 2017 - 06:10 AM, said:

The best example I can think of would be Lyqyd OS
I KNEW SOMEONE WOULD SAY THAT! Ugh!
Everytime I try and install it it just crashes and fails to install the packages. I looked in his Github files and noticed that half the packages it wants to download don't even exist.

All of the packages exist, and it should install just fine. If you really are having issues installing the software, please post a report with screenshots or exact error messages in the LyqydOS thread or open an issue on Github. Otherwise, I'll have to assume that the root cause is an unwillingness to attempt the installation.

This guy. What's the deal bro?

I found out what the problem was with that installation (I believe). It must have been a past installer you had because when I installed the pastebin installer it was trying to find a GitHub folder that wasn't there. Someone else had already posted on your forum about this issue and you must have fixed it in a later update as I managed to successfully install it last night.

#18 Dave-ee Jones

  • Members
  • 456 posts
  • LocationVan Diemen's Land

Posted 02 March 2017 - 06:30 AM

Update:

I have everything working (except dragging, but I have an idea of how I will do that). It took many hours of trying to figure out what my tables were doing (getting lots of nil errors while playing around with 'for k,v in pairs() do' etc. but it all seems fine now. I can swap between objects and coroutines pretty smoothly (and run multiple coroutines at once while interacting with an object).

If you would like to test it out and even do some more debugging/suggestions feel free to use the pastebin link up top (or right here). It's FAIRLY easy to read, but isn't commented (I like it neat. Easier to read and understand. Unlike LyqydOS files anyway :P - Sorry Lyqyd, but it's pretty chock-a-block :mellow:)

Thanks for all the suggestions/support/feedback/constructive criticism :D





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users