cleanup agent code (slower atm)
This commit is contained in:
parent
5f9f547db8
commit
a76cde97bf
4 changed files with 192 additions and 38 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,6 +1,10 @@
|
|||
/target
|
||||
|
||||
# for gods sakes visual studio
|
||||
/agent/*.sdf
|
||||
/agent/x64
|
||||
/agent/**/x64
|
||||
/agent/ipch
|
||||
/agent/**/Release
|
||||
/agent/**/Debug
|
||||
/agent/*.suo
|
|
@ -97,13 +97,12 @@ class cStreamClient {
|
|||
send(tcpSocket, (const char*)&resize, sizeof(resize), 0);
|
||||
}
|
||||
|
||||
void SendData(const unique_buffer<u32>& data, u32 width, u32 height, const std::vector<tileRect>& tiles) {
|
||||
void SendData(cSurface& surface, const std::vector<tRect>& tiles) {
|
||||
tMessageHeader header;
|
||||
header.type = MessageType::Data;
|
||||
// header.datalen = data.get_size() * sizeof(UINT32);
|
||||
header.datalen = sizeof(tDataMessage);
|
||||
|
||||
auto* pData = data.data();
|
||||
|
||||
// send tile header
|
||||
bool sendFull = false;
|
||||
|
@ -122,6 +121,57 @@ class cStreamClient {
|
|||
|
||||
// send each tile
|
||||
if(!sendFull) {
|
||||
#if 0
|
||||
std::vector<std::unique_ptr<cSurface>> surfs;
|
||||
|
||||
for(auto& tile : tiles) {
|
||||
surfs.push_back(surface.ClonePiece(tile));
|
||||
}
|
||||
|
||||
for(usize i = 0; i < surfs.size(); ++i) {
|
||||
// things we want!
|
||||
auto& tile_rect = tiles[i];
|
||||
auto& surf = surfs[i];
|
||||
//const auto& siz
|
||||
auto* data = surf->Memory();
|
||||
|
||||
tTile tile_wire { tile_rect.x, tile_rect.y, tile_rect.width, tile_rect.height };
|
||||
|
||||
send(tcpSocket, (const char*)&tile_wire, (int)sizeof(tile_wire), 0);
|
||||
send(tcpSocket, (const char*)&data[0], (int)((tile_rect.width * tile_rect.height) * 4), 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
std::vector<u32> data;
|
||||
|
||||
for(auto& tile : tiles) {
|
||||
auto* pData = surface.Memory();
|
||||
|
||||
tTile tile_wire { tile.x, tile.y, tile.width, tile.height };
|
||||
|
||||
|
||||
data.resize(tile.width * tile.height * 4);
|
||||
|
||||
for (u32 y = 0; y < tile.height; ++y) {
|
||||
auto* pTileLineStart = &pData[(tile.y + y) * surface.Stride() + tile.x];
|
||||
memcpy(&data[y * tile.width], pTileLineStart, tile.width * sizeof(u32));
|
||||
}
|
||||
|
||||
// send header
|
||||
send(tcpSocket, (const char*)&tile_wire, (int)sizeof(tile_wire), 0);
|
||||
send(tcpSocket, (const char*)&data[0], (int)data.size(), 0);
|
||||
|
||||
|
||||
/*
|
||||
send(tcpSocket, (const char*)&tile_wire, (int)sizeof(tile_wire), 0);
|
||||
|
||||
|
||||
for(u32 y = 0; y < tile.height; ++y) {
|
||||
auto* pTileLineStart = &pData[(tile.y + y) * surface.Stride() + tile.x];
|
||||
send(tcpSocket, (const char*)&pTileLineStart[0], tile.width * sizeof(u32), 0);
|
||||
}*/
|
||||
}
|
||||
#if 0
|
||||
for(auto& tile : tiles) {
|
||||
tTile tile_wire { tile.x, tile.y, tile.width, tile.height };
|
||||
|
||||
|
@ -143,11 +193,19 @@ class cStreamClient {
|
|||
send(tcpSocket, (const char*)pTileLineStart, tile.width * sizeof(UINT32), 0);
|
||||
}*/
|
||||
}
|
||||
#endif
|
||||
} else {
|
||||
tTile tDummyTile { 0, 0, width, height };
|
||||
auto& size = surface.Size();
|
||||
tTile tDummyTile { 0, 0, size.width, size.height };
|
||||
|
||||
send(tcpSocket, (const char*)&tDummyTile, sizeof(tDummyTile), 0);
|
||||
send(tcpSocket, (const char*)&data.data()[0], (i32)(data.get_size() * sizeof(u32)), 0);
|
||||
|
||||
for(auto y = 0; y < size.height; ++y) {
|
||||
auto* line = &surface.Memory()[y * surface.Stride()];
|
||||
send(tcpSocket, (const char*)&line[0], (i32)(size.width * sizeof(u32)), 0);
|
||||
}
|
||||
|
||||
//send(tcpSocket, (const char*)&data.data()[0], (i32)(data.get_size() * sizeof(u32)), 0);
|
||||
}
|
||||
|
||||
// send(tcpSocket, (const char*)&data.data()[0], data.get_size() * sizeof(UINT32), 0);
|
||||
|
@ -239,7 +297,7 @@ int main(int argc, char** argv) {
|
|||
BOOL bRecoveryDone = FALSE;
|
||||
|
||||
NvFBCFrameGrabInfo grabInfo;
|
||||
unique_buffer<u32> buffer;
|
||||
//unique_buffer<u32> buffer;
|
||||
|
||||
if (nvfbcSetup()) {
|
||||
// Sleep so that ToSysSetUp forces a framebuffer update
|
||||
|
@ -247,7 +305,7 @@ int main(int argc, char** argv) {
|
|||
|
||||
NVFBC_TOSYS_GRAB_FRAME_PARAMS fbcSysGrabParams = { 0 };
|
||||
|
||||
std::vector<tileRect> tiles {};
|
||||
std::vector<tRect> tiles{};
|
||||
|
||||
// set up grab parameters
|
||||
fbcSysGrabParams.dwVersion = NVFBC_TOSYS_GRAB_FRAME_PARAMS_VER;
|
||||
|
@ -271,17 +329,21 @@ int main(int argc, char** argv) {
|
|||
width = grabInfo.dwWidth;
|
||||
height = grabInfo.dwHeight;
|
||||
|
||||
buffer.resize(grabInfo.dwWidth * grabInfo.dwHeight);
|
||||
//buffer.resize(grabInfo.dwWidth * grabInfo.dwHeight);
|
||||
|
||||
firstFrame = true;
|
||||
client->SendResize(tResizeMessage{ width, height });
|
||||
}
|
||||
|
||||
cSurface surf((u32*)frameBuffer, { width, height }, grabInfo.dwBufferWidth);
|
||||
|
||||
#if 0
|
||||
// splat the data into an unpadded buffer
|
||||
// REMOVE THIS
|
||||
for(u32 y = 0; y < grabInfo.dwHeight; ++y) {
|
||||
memcpy(&buffer.data()[y * grabInfo.dwWidth], &frameBuffer[(y * grabInfo.dwBufferWidth) * 4], grabInfo.dwWidth * 4);
|
||||
}
|
||||
#endif
|
||||
|
||||
tiles.clear();
|
||||
|
||||
|
@ -294,7 +356,7 @@ int main(int argc, char** argv) {
|
|||
for (u32 x = 0; x < dwDiffMapWidth; ++x) {
|
||||
auto& bl = diffMap[y * dwDiffMapWidth + x];
|
||||
if (bl != 0) {
|
||||
tiles.push_back(tileRect {
|
||||
tiles.push_back(tRect{
|
||||
x * (width / dwDiffMapWidth), // x
|
||||
y * (height / dwDiffMapHeight), // y
|
||||
width / dwDiffMapWidth, // width
|
||||
|
@ -303,14 +365,22 @@ int main(int argc, char** argv) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// don't send a frame, just wait
|
||||
if (tiles.empty())
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// send that to the server
|
||||
client->SendData(buffer, width, height, tiles);
|
||||
//client->SendData(buffer, width, height, tiles);
|
||||
client->SendData(surf, tiles);
|
||||
|
||||
if (firstFrame)
|
||||
firstFrame = false;
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
if (bRecoveryDone == TRUE) {
|
||||
fprintf(stderr, "Unable to recover from NvFBC Frame grab failure.\n");
|
||||
break;
|
||||
|
@ -332,7 +402,8 @@ int main(int argc, char** argv) {
|
|||
|
||||
if (nvfbcSetup()) {
|
||||
bRecoveryDone = TRUE;
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
fprintf(stderr, "Unable to recover from NvFBC Frame grab failure.\n");
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include <memory>
|
||||
|
||||
// common types
|
||||
using u8 = std::uint8_t;
|
||||
|
@ -15,6 +17,83 @@ using usize = std::size_t;
|
|||
using f32 = float;
|
||||
using f64 = double;
|
||||
|
||||
struct tSize {
|
||||
u32 width;
|
||||
u32 height;
|
||||
};
|
||||
|
||||
struct tRect {
|
||||
u32 x;
|
||||
u32 y;
|
||||
u32 width;
|
||||
u32 height;
|
||||
};
|
||||
|
||||
struct cSurface {
|
||||
private:
|
||||
u32* pBuffer;
|
||||
tSize size;
|
||||
u32 stride;
|
||||
bool owned { false };
|
||||
|
||||
struct OwnedTag {};
|
||||
|
||||
public:
|
||||
cSurface(u32* pBuffer, const tSize& size, u32 stride = -1) {
|
||||
if(stride == -1) {
|
||||
this->stride = size.width;
|
||||
} else {
|
||||
this->stride = stride;
|
||||
}
|
||||
|
||||
this->size = size;
|
||||
this->pBuffer = pBuffer;
|
||||
this->owned = false;
|
||||
}
|
||||
|
||||
cSurface(u32* pBuffer, const tSize& size, OwnedTag) {
|
||||
this->pBuffer = pBuffer;
|
||||
this->size = size;
|
||||
owned = true;
|
||||
}
|
||||
|
||||
~cSurface() {
|
||||
if(owned) {
|
||||
delete[] pBuffer;
|
||||
this->pBuffer = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
cSurface(const cSurface&) = delete;
|
||||
cSurface(cSurface&& move) {
|
||||
this->pBuffer = move.pBuffer;
|
||||
move.pBuffer = nullptr;
|
||||
this->size = {};
|
||||
this->stride = -1;
|
||||
this->owned = move.owned;
|
||||
move.owned = false;
|
||||
}
|
||||
|
||||
u32 Stride() const { return stride; }
|
||||
u32 StrideBytes() const { return stride * sizeof(u32); }
|
||||
|
||||
const tSize& Size() const { return size; }
|
||||
|
||||
u32* Memory() { return &this->pBuffer[0]; }
|
||||
|
||||
// creates a new owned cSurface which owns this memory
|
||||
std::unique_ptr<cSurface> ClonePiece(const tRect& rect) {
|
||||
auto* pSurfaceMemory = new u32[rect.width * rect.height * sizeof(u32)];
|
||||
|
||||
for(u32 y = 0; y < rect.height; ++y) {
|
||||
auto* pTileLineStart = &pBuffer[(rect.y + y) * this->stride + rect.x];
|
||||
memcpy(&pSurfaceMemory[y * rect.width], pTileLineStart, rect.width * sizeof(u32));
|
||||
}
|
||||
|
||||
return std::unique_ptr<cSurface>(new cSurface(pSurfaceMemory, { rect.width, rect.height }, OwnedTag {}));
|
||||
}
|
||||
};
|
||||
|
||||
/// like vector<T> but doesn't grow on its own
|
||||
template <class T>
|
||||
struct unique_buffer {
|
||||
|
|
|
@ -37,7 +37,7 @@ fn read_message(stream: &mut TcpStream, argb_buffer: &mut Vec<u32>, width: u32)
|
|||
MESSAGETYPE_DATA => {
|
||||
let tile_count = stream.read_u32::<LittleEndian>().expect("fuck");
|
||||
|
||||
println!("{tile_count} tiles");
|
||||
// println!("{tile_count} tiles");
|
||||
|
||||
for i in 0..tile_count {
|
||||
// tile rect
|
||||
|
|
Loading…
Reference in a new issue