/* * * This is an example of how to use libvncserver. * * libvncserver example * Copyright (C) 2001 Johannes E. Schindelin * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. */ #include #include #ifdef __IRIX__ #include #endif #define XK_MISCELLANY #include "rfb.h" #include "keysymdef.h" const int maxx=640, maxy=480, bpp=4; /* This initializes a nice (?) background */ void initBuffer(unsigned char* buffer) { int i,j; for(i=0;iclientData); } void newclient(rfbClientPtr cl) { cl->clientData = (void*)calloc(sizeof(ClientData),1); cl->clientGoneHook = clientgone; } /* aux function to draw a line */ void drawline(unsigned char* buffer,int rowstride,int bpp,int x1,int y1,int x2,int y2) { int i,j; i=x1-x2; j=y1-y2; if(i==0 && j==0) { for(i=0;iy2) { i=y2; y2=y1; y1=i; i=x2; x2=x1; x1=i; } if(y2==y1) { if(y2>0) y1--; else y2++; } for(j=y1;j<=y2;j++) for(i=0;ix2) { i=y2; y2=y1; y1=i; i=x2; x2=x1; x1=i; } for(i=x1;i<=x2;i++) for(j=0;jclientData; //if(cl->screen->cursorIsDrawn) //rfbUndrawCursor(cl); //cl->screen->cursorX=x; //cl->screen->cursorY=y; if(x>=0 && y>=0 && xoldButton==buttonMask) { /* draw a line */ drawline(cl->screen->frameBuffer,cl->screen->paddedWidthInBytes,bpp, x,y,cd->oldx,cd->oldy); rfbMarkRectAsModified(cl->screen,x,y,cd->oldx,cd->oldy); } else { /* draw a point (diameter depends on button) */ x1=x-buttonMask; if(x1<0) x1=0; x2=x+buttonMask; if(x2>maxx) x2=maxx; y1=y-buttonMask; if(y1<0) y1=0; y2=y+buttonMask; if(y2>maxy) y2=maxy; for(i=x1*bpp;iscreen->frameBuffer[j*cl->screen->paddedWidthInBytes+i]=0xff; rfbMarkRectAsModified(cl->screen,x1,y1,x2-1,y2-1); } /* we could get a selection like that: rfbGotXCutText(cl->screen,"Hallo",5); */ } else cd->oldButton=0; cd->oldx=x; cd->oldy=y; cd->oldButton=buttonMask; } } /* aux function to draw a character to x, y */ #include "radon.h" int drawchar(unsigned char* buffer,int rowstride,int bpp,int x,int y,char c) { int i,j,k,width,height; unsigned char d; unsigned char* data=bdffontdata+bdffontmetadata[c*5]; width=bdffontmetadata[c*5+1]; height=bdffontmetadata[c*5+2]; x+=bdffontmetadata[c*5+3]; y+=bdffontmetadata[c*5+4]-height+1; for(j=0;jscreen->cursorIsDrawn) //rfbUndrawCursor(cl); initBuffer(cl->screen->frameBuffer); rfbMarkRectAsModified(cl->screen,0,0,maxx,maxy); } else if(key>=' ' && key<0x100) { ClientData* cd=cl->clientData; int x1=cd->oldx,y1=cd->oldy,x2,y2; //if(cl->screen->cursorIsDrawn) //rfbUndrawCursor(cl); cd->oldx+=drawchar(cl->screen->frameBuffer, cl->screen->paddedWidthInBytes,bpp,cd->oldx,cd->oldy, key); bdfbbox(key,&x1,&y1,&x2,&y2); rfbMarkRectAsModified(cl->screen,x1,y1,x2-1,y2-1); } } } /* extern void rfbPrintXCursor(rfbCursorPtr cursor); int exampleCursorWidth=9,exampleCursorHeight=7; char exampleCursor[]= " " " xx xx " " xx xx " " xxx " " xx xx " " xx xx " " "; rfbCursorPtr exampleCurse; rfbCursorPtr exampleGetCursor(rfbClientPtr cl) { return(exampleCurse); } */ /* Initialization */ int main(int argc,char** argv) { rfbScreenInfoPtr rfbScreen = rfbDefaultScreenInit(argc,argv,maxx,maxy,8,3,bpp); rfbScreen->desktopName = "LibVNCServer Example"; rfbScreen->frameBuffer = (char*)malloc(maxx*maxy*bpp); rfbScreen->rfbAlwaysShared = TRUE; rfbScreen->ptrAddEvent = doptr; rfbScreen->kbdAddEvent = dokey; rfbScreen->newClientHook = newclient; rfbScreen->httpDir = "./classes"; initBuffer(rfbScreen->frameBuffer); drawstring(rfbScreen->frameBuffer,maxx*bpp,bpp,20,100,"Hello, World!"); //exampleCurse = rfbMakeXCursor(exampleCursorWidth,exampleCursorHeight,exampleCursor,0); { int i,j,w=32,h=32; rfbCursorPtr c = rfbScreen->cursor; char x[32*32],mask[32*32/8]; c=rfbScreen->cursor = rfbMakeXCursor(w,h,x,mask); c->mask[0]=0xff; c->mask[1]=0x0; memset(c->mask,255,h*w/8); c->richSource = malloc(w*h*bpp); for(j=0;jrichSource[j*w*bpp+i*bpp+0]=0; c->richSource[j*w*bpp+i*bpp+1]=0; c->richSource[j*w*bpp+i*bpp+2]=j*0xff/h; c->richSource[j*w*bpp+i*bpp+3]=0; } c->richSource[j*w*bpp+(w-1)*bpp+0]=0xff; c->richSource[j*w*bpp+(w-1)*bpp+1]=0xff; c->richSource[j*w*bpp+(w-1)*bpp+2]=0xff; c->richSource[j*w*bpp+(w-1)*bpp+3]=0xff; } //memset(c->richSource,0xff,w*h*bpp); } /* this is the blocking event loop, i.e. it never returns */ /* 40000 are the microseconds, i.e. 0.04 seconds */ runEventLoop(rfbScreen,40000,FALSE); /* this is the non-blocking event loop; a background thread is started */ runEventLoop(rfbScreen,40000,TRUE); /* now we could do some cool things like rendering */ while(1); return(0); }