This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def build_trig_pull(i, ex, args): | |
i.value = hive.attribute() | |
i.value_in = hive.pull_in(i.value) | |
i.value_out = hive.pull_out(i.value) | |
ex.value_in = hive.antenna(i.value_in) | |
ex.value_out = hive.output(i.value_out) | |
i.trig_pre = hive.triggerfunc() | |
i.do_trig_pre = hive.triggerable(i.trig_pre) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hive | |
import dragonfly | |
def build_some_hive(i, ex, args): | |
i.total_score = hive.attribute() | |
i.pull_in_total_score = hive.pull_in(i.total_score) | |
i.pull_out_total_score = hive.pull_out(i.total_score) | |
i.divide_by_players = dragonfly.op.Op(mode="pull", operator="div") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hive | |
class HiveInstantiator_: | |
def __init__(self, hive_cls): | |
self._environment_cls = hive_cls | |
self._plugins = {} | |
self._sockets = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hive | |
class EventBindClass: | |
def __init__(self): | |
pass | |
class EventCls: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hive | |
from hive.classes import Method | |
from ..event import BindEvent | |
class BindCls: | |
def __init__(self): | |
pass |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.