Git Product home page Git Product logo

Comments (3)

gitttt avatar gitttt commented on August 19, 2024

Here is a full example:

import clips

env = clips.Environment()


binary_class_string = """
(defclass clips_BINARY (is-a USER)
  (slot path))
"""
env.build(binary_class_string)

network_function_class_string = """
(defclass clips_NETWORK_FUNCTION (is-a USER)
  (slot binary)
  (slot start_address))
"""
env.build(network_function_class_string)


make_binary_instance_string = '(make-instance UniversalSample.exe of clips_BINARY (path /path/to/binary))'
env.eval(make_binary_instance_string)
instance_just_created = env.find_instance("UniversalSample.exe")
print(instance_just_created)

make_network_function_instance_string = '(make-instance my_func of clips_NETWORK_FUNCTION (binary [UniversalSample.exe])(start_address 4278884))'
env.eval(make_network_function_instance_string)
instance_just_created = env.find_instance("my_func")
print(instance_just_created)
print(type(instance_just_created["binary"]))

from clipspy.

gitttt avatar gitttt commented on August 19, 2024

If I always have to go over the name, e.g. do a

instance_just_created = env.find_instance("my_func")
linked_instance = env.find_instance(instance_just_created["binary"])

how can I know if a slot contains a string or an instance name?

from clipspy.

noxdafox avatar noxdafox commented on August 19, 2024

Your example behaves correctly as you are passing to the binary slot the instance name and not its address. To retrieve the address of an instance, you can use CLIPS instance-address function.

In [3]: env.eval('(make-instance my_func of clips_NETWORK_FUNCTION (binary (instance-address [UniversalSample.exe]))(start_address 4278884))')
Out[3]: 'my_func'

In [4]: instance = env.find_instance('my_func')

In [5]: instance['binary']
Out[5]: Instance: [UniversalSample.exe] of clips_BINARY (path /path/to/binary)

from clipspy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.