This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
maxrects-lua [2021/02/13 07:59] muragami [MaxRects.new(width,height,canflip)] |
maxrects-lua [2021/02/13 10:21] (current) muragami [:insertCollection(collect,sort)] |
||
---|---|---|---|
Line 76: | Line 76: | ||
* **Array indexes 1, 2, 3, and 4** are X, Y, Width, and Height respectively. e.g. If you wanted to calculate the area of a rectangle: rect[3] * rect[4] is Width * Height. | * **Array indexes 1, 2, 3, and 4** are X, Y, Width, and Height respectively. e.g. If you wanted to calculate the area of a rectangle: rect[3] * rect[4] is Width * Height. | ||
* **The field ' | * **The field ' | ||
+ | * **The field ' | ||
+ | This format was chosen for ease of use, see these examples: | ||
- | ===== Functions ===== | + | <code lua> |
+ | -- create a rectangle | ||
+ | MyRect = { 0, 0, 32, 32 } -- as simple as that { X, Y, Width, Height } | ||
+ | -- area of a rectangle | ||
+ | Area = MyRect[3] * MyRect[4] -- Width x Height | ||
+ | -- copy a rectangle | ||
+ | MyOtherRect = MaxRects.copy(MyRect) -- shallow copy of just the 4 indexes and two fields | ||
+ | </ | ||
+ | |||
+ | ===== Functions | ||
All the exposed functions of this module, with in-depth explanations. | All the exposed functions of this module, with in-depth explanations. | ||
Line 90: | Line 101: | ||
Creates a new instance of a packing algorithm. This can be bypassed if you ever just need on instance, calling MaxRects: | Creates a new instance of a packing algorithm. This can be bypassed if you ever just need on instance, calling MaxRects: | ||
+ | |||
+ | ==== MaxRects.copy(rect) ==== | ||
+ | |||
+ | * **rect**: The rectangle to duplicate. | ||
+ | |||
+ | * **return**: A table containing the new copied rectangle. | ||
+ | |||
+ | Creates a shallow copy of a rectangle. Does not duplicate .data for instance, but copies the reference. Explicitly only copies: [1], [2], [3], [4], .data, and .flip. | ||
+ | |||
+ | ===== Functions (instance) ===== | ||
==== : | ==== : | ||
Line 99: | Line 120: | ||
Resets an instance of the algorithm to a blank state with the supplied parameters. If supplied with no parameters, resets the instance with the same parameters it was created with. | Resets an instance of the algorithm to a blank state with the supplied parameters. If supplied with no parameters, resets the instance with the same parameters it was created with. | ||
+ | ==== : | ||
+ | |||
+ | * **width**: The width of the rectangle to insert. | ||
+ | * **height**: The height of the rectangle to insert. | ||
+ | * **// | ||
+ | |||
+ | * **return**: Boolean. True if the rectangle was inserted, False if it didn't fit. | ||
+ | |||
+ | Inserts a rectangle into the collection, using the algorithm to assign a location. If the rectangle can't fit, returns false. | ||
+ | |||
+ | ==== : | ||
+ | |||
+ | * **rect**: The rectangle to insert. X/ | ||
+ | |||
+ | * **return**: Boolean. True if the rectangle was inserted, False if it didn't fit. | ||
+ | |||
+ | Inserts a rectangle into the collection, using the algorithm to assign a location. If the rectangle can't fit, returns false. Copies .data into the stored node in the collection. | ||
+ | |||
+ | ==== : | ||
+ | |||
+ | * **collect**: | ||
+ | * **// | ||
+ | |||
+ | * **return**: Boolean, Number. True if all were inserted, False if only some fit. The number is the amount added. | ||
+ | |||
+ | Inserts rectangles into the collection, from an array table. If you define sort to one of: ' | ||
+ | ==== : | ||
+ | |||
+ | * **return**: Number from 0 to 1. This is a measure of how full the packing rectangle is. A percentage would be done like so: : | ||
+ | |||
+ | Reports how much of the packing rectangle has been filled. The algorithm does not store used space, so this is an O(N) call to iterate over all the contained rectangles. Though that might change in the future. | ||
+ | |||
+ | ==== : | ||
+ | |||
+ | * **func**: The function to call over each rectangle in the collection, as so: func(rect). | ||
+ | * **// | ||
+ | |||
+ | Iterates over all the rectangles in a collection using func(rect). If you supply other, that becomes func(other, | ||
+ | |||
+ | <code lua> | ||
+ | Packer: | ||
+ | |||
+ | function MyClass: | ||
+ | | ||
+ | end | ||
+ | </ | ||
+ | |||
+ | ==== : | ||
+ | |||
+ | * **algo**: The algorithm to use for this instance. Defaults to ' | ||
+ | |||
+ | Applies a given algorithm to the packer. The options are: ' | ||
+ | |||
+ | ==== : | ||
+ | |||
+ | * **return**: The algorithm in use for this instance. Defaults to ' | ||
+ | |||
+ | Returns the algorithm in use by the packer. The options are: ' | ||
+ | |||
+ | ===== Simple LÖVE Texture Packer ===== | ||
+ | TODO! |