Skip to content

Commit fe59603

Browse files
ericxericx
ericx
authored and
ericx
committed
Blackbox stuff mostly done
1 parent 9c0e17d commit fe59603

File tree

5 files changed

+50
-6
lines changed

5 files changed

+50
-6
lines changed

src/app/library/template.ts

+1
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ export default class Template {
380380
const features: Array<paper.Rectangle> = [];
381381
for (let i = 0; i < renderkeys.length; i++) {
382382
const feature = this.render2D(params, renderkeys[i]);
383+
feature.visible = false; //Find workaround for this
383384
if(feature instanceof paper.PointText){
384385
continue;
385386
}

src/app/library/transposer.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,20 +108,20 @@ export default class Transposer extends Template {
108108
position: "position"
109109
};
110110

111-
this.__renderKeys = ["FLOW", "CONTROL", "INVERSE"];
111+
this.__renderKeys = ["FLOW", "CONTROL"];
112112

113113
this.__mint = "TRANSPOSER";
114114

115115
this.__zOffsetKeys = {
116116
FLOW: "height",
117117
CONTROL: "height",
118-
INVERSE: "height"
118+
// INVERSE: "height"
119119
};
120120

121121
this.__substrateOffset = {
122122
FLOW: "0",
123123
CONTROL: "+1",
124-
INVERSE: "0"
124+
// INVERSE: "0"
125125
};
126126
}
127127

src/app/utils/loadUtils.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ export default class LoadUtils {
592592

593593
if (iscustomcomponent) {
594594
//Grab the black box definition (Eric)
595-
definition = CustomComponent.defaultParameterDefinitions();
595+
definition = ComponentAPI.getBlackBoxDefinition(xspan, yspan, []);
596596
} else {
597597
definition = ComponentAPI.getDefinitionForMINT(entity);
598598

@@ -611,7 +611,7 @@ export default class LoadUtils {
611611
let type;
612612
let value;
613613
for (const key in json.params) {
614-
//What does this do (Eric)?
614+
// We check if the if the parameter (defined by key) is there inside the definition (heritable or unique)
615615
if (Object.prototype.hasOwnProperty.call(definition.heritable, key)) {
616616
type = definition.heritable[key];
617617
} else if (Object.prototype.hasOwnProperty.call(definition.unique, key)) {
@@ -644,7 +644,7 @@ export default class LoadUtils {
644644
params.position = [0.0, 0.0];
645645
}
646646

647-
//What is this doing? (Eric)
647+
// We need to convert here because one is Map type datastructure and the other is a simple object
648648
const unique_map = MapUtils.toMap(definition.unique);
649649
const heritable_map = MapUtils.toMap(definition.heritable);
650650
//Assuming I just have to change the params to match the black box params (Eric) !!!

src/app/view/render2D/componentPortRenderer2D.ts

+8
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ export default class ComponentPortRenderer2D {
3535
return ret;
3636
}
3737

38+
/**
39+
* Renders all the component ports for a given component
40+
*
41+
* @static
42+
* @param {Component} component
43+
* @return {*}
44+
* @memberof ComponentPortRenderer2D
45+
*/
3846
static renderComponentPorts(component: Component) {
3947
const rendersize = ComponentPortRenderer2D.getSizeforZoomLevel();
4048
const componentports = component.ports;

src/componentAPI.ts

+35
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ type FeatureLibraryEntry = {
9393
* @class ComponentAPI
9494
*/
9595
export class ComponentAPI {
96+
97+
// The blackbox entry
98+
static blackboxEntryFlow : LibraryEntry = { object: new BlackBox(), key: "FLOW" };
99+
static blackboxEntryControl : LibraryEntry = { object: new BlackBox(), key: "CONTROL" };
100+
static blackboxEntryIntegration : LibraryEntry = { object: new BlackBox(), key: "INTEGRATION" };
101+
102+
// The library of components
96103
static library: { [key: string]: LibraryEntry } = {
97104
Template: { object: new Template(), key: "FLOW" },
98105
Text: { object: new Text(), key: "FLOW" },
@@ -541,4 +548,32 @@ export class ComponentAPI {
541548
}
542549
return ret;
543550
}
551+
552+
553+
/**
554+
* Rertuns the definition of the blackbox entry
555+
*
556+
* @static
557+
* @param {*} entity
558+
* @memberof ComponentAPI
559+
*/
560+
static getBlackBoxDefinition(xspan: number, yspan: number, ports: Array<any>): LibraryEntryDefinition {
561+
// TODO: Deal with the ports later
562+
// Create a fake definition for the blackbox
563+
564+
// TODO: How to pass xspan, yspan, ports to the blackbox?
565+
let definition = ComponentAPI.blackboxEntryFlow.object;
566+
let ret = {
567+
unique: definition.unique,
568+
heritable: definition.heritable,
569+
units: definition.units,
570+
defaults: definition.defaults,
571+
minimum: definition.minimum,
572+
maximum: definition.maximum,
573+
mint: definition.mint
574+
};
575+
return ret;
576+
}
544577
}
578+
579+

0 commit comments

Comments
 (0)