View Single Post
  #12   Ban this user!
Old 03-16-2011, 11:24 AM
Mike O Mike O is offline
 
Join Date: Oct 2010
Location: USA
Posts: 9
Mike O is on a distinguished road

I'm sure this thread has everyone over at NCPlot sweating bullets.

I'm all for 'open source' code. Its great if you want to take someones work and change it to fit your needs. It is also a good way to get software for ZERO cost. Open Office has cost Micro$oft millions in sales. This is good for the software users but very very bad for the software industry.
Imagine if you will, there is a OPEN MACHINE SHOP where anyone can get machine work done for free. Get my point now? Where would the incentives be for you or anyone in the machining industry to improve their methods and spend the hundreds of thousands on machine tools? (or hire software engineers) Why would anyone pay you to do the work if they can get it done for free?
Anyone that has read or posted in this thread that understands programming in .NET, C++, Java, PHP or any language also understands that its a lot of work! I do it because its fun for the same reason I make parts. I enjoy the work but, none the less, it IS work.

With that said...
If you want to buy a fully functional back plotting app instead of hacking existing code or using partially functioning code, I have a very nice .net app for plotting G-Code called CodeChop.
It does everything a CNC editor needs to do.
Number Removal and renumbering lines with 0 padding if needed.
Find / Replace.
Expansion and compression of the text so its easier to read.
Undockable edit window.
Independent zoom window. Great for multiple monitor setups.
It also understands Sub Program calls.
It includes a RS232 com app. This Com Panel app searches for all com ports you have. It doesn't assume you only have com1 to com4. It can find any com port up to com255. It will save as many port configurations as you have hard drive space. Com Panel is FREE with the demo. You can run as many instances as you have com ports. It can be used with DNC but doesn't have all the features of a well written DNC app.
There is also a point/arc filter included. This works well when there are no conjoined arcs. If there is, you must be careful with using it as the tangential connection where the arcs meet can throw the filtering algorithm for a loop and cause under/over shoot.

What sets my app apart form most of the other back plotting programs is, It uses OpenGL for the graphics. It parses the G-code and converts it all in to code that OpenGL can plot. This allows to freely spin, pan and zoom the plot window in real time. If you modify the G-Code, you have to click the update button so the changes in the g-code are re-parsed.
You can center mouse button click on the path and it will take you to that line of g-code that makes that move. This also works in reverse.
There are a number of lockable buttons on the top menu bar such as, Auto centering the window on the selected line. This is very handy when single stepping the program.
Lighting levels can be changed as well as the STL's color.


Here's a couple of thumbnail images. Click to enlarge to actual size.


There is a demo version to try out, just go Here and download it.

As you can see in the above image, It can import ASCII and Binary STL files.

There is more info about CodeChop Here.
CodeChop may not run on all versions of OpenGL. It works great up to 3.1 but be cause of the use of gllist, may not function on the new 4.0 version of opengl. Try out the demo before buying to make sure it will do the job for you. (for some unknown reason, gllist has been deprecated in the last version of OpenGL and even some vendor versions of 3.1 There are no issues with nVidia 9800 and earlier cards)
I'm after constant improvement in CodeChop and would appreciate any input. You can post any ideas at the support forums.

Thanks for reading....
--Mike
Reply With Quote

 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361