blob: d6a4e1248aaa0960a87e46fae2502d9aa9888608 (
plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/* -------------------------------------------
Copyright Zeta Electronics Corporation
File: Framebuffer.cxx
Purpose: Framebuffer object
Revision History:
01/02/24: Added file (amlel)
02/02/24: Add documentation (amlel)
------------------------------------------- */
#include <KernelKit/Framebuffer.hpp>
/**
* @brief Framebuffer object implementation.
*
*/
using namespace NewOS;
namespace NewOS
{
const UInt32 kRgbRed = 0x000000FF;
const UInt32 kRgbGreen = 0x0000FF00;
const UInt32 kRgbBlue = 0x00FF0000;
const UInt32 kRgbBlack = 0x00000000;
const UInt32 kRgbWhite = 0xFFFFFFFF;
} // namespace NewOS
/**
* @brief Get Pixel at
*
* @param pos position of pixel.
* @return volatile*
*/
volatile UIntPtr* Framebuffer::operator[](const UIntPtr& pos)
{
return (UIntPtr*)(fFrameBufferAddr->fBase * pos);
}
/// @brief Boolean operator.
Framebuffer::operator bool()
{
return fFrameBufferAddr.Leak()->fBase != 0 &&
fColour != FramebufferColorKind::INVALID &&
fFrameBufferAddr.Leak()->fBase != kBadPtr;
}
/// @brief Set color kind of framebuffer.
/// @param colour
/// @return
const FramebufferColorKind& Framebuffer::Color(
const FramebufferColorKind& colour)
{
if (fColour != FramebufferColorKind::INVALID &&
colour != FramebufferColorKind::INVALID)
{
fColour = colour;
}
return fColour;
}
/// @brief Leak framebuffer context.
/// @return The reference of the framebuffer context.
Ref<FramebufferContext*>& Framebuffer::Leak()
{
return this->fFrameBufferAddr;
}
Framebuffer& Framebuffer::DrawRect(SizeT width, SizeT height, SizeT x, SizeT y, UInt32 color)
{
for (NewOS::SizeT i = x; i < width + x; ++i)
{
for (NewOS::SizeT u = y; u < height + y; ++u)
{
*(((volatile NewOS::UInt32*)(fFrameBufferAddr.Leak()->fBase +
4 * fFrameBufferAddr.Leak()->fBpp * i +
4 * u))) = color;
}
}
return *this;
}
Framebuffer& Framebuffer::PutPixel(SizeT x, SizeT y, UInt32 color)
{
*(((volatile NewOS::UInt32*)(fFrameBufferAddr.Leak()->fBase +
4 * fFrameBufferAddr.Leak()->fBpp * x +
4 * y))) = color;
return *this;
}
|