1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
---@meta
---@class love.system
love.system = {}
---
---Gets text from the clipboard.
---
---@return string text # The text currently held in the system's clipboard.
function love.system.getClipboardText() end
---
---Gets the current operating system. In general, LÖVE abstracts away the need to know the current operating system, but there are a few cases where it can be useful (especially in combination with os.execute.)
---
---@return string osString # The current operating system. 'OS X', 'Windows', 'Linux', 'Android' or 'iOS'.
function love.system.getOS() end
---
---Gets information about the system's power supply.
---
---@return love.PowerState state # The basic state of the power supply.
---@return number percent # Percentage of battery life left, between 0 and 100. nil if the value can't be determined or there's no battery.
---@return number seconds # Seconds of battery life left. nil if the value can't be determined or there's no battery.
function love.system.getPowerInfo() end
---
---Gets the amount of logical processor in the system.
---
---@return number processorCount # Amount of logical processors.
function love.system.getProcessorCount() end
---
---Gets whether another application on the system is playing music in the background.
---
---Currently this is implemented on iOS and Android, and will always return false on other operating systems. The t.audio.mixwithsystem flag in love.conf can be used to configure whether background audio / music from other apps should play while LÖVE is open.
---
---@return boolean backgroundmusic # True if the user is playing music in the background via another app, false otherwise.
function love.system.hasBackgroundMusic() end
---
---Opens a URL with the user's web or file browser.
---
---@param url string # The URL to open. Must be formatted as a proper URL.
---@return boolean success # Whether the URL was opened successfully.
function love.system.openURL(url) end
---
---Puts text in the clipboard.
---
---@param text string # The new text to hold in the system's clipboard.
function love.system.setClipboardText(text) end
---
---Causes the device to vibrate, if possible. Currently this will only work on Android and iOS devices that have a built-in vibration motor.
---
---@param seconds number # The duration to vibrate for. If called on an iOS device, it will always vibrate for 0.5 seconds due to limitations in the iOS system APIs.
function love.system.vibrate(seconds) end
---@class love.PowerState
---@field unknown integer # Cannot determine power status.
---@field battery integer # Not plugged in, running on a battery.
---@field nobattery integer # Plugged in, no battery available.
---@field charging integer # Plugged in, charging battery.
---@field charged integer # Plugged in, battery is fully charged.
|