os.pullEvent

From ComputerCraft Wiki
Revision as of 04:43, 4 November 2012 by YoYoYonnY (Talk | contribs) (Event Types)

Jump to: navigation, search


Grid Redstone.png  Function os.pullEvent
Yields computer until event occurs
Syntax os.pullEvent(string only-event-to-accept)
Returns event, parameters
Part of ComputerCraft
API os

Examples

Grid paper.png  Example
The program requires to wait for a keypress to do something:
Code
function clear()
   term.clear()
   term.setCursorPos (1,1)
end
while true do
   clear()
   print ("Press E to do something.")
   local event, param1 = os.pullEvent ("char") -- limit os.pullEvent to the char event
   if param1 == "e" then -- if the returned value was 'e'
       clear()
       write ("Name: ")
       local name = read()
       print (name)
       break
   else
       clear()
       print ("Wrong button!")
       sleep (1.5) -- I don't like a whole 2 seconds but 1 second is too short
   end
end


How it Works

When os.pullEvent() is called, regardless of whether it has variables to set, the computer is yielded until an event occurs. An event is anything the computer can use as input, such as a button being pushed on the keyboard or a redstone input. When said event occurs, the event's name is placed in the first variable (the variable 'event' in the section below). With the event comes returned values, and, depending on the event type, there can be different amounts and different data types of returned values.

For example, the event "char" returns "char" as the event and (let's say E was pressed) the first parameter will be set to "e", although whether or not Shift was pressed can change that "e" to an "E" as well.

The event "redstone" only returns the event type since any other information needed can be retrieved with redstone.getInput.

Common Syntax

event, param1, param2, param3 = os.pullEvent()

Event Types

Name Description Parameters
1 2 3 4 5 6
char Fired when text is typed on the keyboard the letter typed
key Fired when a key is pressed on the keyboard numerical keycode
timer Fired when a timeout started by os.startTimer() completes Value of the timer as returned by os.startTimer()
alarm Fired when a time passed to os.setAlarm() is reached Value of the alarm as returned by os.setAlarm()
redstone Fired when the state of any of the redstone inputs change
disk Fired when a disk is inserted into an adjacent disk drive side
disk_eject Fired when a disk is removed from an adjacent disk drive side
peripheral Fired when peripheral is attached side
peripheral_detach Fired when peripheral is removed side
rednet_message Fired when a rednet message is received from the rednet API senderID message distanceTravelled
http_success Fired when an attempt to recieve text from / post text on a website is successful url of the site text on the site
http_failure Fired when an attempt to recieve text from / post text on a website is unsuccessful url of the site
mouse_click Fired when a mouse button is pressed mouse button x coordinate y coordinate
mouse_scroll Fired when a mousewheel is scrolled. scroll direction (-1 for up, 1 for down) x coordinate y coordinate
mouse_drag Fired when the mouse is moved after clicking. x coordinate y coordinate

Guides

Onionnion's Guide on os.pullEvent()