Skip to content
Snippets Groups Projects
Commit 13e08fec authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Efficient Block documentation

parent fb0a6ac4
No related branches found
No related tags found
No related merge requests found
......@@ -366,31 +366,172 @@ Todo
### EfficientBlock ([efficient_block.hpp](include/efficient_block.hpp), [efficient_block.cpp](src/efficient_block.cpp))
**Description**
Todo
Represents a rectangular block. Scaled down version of the previous `Block`, optimized for current feature set.
**Usage**
Todo
- Construct object
- Call `xywh` to obtain an efficient representation of the properties, convert it to vertices and draw them
- Note: This should be batched for peak performance (see `SlimBlockchainHandler`)
- Check if a point is inside the block using `is_inside`
- Obtain the dimensions using `width` and `height`
- Move the block to a new position using `translate`
- Mark the block for removal using `request_removal`
- Check if a block has been marked for removal using `needs_removal`
**Constructors and Destructors**
Todo
- `EfficientBlock()`
- `EfficientBlock(const EfficientBlock&)`
- `EfficientBlock(int w, int h, int xoffset, int yoffset)`
Note that (`xoffset`, `yoffset`) are the coordinates of the lower left corner, with origin in the top left corner of the texture.
**Public Function Members**
Todo
- `void request_removal()`
- **Description**:
Mark block for removal
- **Preconditions**:
N/A
- **Postconditions**:
Block is marked for removal
- **Notes**:
N/A
- `void translate(int new_x, int new_y)`
- **Description**:
Translate block to new (LLC) texel-coordinates.
- **Preconditions**:
N/A
- **Postconditions**:
Block has been translated to (`new_x`, `new_y`).
- **Notes**:
N/A
- `bool needs_removal() const`
- **Description**:
Check if block is marked for removal.
- **Preconditions**:
N/A
- **Postconditions**:
Returns `true` if block has been marked for removal, and `false` else.
- **Notes**:
N/A
- `glm::ivec4 xywh() const`
- **Description**:
Get coordinates and dimensions of block.
- **Preconditions**:
N/A
- **Postconditions**:
Returns a `glm::ivec4`; `[0]`->x, `[1]`->y, `[2]`->width, `[3]`->height.
- **Notes**:
- `bool is_inside(int x, int y) const`
- **Description**:
Check if a point lies within the block.
- **Preconditions**:
N/A
- **Postconditions**:
Returns `true` if point (`x`, `y`) is inside the block, `false` else.
- **Notes**:
N/A
- `int width() const`
- **Description**:
Get the width of the block.
- **Preconditions**:
N/A
- **Postconditions**:
Returns the width of the block in texels.
- **Notes**:
- `int height() const`
- **Description**:
Get the height of the block.
- **Preconditions**:
- **Postconditions**:
Returns the height of the block in texels.
- **Notes**:
**Private Function Members**
Todo
N/A
**Public Data Members**
Todo
N/A
**Private Data Members**
Todo
- `glm::ivec4 xywh_`
Coordinates and dimensions of block
- `bool needs_removal_`
Is block marked for removal?
**Notes**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment