Difference between revisions of "love.filedropped"

(Examples)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{newin (Українська)|[[0.10.0]]|100|type=function}}
+
{{newin|[[0.10.0]]|100|type=function}}
Функція зворотного виклику, яка викликається, коли з іншого вікна в вікно гри перетягнуто файл.
+
Callback function triggered when a file is dragged and dropped onto the window.
== Функція ==
+
== Function ==
=== Вигляд ===
+
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
 
love.filedropped( file )
 
love.filedropped( file )
 
</source>
 
</source>
=== Аргументи ===
+
=== Arguments ===
{{param (Українська)|DroppedFile|file|Невідкритий об'єкт File, який описує перетягнутий файл.}}
+
{{param|DroppedFile|file|The unopened File object representing the file that was dropped.}}
=== Повертає ===
+
=== Returns ===
Нічого.
+
Nothing.
== Приклади ==
+
== Examples ==
Читання ти вивід перетягнутого файлу на екран з допомогою {{translated link|(File):read|Українська}} та {{translated link|(File):getFilename|Українська}}.
+
Read and print the file, drag-and-dropped to love window using [[(File):read]] and [[(File):getFilename]].
 
<source lang="lua">
 
<source lang="lua">
 
function love.filedropped(file)
 
function love.filedropped(file)
Line 22: Line 22:
 
</source>
 
</source>
  
== Примітки ==
+
If dropped file is a .png, use it to create a löve image using [[love.image]] and [[love.graphics]]
Перед тим, як читати файл або записувати в нього щось, потрібного його відкрити функцією {{translated link|(File):open|Українська|text=File:open}} {{translated link|(File):getFilename|Українська|text=File:getFilename}} дозволяє повернути повний шлях до файлу; цей шлях буде різним на різних платформах.
+
<source lang="lua">
== Див. також ==
+
function love.filedropped(file)
* [[parent::love (Українська)]]
+
filename = file:getFilename()
* {{translated link|love.directorydropped|Українська}}
+
ext = filename:match("%.%w+$")
 +
 
 +
if ext == ".png" then
 +
file:open("r")
 +
fileData = file:read("data")
 +
img = love.image.newImageData(fileData)
 +
img = love.graphics.newImage(img)
 +
end
 +
end
 +
</source>
 +
 
 +
== Notes ==
 +
[[(File):open|File:open]] must be called on the file before reading from or writing to it. [[(File):getFilename|File:getFilename]] will return the full platform-dependent path to the file.
 +
== See Also ==
 +
* [[parent::love]]
 +
* [[love.directorydropped]]
 
[[Category:Callbacks]]
 
[[Category:Callbacks]]
{{#set:Description=Функція зворотного виклику, яка викликається, коли з іншого вікна в вікно гри перетягнуто файл.}}
+
{{#set:Description=Callback function triggered when a file is dragged and dropped onto the window.}}
 
{{#set:Subcategory=Window}}
 
{{#set:Subcategory=Window}}
{{#set:Link for lists=[[love.filedropped (Українська)|love.filedropped]]}}
+
== Other Languages ==
== Іншими мовами ==
 
 
{{i18n|love.filedropped}}
 
{{i18n|love.filedropped}}

Latest revision as of 04:54, 10 December 2022

Available since LÖVE 0.10.0
This function is not supported in earlier versions.

Callback function triggered when a file is dragged and dropped onto the window.

Function

Synopsis

love.filedropped( file )

Arguments

DroppedFile file
The unopened File object representing the file that was dropped.

Returns

Nothing.

Examples

Read and print the file, drag-and-dropped to love window using (File):read and (File):getFilename.

function love.filedropped(file)
	file:open("r")
	local data = file:read()
	print("Content of " .. file:getFilename() .. ' is')
	print(data)
	print("End of file")
end

If dropped file is a .png, use it to create a löve image using love.image and love.graphics

function love.filedropped(file)	
	filename = file:getFilename()
	ext = filename:match("%.%w+$")

	if ext == ".png" then
		file:open("r")
		fileData = file:read("data")
		img = love.image.newImageData(fileData)
		img = love.graphics.newImage(img)
	end
end

Notes

File:open must be called on the file before reading from or writing to it. File:getFilename will return the full platform-dependent path to the file.

See Also


Other Languages