summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2006-04-28 11:21:57 +0000
committerdscho <dscho>2006-04-28 11:21:57 +0000
commit7602f0e750b1f0b995b879e082651276fb6cef66 (patch)
tree0eda1088cc2e0ef9012ef2d44435292441c21fdb
parent9b51d63d49bca0bd5a2f9efbb6e02532c0672371 (diff)
downloadlibtdevnc-7602f0e750b1f0b995b879e082651276fb6cef66.tar.gz
libtdevnc-7602f0e750b1f0b995b879e082651276fb6cef66.zip
libvncclient: support changing of framebuffer size; make SDLvncviewer use it
-rw-r--r--client_examples/SDLvncviewer.c1
-rw-r--r--libvncclient/rfbproto.c42
-rw-r--r--rfb/rfbclient.h2
3 files changed, 30 insertions, 15 deletions
diff --git a/client_examples/SDLvncviewer.c b/client_examples/SDLvncviewer.c
index 5695481..8bb6efa 100644
--- a/client_examples/SDLvncviewer.c
+++ b/client_examples/SDLvncviewer.c
@@ -209,6 +209,7 @@ int main(int argc,char** argv) {
/* 16-bit: cl=rfbGetClient(5,3,2); */
cl=rfbGetClient(8,3,4);
cl->MallocFrameBuffer=resize;
+ cl->canHandleNewFBSize = TRUE;
cl->GotFrameBufferUpdate=update;
cl->HandleKeyboardLedState=kbd_leds;
diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c
index fe58a5e..3a29e53 100644
--- a/libvncclient/rfbproto.c
+++ b/libvncclient/rfbproto.c
@@ -138,14 +138,14 @@ static void FillRectangle(rfbClient* client, int x, int y, int w, int h, uint32_
}
static void CopyRectangle(rfbClient* client, uint8_t* buffer, int x, int y, int w, int h) {
- int i,j;
+ int j;
#define COPY_RECT(BPP) \
{ \
- uint##BPP##_t* _buffer=(uint##BPP##_t*)buffer; \
- for(j=y*client->width;j<(y+h)*client->width;j+=client->width) { \
- for(i=x;i<x+w;i++,_buffer++) \
- ((uint##BPP##_t*)client->frameBuffer)[j+i]=*_buffer; \
+ int rs = w * BPP / 8, rs2 = client->width * BPP / 8; \
+ for (j = x + y * rs2; j < (y + h) * rs2; j += rs2) { \
+ memcpy(client->frameBuffer + j, buffer, rs); \
+ buffer += rs; \
} \
}
@@ -592,14 +592,17 @@ SetFormatAndEncodings(rfbClient* client)
encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingPointerPos);
}
- /* Keyboard State Encodings */
- if (se->nEncodings < MAX_ENCODINGS) {
- encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingKeyboardLedState);
- }
-
- encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingLastRect);
+ if (se->nEncodings < MAX_ENCODINGS)
+ encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingLastRect);
}
+ /* Keyboard State Encodings */
+ if (se->nEncodings < MAX_ENCODINGS)
+ encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingKeyboardLedState);
+
+ if (se->nEncodings < MAX_ENCODINGS && client->canHandleNewFBSize)
+ encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingNewFBSize);
+
for(e = rfbClientExtensions; e; e = e->next)
if(e->encodings) {
int* enc;
@@ -624,8 +627,8 @@ SetFormatAndEncodings(rfbClient* client)
rfbBool
SendIncrementalFramebufferUpdateRequest(rfbClient* client)
{
- return SendFramebufferUpdateRequest(client, 0, 0, client->si.framebufferWidth,
- client->si.framebufferHeight, TRUE);
+ return SendFramebufferUpdateRequest(client, 0, 0, client->width,
+ client->height, TRUE);
}
@@ -807,8 +810,17 @@ HandleRFBServerMessage(rfbClient* client)
continue;
}
- if ((rect.r.x + rect.r.w > client->si.framebufferWidth) ||
- (rect.r.y + rect.r.h > client->si.framebufferHeight))
+ if (rect.encoding == rfbEncodingNewFBSize) {
+ client->width = rect.r.w;
+ client->height = rect.r.h;
+ client->MallocFrameBuffer(client);
+ SendFramebufferUpdateRequest(client, 0, 0, rect.r.w, rect.r.h, FALSE);
+ rfbClientLog("Got new framebuffer size: %dx%d\n", rect.r.w, rect.r.h);
+ continue;
+ }
+
+ if ((rect.r.x + rect.r.w > client->width) ||
+ (rect.r.y + rect.r.h > client->height))
{
rfbClientLog("Rect too large: %dx%d at (%d, %d)\n",
rect.r.w, rect.r.h, rect.r.x, rect.r.y);
diff --git a/rfb/rfbclient.h b/rfb/rfbclient.h
index 1dfd56a..b049613 100644
--- a/rfb/rfbclient.h
+++ b/rfb/rfbclient.h
@@ -201,6 +201,8 @@ typedef struct _rfbClient {
int KeyboardLedStateEnabled;
int CurrentKeyboardLedState;
+ int canHandleNewFBSize;
+
/* hooks */
HandleKeyboardLedStateProc HandleKeyboardLedState;
HandleCursorPosProc HandleCursorPos;