162 posts
Posted 25 April 2014 - 11:51 AM
My idea is having a advanced computer as a monitor so you can access it with mouse and keyboard and not only touch on usual monitors, this way I can have a main computer managing stuff, a access terminal and other things attached since printers to other stuff.
1281 posts
Posted 25 April 2014 - 12:39 PM
I don't get it, why can't you just set a computer up to do this via rednet yourself? It's quite easily possible already.
162 posts
Posted 25 April 2014 - 12:45 PM
I don't get it, why can't you just set a computer up to do this via rednet yourself? It's quite easily possible already.
Its not that easy, since it would be one-way only.. one listens and then receives, not at the same time
1281 posts
Posted 25 April 2014 - 01:55 PM
Lmao… How do you think the rednet functions work? I'd suggest you go do some reading on os.pullEvent, which you would probably have to use for input anyways.
http://computercraft.info/wiki/Os.pullEvent
8543 posts
Posted 25 April 2014 - 03:27 PM
I think nsh can do what you're looking for. Either that or vncd, depending on how you're wanting it set up.
162 posts
Posted 25 April 2014 - 04:01 PM
I'll look at that, thanks, although it would be easier with a peripheral.
Just looked at it, doesn't do what I want, cause I want a completely separate monitor, not remote control or screen sharing
8543 posts
Posted 25 April 2014 - 05:37 PM
With the right program for incoming connections, it could be used to set up connecting computers as "monitors" or dumb terminals. I'm fairly certain it will do what you want, with a little coding on your part.
453 posts
Location
Holland
Posted 26 April 2014 - 12:42 PM
just send through all of the events to the remote computer and send all the terminal calls through. you can make 2 programs run at the same time by using co-routines or that multitasking api. on the remote computer just make sure to send all the events to the first computer so yo ucan iteract with it.
1610 posts
Posted 16 May 2014 - 04:59 PM
just send through all of the events to the remote computer and send all the terminal calls through. you can make 2 programs run at the same time by using co-routines or that multitasking api. on the remote computer just make sure to send all the events to the first computer so yo ucan iteract with it.
Not all events. You'd probably want to leave out all except user action events (click, key, char, *maybe* redstone). Other events, like timers, would probably be only necessary for the host.
995 posts
Location
Canada
Posted 19 May 2014 - 02:41 PM
The events he will want to send through will depend on what code he needs to run. Personally, I think "redstone" events would be useless, as to get anything out of them, you have to check all sides against the redstone api and that quickly becomes a hassle.
1610 posts
Posted 19 May 2014 - 04:58 PM
The events he will want to send through will depend on what code he needs to run. Personally, I think "redstone" events would be useless, as to get anything out of them, you have to check all sides against the redstone api and that quickly becomes a hassle.
Indeed. Oh, also probably want to send terminate events too.
162 posts
Posted 21 May 2014 - 07:01 PM
The events he will want to send through will depend on what code he needs to run. Personally, I think "redstone" events would be useless, as to get anything out of them, you have to check all sides against the redstone api and that quickly becomes a hassle.
Indeed. Oh, also probably want to send terminate events too.
Well, I just saw this now. I am gonna show this to you how I wanted it to be:
Have a central computer to manage the system(close door, open door, open this, open that) with redstone
Have a file archiving area
Have a rednet processing area
Having a main terminal
Here is where this topic comes onto: The central computer would be directly connected with the other computer, being used like a windows computer on expand mode(on external display). So it processes the key, mouse_click and stuff.