X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin4_src%2FServer%2Fvideo.cpp;h=14fb76df252c4a801a907f3cf3efa8aa3f5ac909;hb=47296e890b2b09cbc46db30d7fe2aeeae11a6d4a;hp=a3949221f198161376a09ed596a6d2a37a12f78c;hpb=340e7923b1e95c39ac85a4b22af7f1b53b315cd9;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin4_src/Server/video.cpp b/Usermode/Applications/axwin4_src/Server/video.cpp index a3949221..14fb76df 100644 --- a/Usermode/Applications/axwin4_src/Server/video.cpp +++ b/Usermode/Applications/axwin4_src/Server/video.cpp @@ -5,17 +5,105 @@ * video.cpp * - Graphics output */ +#include #include +#include + +extern "C" { +#include +#include +#include +#include "resources/cursor.h" +} namespace AxWin { -namespace Graphics { +CVideo::CVideo(const CConfigVideo& config): + m_fd(1), + m_width(0), + m_height(0), + m_bufferFormat(PTYBUFFMT_TEXT) +{ + // Obtain dimensions + { + if( _SysIOCtl(m_fd, DRV_IOCTL_TYPE, NULL) != DRV_TYPE_TERMINAL ) + throw AxWin::InitFailure("stdin isn't a terminal"); + struct ptydims dims; + if( _SysIOCtl(m_fd, PTY_IOCTL_GETDIMS, &dims) == -1 ) + throw AxWin::InitFailure("Failed to get dimensions from stdin"); + m_width = dims.PW; + m_height = dims.PH; + if( m_width == 0 || m_height == 0 ) + throw AxWin::InitFailure("Terminal not capable of graphics"); + } + + SetCursorBitmap(); + + SetCursorPos( m_width/2, m_height/2 ); + + SetBufFormat(PTYBUFFMT_FB); +} + +void CVideo::GetDims(unsigned int& w, unsigned int& h) +{ + w = m_width; + h = m_height; +} + +void CVideo::BlitLine(const uint32_t* src, unsigned int dst_y, unsigned int dst_x, unsigned int width) +{ + //_SysWriteAt(m_fd, (dst_y * m_width + dst_x) * 4, width * 4, src); + SetBufFormat(PTYBUFFMT_FB); + _SysSeek(m_fd, (dst_y * m_width + dst_x) * 4, SEEK_SET); + _SysWrite(m_fd, src, width * 4); +} -void Initialise(const CConfigVideo& config) +void CVideo::Flush() { + // TODO: Write to a local copy of the framebuffer in BlitLine, and then flush out in this function } -}; +void CVideo::SetBufFormat(unsigned int FormatID) +{ + if( m_bufferFormat != FormatID ) + { + + struct ptymode mode = {.OutputMode = FormatID, .InputMode = 0}; + int rv = _SysIOCtl( m_fd, PTY_IOCTL_SETMODE, &mode ); + if( rv ) { + throw ::AxWin::InitFailure("Can't set PTY to framebuffer mode"); + } + + m_bufferFormat = FormatID; + } +} + +void CVideo::SetCursorBitmap() +{ + // Set cursor position and bitmap + struct ptycmd_header hdr = {PTY2D_CMD_SETCURSORBMP,0,0}; + size_t size = sizeof(hdr) + sizeof(cCursorBitmap) + cCursorBitmap.W*cCursorBitmap.H*4; + hdr.len_low = size / 4; + hdr.len_hi = size / (256*4); + + SetBufFormat(PTYBUFFMT_2DCMD); + _SysWrite(m_fd, &hdr, sizeof(hdr)); + _SysDebug("size = %i (%04x:%02x * 4)", size, hdr.len_hi, hdr.len_low); + _SysWrite(m_fd, &cCursorBitmap, size-sizeof(hdr)); +} + +void CVideo::SetCursorPos(int X, int Y) +{ + struct ptycmd_setcursorpos cmd; + cmd.hdr.cmd = PTY2D_CMD_SETCURSORPOS; + cmd.hdr.len_low = sizeof(cmd)/4; + cmd.hdr.len_hi = 0; + cmd.x = X; + cmd.y = Y; + + SetBufFormat(PTYBUFFMT_2DCMD); + _SysWrite(m_fd, &cmd, sizeof(cmd)); +} }; // namespace AxWin