Author Topic: Briscad  (Read 8477 times)

0 Members and 1 Guest are viewing this topic.

mail00

  • Guest
Briscad
« on: September 19, 2007, 08:43:04 PM »
how to create lisp from briscad..?

MickD

  • King Gator
  • Posts: 3657
  • (x-in)->[process]->(y-out) ... simples!
Re: Briscad
« Reply #1 on: September 19, 2007, 09:32:31 PM »
you will need to write it in a basic editor like notepad and save as .lsp file as Bricscad doesn't have a vlide. I'm not certain but there may be no vl* type exposure either but standard acad lisp should work ok.
"Programming is really just the mundane aspect of expressing a solution to a problem."
- John Carmack

"Short cuts make long delays,' argued Pippin.”
- J.R.R. Tolkien

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8825
  • AKA Daniel
Re: Briscad
« Reply #2 on: September 19, 2007, 09:48:32 PM »
The new version has LispEx, which supports most of the VL commands. There are plenty of good editors that will work, I use lisplink
have fun!

mail00

  • Guest
Re: Briscad
« Reply #3 on: September 20, 2007, 12:13:35 AM »
The new version has LispEx, which supports most of the VL commands. There are plenty of good editors that will work, I use lisplink
have fun!
where to get LispEx/Lisplink?? :roll:

MickD

  • King Gator
  • Posts: 3657
  • (x-in)->[process]->(y-out) ... simples!
Re: Briscad
« Reply #4 on: September 20, 2007, 12:28:22 AM »
LispEx ships with Bricscad so it can run lisp files, a quick google gave me this - http://www.caelink.com/lisplink.htm

good luck!
"Programming is really just the mundane aspect of expressing a solution to a problem."
- John Carmack

"Short cuts make long delays,' argued Pippin.”
- J.R.R. Tolkien

TimSpangler

  • Water Moccasin
  • Posts: 2010
  • CAD Naked!!
Re: Briscad
« Reply #5 on: September 20, 2007, 07:37:19 AM »
LispEx ships with Bricscad so it can run lisp files, a quick google gave me this - http://www.caelink.com/lisplink.htm

good luck!

LispLink is great but it will cost you (I used to use it exclusivley).  I would suggest Notepad++ as you lisp editor (its free)
ACA 2015 - Windows 7 Pro
All Comments and Content by TimSpangler, Copyright © 2016

mail00

  • Guest
Re: Briscad
« Reply #6 on: September 20, 2007, 09:19:33 PM »
thank for all suggestion....
how to compile lisp to dll?,coz briscad can load .dll lisp.

MickD

  • King Gator
  • Posts: 3657
  • (x-in)->[process]->(y-out) ... simples!
Re: Briscad
« Reply #7 on: September 20, 2007, 09:57:30 PM »
you don't make a dll using lisp, lisp is like a script file that runs in an interpretor, you would load it using the APPLOAD command and loading your lisp file that has a .lsp file extension. Other lispers here could probably help you more with that though.
"Programming is really just the mundane aspect of expressing a solution to a problem."
- John Carmack

"Short cuts make long delays,' argued Pippin.”
- J.R.R. Tolkien

sinc

  • Guest
Re: Briscad
« Reply #8 on: September 21, 2007, 10:04:12 AM »
Briscad...  Is that Jewish?

 :-)

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8825
  • AKA Daniel
Re: Briscad
« Reply #9 on: September 21, 2007, 10:10:30 AM »
Briscad...  Is that Jewish?

 :-)
Belgiumese :-o

Jakes GrandPa

  • Guest
Re: Briscad
« Reply #10 on: September 22, 2007, 03:12:03 PM »
Briscad...  Is that Jewish?

 :-)

I think that went about four feet over most of the heads here...

daron

  • Guest
Re: Briscad
« Reply #11 on: November 26, 2007, 11:44:53 AM »
How do you make bricscad load lsp files all the time in V8? I put everything in appload and but it seems to need to be loaded up everytime you open a drawing.

MickD

  • King Gator
  • Posts: 3657
  • (x-in)->[process]->(y-out) ... simples!
Re: Briscad
« Reply #12 on: November 26, 2007, 02:50:13 PM »
I never noticed that before as I don't use lisp that much but I will when I go full time Bricscad, I'll do some investigation and get back to you Daron.
"Programming is really just the mundane aspect of expressing a solution to a problem."
- John Carmack

"Short cuts make long delays,' argued Pippin.”
- J.R.R. Tolkien

Bob Wahr

  • Guest
Re: Briscad
« Reply #13 on: November 26, 2007, 02:55:24 PM »
Briscad...  Is that Jewish?

 :-)

I think that went about four feet over most of the heads here...
I thought it was the new name for ACAD LT

MickD

  • King Gator
  • Posts: 3657
  • (x-in)->[process]->(y-out) ... simples!
Re: Briscad
« Reply #14 on: November 26, 2007, 02:59:19 PM »
Hey Bob, good to see you!

Daron, this is from the Bricscad knowledge base, hope it helps,

Quote
    *

Knowledge Base
Autoload lisp files (used to be icad.lsp)

product: Bricscad
version: V8
operating system:
status:
last reviewed: 2007-07-23

Symptoms
Where can I put lisp routines that have to be loaded automatically

Cause

Resolution
** Icad.lsp was changed to offer finer control. It was replaced by 4 auto-loaded files. The files that come with the program in the support folder are

on_start_default.lsp
on_doc_load_default.lsp

while the user created files(in the support folder in the user's documents and settings folder) are

on_start.lsp
on_doc_load.lsp

In order to avoid overwriting changes made by a user, we make a distinction between the default files, which come with the program, and those created by the user.

More information
The ACADLSPASDOC system variable controls whether on_start_default.lsp and on_start.lsp are loaded only at session start or every time a drawing is loaded.
"Programming is really just the mundane aspect of expressing a solution to a problem."
- John Carmack

"Short cuts make long delays,' argued Pippin.”
- J.R.R. Tolkien