Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > Script Engine in C++

Reply
Thread Tools

Script Engine in C++

 
 
fernandez.dan@gmail.com
Guest
Posts: n/a
 
      03-21-2005
Hey I'm sorry if this is not the appropriate news group for this
question. I was wondering if anyone has any recommendation for
embbedding a script engine in a c++ application. I want to feed my C++
application scripts which based on the script would create C++ objects
and call the appropriate methods.

At the moment I created a simple interpreter within our C++ aplication
that we can feed our custom scripts. The interpreter is primitive and
it lacks alot of functionality that is why I am looking at other
alternatives.

I looked at spidermonkey to embed in my c++ application but it seems a
little cumbersome dealing with C++ objects. Does anyone have any other
recommendations?

 
Reply With Quote
 
 
 
 
Victor Bazarov
Guest
Posts: n/a
 
      03-21-2005
wrote:
> Hey I'm sorry if this is not the appropriate news group for this
> question. I was wondering if anyone has any recommendation for
> embbedding a script engine in a c++ application. I want to feed my C++
> application scripts which based on the script would create C++ objects
> and call the appropriate methods.
>
> At the moment I created a simple interpreter within our C++ aplication
> that we can feed our custom scripts. The interpreter is primitive and
> it lacks alot of functionality that is why I am looking at other
> alternatives.
>
> I looked at spidermonkey to embed in my c++ application but it seems a
> little cumbersome dealing with C++ objects. Does anyone have any other
> recommendations?
>


Python should probably work for most platforms.

V
 
Reply With Quote
 
Ioannis Vranos
Guest
Posts: n/a
 
      03-21-2005
wrote:

> Hey I'm sorry if this is not the appropriate news group for this
> question. I was wondering if anyone has any recommendation for
> embbedding a script engine in a c++ application. I want to feed my C++
> application scripts which based on the script would create C++ objects
> and call the appropriate methods.
>
> At the moment I created a simple interpreter within our C++ aplication
> that we can feed our custom scripts. The interpreter is primitive and
> it lacks alot of functionality that is why I am looking at other
> alternatives.
>
> I looked at spidermonkey to embed in my c++ application but it seems a
> little cumbersome dealing with C++ objects. Does anyone have any other
> recommendations?



I do not know much on this area but some useful links are:


UnderC, a compact C++ interpreter:
http://home.mweb.co.za/sd/sdonovan/underc.html

Ch, an embeddable C/C++ interpreter for cross platform scripting,
numerical computing and 2D/3D plotting: http://www.softintegration.com

CINT, C/C++ interpreter: http://root.cern.ch/root/Cint.html

ROOT, Data Analysis Framework: http://root.cern.ch



Definitely you will find something here:

More C++ libraries: http://www.trumphurst.com/cpplibs/cpplibs.phtml




--
Ioannis Vranos

http://www23.brinkster.com/noicys
 
Reply With Quote
 
Phlip
Guest
Posts: n/a
 
      03-21-2005
fernandez.dan wrote:

> I was wondering if anyone has any recommendation for
> embbedding a script engine in a c++ application.


All of Lua, Python, Ruby, etc. are written with embedding in mind. Lua
hardly has any other presence.

> I want to feed my C++
> application scripts which based on the script would create C++ objects
> and call the appropriate methods.


Here's a wrapper for Ruby's VALUE object:

class
rbValue
{
public:

rbValue(VALUE nuV = Qnil):
v(nuV)
{}

rbValue(char const * gv):
v(Qnil)
{
assert(gv);
assert('$' == gv[0]); // documentation sez this is optional. We
don't agree
v = rb_gv_get(gv);
}

operator VALUE() const { return v; }
rbValue &operator =(VALUE nuV) { v = nuV; return *this; }

rbValue
fetch(char const * tag)
{
return funcall("fetch", 2, rb_str_new2(tag), Qnil);
}

rbValue
fetch(int idx)
{
return funcall("fetch", 2, INT2FIX(idx), Qnil);
}

rbValue
fetch(size_t idx)
{
return funcall("fetch", 2, INT2FIX(idx), Qnil);
}

VALUE *
getPtr()
{
assert(T_ARRAY == TYPE(v));
return RARRAY(v)->ptr;
}

long
getLen()
{
assert(T_ARRAY == TYPE(v));
return RARRAY(v)->len;
}

rbValue
getAt(long idx)
{
assert(idx < getLen());
return RARRAY(v)->ptr[idx];
}


rbValue
operator[](long idx)
{
return getAt(idx);
}

bool isNil() { return Qnil == v; }

double to_f()
{
assert(T_FLOAT == TYPE(v) || T_FIXNUM == TYPE(v));
return NUM2DBL(v);
}

char const * to_s()
{
assert(T_STRING == TYPE(v));
return STR2CSTR(v);
}

rbValue
funcall (
char const * method,
int argc = 0,
VALUE arg1 = Qnil,
VALUE arg2 = Qnil,
VALUE arg3 = Qnil
)
{
return rb_funcall(v, rb_intern(method), argc, arg1, arg2, arg3);
}

rbValue
iv_get(char const * member)
{
VALUE iv = rb_iv_get(v, member);
return iv;
}

void
iv_set(char const * member, VALUE datum)
{
rb_iv_set(v, member, datum);
}

void
iv_set(char const * member, int datum)
{
iv_set(member, INT2FIX(datum));
}

private:
VALUE v;

}; // a smart wrapper for the Ruby VALUE type

Call its members like this:

void
push(rbValue xyzIn)
{
rbValue str = xyzIn.funcall("inspect");
OutputDebugStringA(str.to_s());
OutputDebugStringA("\n");
}

Google for that code to find its project.

--
Phlip
http://industrialxp.org/community/bi...UserInterfaces


 
Reply With Quote
 
fernandez.dan@gmail.com
Guest
Posts: n/a
 
      03-21-2005
Thanks for the input. I looked at Python and how it can be implemented
in a C++ by using SWIG. What do you think about Ruby? It is a pure
object oriented scripting language but I'm am newbie to that language.
I'm wondering if it is easier to access C++ objects over Python or
Javascript? Also looked at lua but it seems a bit old.

 
Reply With Quote
 
Walter
Guest
Posts: n/a
 
      03-21-2005

<> wrote in message
news: oups.com...
> Hey I'm sorry if this is not the appropriate news group for this
> question. I was wondering if anyone has any recommendation for
> embbedding a script engine in a c++ application. I want to feed my C++
> application scripts which based on the script would create C++ objects
> and call the appropriate methods.
>
> At the moment I created a simple interpreter within our C++ aplication
> that we can feed our custom scripts. The interpreter is primitive and
> it lacks alot of functionality that is why I am looking at other
> alternatives.
>
> I looked at spidermonkey to embed in my c++ application but it seems a
> little cumbersome dealing with C++ objects. Does anyone have any other
> recommendations?


DMDScript (a javascript implementation) can be embedded in C++ applications.
There's also a version for embedding in D programming language applications.

-Walter
www.digitalmars.com/dscript DMDScript


 
Reply With Quote
 
Victor Bazarov
Guest
Posts: n/a
 
      03-21-2005
wrote:
> Thanks for the input. I looked at Python and how it can be implemented
> in a C++ by using SWIG. What do you think about Ruby? It is a pure
> object oriented scripting language but I'm am newbie to that language.
> I'm wondering if it is easier to access C++ objects over Python or
> Javascript? Also looked at lua but it seems a bit old.
>


Since I participated, I feel obliged to respond. I don't think about
Ruby, so the answer is "nothing". As to JavaScript (or should we call it
"LiveScript"?), I have also no idea what capabilities it provides. I know
that our products provide scriptability through Python and that there are
other possibilities. If there were a single scripting language that
covered all needs and satisfied all requirements, we wouldn't have such
a variety of choices. So, it's totally up to you to see which one suits
you. And let's not convert the short enumeration of a few options into
a full-blown discussion on scripting languages since it would be off-topic
here.

V
 
Reply With Quote
 
Phlip
Guest
Posts: n/a
 
      03-21-2005
fernandez.dan wrote:

> Thanks for the input. I looked at Python and how it can be implemented
> in a C++ by using SWIG.


You can also bond with Python using Boost, or using Python's raw C-style
API. SWIG is an elaborate adapter system to bond any object with any other
object in any language. We are not amused.

> What do you think about Ruby?


It competes successfully with both Perl and Smalltalk, wisely leaving behind
the worst of both. My velocity using Ruby is triple that of any other
language.

Compare traversing a heterogeous list in Ruby to, say, Java:

myList.each { |node| node.virtualMethod() }

How many tokens would Java require to claw its way to the same (common)
result?

> It is a pure
> object oriented scripting language but I'm am newbie to that language.
> I'm wondering if it is easier to access C++ objects over Python or
> Javascript?


The "object" is relatively irrelevant. The point of objects is virtual
methods. If you have a binding layer then you have opaque methods anyway, so
they either dispatch or they don't. And otherwise "objects" are just
syntactic sugar.

> Also looked at lua but it seems a bit old.


Lua is super-fast, and has block closures like Ruby. Its speed comes at the
price of a screwey object model that makes implementing objects
non-intuitive. And its speed makes it the leading contender for the
scripting layer for high-end video games.

Here's an oblique example of Lua driving a videogame:

http://flea.sourceforge.net/gameTestServer.pdf

And here's an example of Ruby in essentially the same role:

http://www.rubygarden.org/ruby?Fract...ine/FleaOpenGl

--
Phlip
http://industrialxp.org/community/bi...UserInterfaces


 
Reply With Quote
 
Basil
Guest
Posts: n/a
 
      03-22-2005
wrote in message news:< roups.com>...
> Hey I'm sorry if this is not the appropriate news group for this
> question. I was wondering if anyone has any recommendation for
> embbedding a script engine in a c++ application. I want to feed my C++
> application scripts which based on the script would create C++ objects
> and call the appropriate methods.
>
> At the moment I created a simple interpreter within our C++ aplication
> that we can feed our custom scripts. The interpreter is primitive and
> it lacks alot of functionality that is why I am looking at other
> alternatives.
>
> I looked at spidermonkey to embed in my c++ application but it seems a
> little cumbersome dealing with C++ objects. Does anyone have any other
> recommendations?



Hello.

Open Basic this is realization of the interpreter of language Basic.

http://www.mktmk.narod.ru/eng/ob/ob.htm

Open Basic (OB) is realization of the interpreter of language Basic.
OB is developed for embed to user application as a script language.
User may attach (connect) user function to Open Basic execution
system.
The user functions can be written on C/C++, assembler or others
languages.
The user functions can receive parameters from the Basic-program and
return results to Basic-program.
Program interface of user functions allows determine type and order
of parameters at run-time.
OB realizes a subset of commands of language Basic.
OB it is written completely on C++ and it is realized as a class with
a name ob_obasic.
OB supports data of three types: floating point, signed integer, and
string and arrays of these types.
OB has multithread-safe code.

Now OB have library for GCC 3.2.2, BCB 6.0, MSVC 7.

For use OB need only one library for appropriated compiler and 6
header files:

mstore.h - policy
mvect.h - vector
mlist.h - list
mstack.h - stack
mhash.h - hash-table
ob.h - main header file of Open Basic


Open Basic have IDE for program debug.

Integrated development environment for Open Basic (IDE OB) is
intended for support of debugging programs of interpreter Open Basic.

http://www.mktmk.narod.ru/eng/ide_ob/ide_ob.htm

IDE OB can be an example for integration of interpreter Open Basic
for
OS Windows.

IDE OB is not a part of interpreter Open Basic.
Interpreter Open Basic can use without IDE OB.

IDE OB gives usual service of the debugging environment:
- Edit the text of programs
- Loading programs into interpreter (some modes)
- Start of program in the interpreter
- Stop program
- Step-by-step execution of program
- Animate execution of program
- Breakpoints (on interpreter level, do not support IDE OB)
- Viewing and updating variables ("Watch" window)
- Viewing diagnostic messages of the interpreter ("Messages" window)
- Support of operators PRINT and INPUT ("I/O Terminal" window)

IDE OB is written on Borland C++ Builder 6.0 (BCB 6.0).

Sincerely Yours
Basil
 
Reply With Quote
 
Asfand Yar Qazi
Guest
Posts: n/a
 
      03-24-2005
Phlip wrote:
>>What do you think about Ruby?

>
>
> It competes successfully with both Perl and Smalltalk, wisely leaving behind
> the worst of both. My velocity using Ruby is triple that of any other
> language.
>
> Compare traversing a heterogeous list in Ruby to, say, Java:
>
> myList.each { |node| node.virtualMethod() }
>
> How many tokens would Java require to claw its way to the same (common)
> result?


I, too, now consider Ruby my scripting language of choice.
Integrating it with C++ needs the usual setjmp/longjmp exception
support hacks as with any other scripting languages that support
setjmp/longjmp exceptions. But the extensions API is probably the
best I've seen.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Are there anybody using python as the script engine for ASP? nonamehkg@hotmail.com Python 2 01-08-2006 10:40 AM
[ANN] New script engine (Basic syntax) MKTMK C++ 0 07-15-2005 02:11 PM
search engine ASP script - GET vs POST Kevin Blount ASP General 3 04-11-2005 01:31 PM
asp script engine registrition jianchiwei Python 2 04-29-2004 05:08 AM
Script engine exception? Dean J. Garrett ASP General 0 02-18-2004 10:42 PM



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