Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Code Gallery (https://forums.graalonline.com/forums/forumdisplay.php?f=179)
-   -   Line drawing tool (https://forums.graalonline.com/forums/showthread.php?t=134262183)

Crow 02-21-2011 09:01 PM

Line drawing tool
 
Published by request. Draws lines using Chompy's and Sales' DrawLine() function. Hold ctrl and drag yer mouse through Graal, wee~ ^^

PHP Code:

//#CLIENTSIDE
function onCreated() {
  
this.draw false;
  
this.ox nil;
  
this.oy nil;
  
this.iIndex 0;
}

// erase drawn lines
function onEraseLines()
  
hideImgs(0199);

// mouse stuff
function GraalControl.onMouseDown(kmod) {
  if (
kmod in |48|) { // ctrl
    
this.draw true;
    
this.ox mousex;
    
this.oy mousey;
    
    
cancelEvents("EraseLines");
  }
}

function 
GraalControl.onMouseUp() {
  if (!
this.draw)
    return;
  
  
this.draw false;
  
cancelEvents("EraseLines");
  
scheduleEvent(3"EraseLines"nil);
}

function 
GraalControl.onMouseDragged() {
  if (!
this.draw)
    return;
  
  
temp.dx abs(this.ox mousex);
  
temp.dy abs(this.oy mousey);
  
temp.d  = (temp.dx temp.dy 2) ^ 0.5;
  if (
temp.0.1) {
    
temp.this.iIndex;
    
temp.0.5;
    
    
DrawLine(temp.ithis.oxthis.oymousexmousey16);
    
changeImgColors(temp.i1111);
    
changeImgVis(temp.i3);
    
    
this.iIndex++;
    
this.iIndex %= 200;
    
    
this.ox mousex;
    
this.oy mousey;
  }
}


// draw-a-line - thanks Chompy & Sales
// http://forums.graalonline.com/forums/showthread.php?t=78427
function DrawLine(idxsxsytxtyw) {
  
= (== nil 16 w);
  
temp.ang getangle(tx sxty sy) + pi 2;
  
  
showPoly(idx,
    { 
sxsy,
      
txty,
      
tx cos(ang) * wty sin(ang) * w,
      
sx cos(ang) * wsy sin(ang) * w  });



Soala 02-22-2011 03:02 AM

Kewl stuff :O

Toxen 02-22-2011 04:28 PM

very cool. repp++

xAndrewx 02-22-2011 07:40 PM

on the other persons screen does it show random lines? not a full line

Crow 02-22-2011 07:47 PM

Quote:

Originally Posted by xAndrewx (Post 1632654)
on the other persons screen does it show random lines? not a full line

That can happen if you're drawing "too fast", yea. Seems to be a synchronization problem though.

xAndrewx 02-22-2011 07:52 PM

Ahhh- dusty had the same problem :[

good job though =D

Twaina 02-25-2011 05:14 PM

Old

Crow 02-26-2011 02:48 PM

Quote:

Originally Posted by Twaina (Post 1633220)
Old

Duh.

salesman 02-26-2011 05:06 PM

Quote:

Originally Posted by Twaina (Post 1633220)
Old

ur old


All times are GMT +2. The time now is 12:18 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.