[zelos] Add right connection shape element. (#3488)

* Add right connection shape element
This commit is contained in:
Sam El-Husseini
2019-12-05 17:51:39 -08:00
committed by GitHub
parent bcb9e949d2
commit 4eb791bd70
7 changed files with 97 additions and 58 deletions

View File

@@ -119,8 +119,9 @@ goog.addDependency("../../core/renderers/thrasos/info.js", ['Blockly.thrasos', '
goog.addDependency("../../core/renderers/thrasos/renderer.js", ['Blockly.thrasos.Renderer'], ['Blockly.blockRendering', 'Blockly.blockRendering.Renderer', 'Blockly.thrasos.RenderInfo', 'Blockly.utils.object']);
goog.addDependency("../../core/renderers/zelos/constants.js", ['Blockly.zelos.ConstantProvider'], ['Blockly.blockRendering.ConstantProvider', 'Blockly.utils.dom', 'Blockly.utils.object', 'Blockly.utils.svgPaths']);
goog.addDependency("../../core/renderers/zelos/drawer.js", ['Blockly.zelos.Drawer'], ['Blockly.blockRendering.ConstantProvider', 'Blockly.blockRendering.Drawer', 'Blockly.blockRendering.Types', 'Blockly.utils.object', 'Blockly.zelos.RenderInfo']);
goog.addDependency("../../core/renderers/zelos/info.js", ['Blockly.zelos', 'Blockly.zelos.RenderInfo'], ['Blockly.blockRendering.BottomRow', 'Blockly.blockRendering.ExternalValueInput', 'Blockly.blockRendering.InlineInput', 'Blockly.blockRendering.InputRow', 'Blockly.blockRendering.Measurable', 'Blockly.blockRendering.NextConnection', 'Blockly.blockRendering.OutputConnection', 'Blockly.blockRendering.PreviousConnection', 'Blockly.blockRendering.RenderInfo', 'Blockly.blockRendering.RoundCorner', 'Blockly.blockRendering.Row', 'Blockly.blockRendering.SquareCorner', 'Blockly.blockRendering.SpacerRow', 'Blockly.blockRendering.StatementInput', 'Blockly.blockRendering.TopRow', 'Blockly.blockRendering.Types', 'Blockly.utils.object', 'Blockly.zelos.AfterStatementSpacerRow', 'Blockly.zelos.BeforeStatementSpacerRow', 'Blockly.zelos.BottomRow', 'Blockly.zelos.TopRow']);
goog.addDependency("../../core/renderers/zelos/info.js", ['Blockly.zelos', 'Blockly.zelos.RenderInfo'], ['Blockly.blockRendering.BottomRow', 'Blockly.blockRendering.ExternalValueInput', 'Blockly.blockRendering.InlineInput', 'Blockly.blockRendering.InputRow', 'Blockly.blockRendering.Measurable', 'Blockly.blockRendering.NextConnection', 'Blockly.blockRendering.OutputConnection', 'Blockly.blockRendering.PreviousConnection', 'Blockly.blockRendering.RenderInfo', 'Blockly.blockRendering.RoundCorner', 'Blockly.blockRendering.Row', 'Blockly.blockRendering.SquareCorner', 'Blockly.blockRendering.SpacerRow', 'Blockly.blockRendering.StatementInput', 'Blockly.blockRendering.TopRow', 'Blockly.blockRendering.Types', 'Blockly.utils.object', 'Blockly.zelos.AfterStatementSpacerRow', 'Blockly.zelos.BeforeStatementSpacerRow', 'Blockly.zelos.BottomRow', 'Blockly.zelos.RightConnectionShape', 'Blockly.zelos.TopRow']);
goog.addDependency("../../core/renderers/zelos/marker_svg.js", ['Blockly.zelos.MarkerSvg'], ['Blockly.blockRendering.MarkerSvg']);
goog.addDependency("../../core/renderers/zelos/measurables/row_elements.js", ['Blockly.zelos.RightConnectionShape'], ['Blockly.blockRendering.Measurable', 'Blockly.blockRendering.Types', 'Blockly.utils.object']);
goog.addDependency("../../core/renderers/zelos/measurables/rows.js", ['Blockly.zelos.BottomRow', 'Blockly.zelos.TopRow', 'Blockly.zelos.AfterStatementSpacerRow', 'Blockly.zelos.BeforeStatementSpacerRow'], ['Blockly.blockRendering.BottomRow', 'Blockly.blockRendering.TopRow', 'Blockly.blockRendering.SpacerRow', 'Blockly.utils.object']);
goog.addDependency("../../core/renderers/zelos/path_object.js", ['Blockly.zelos.PathObject'], ['Blockly.blockRendering.PathObject', 'Blockly.zelos.ConstantProvider', 'Blockly.utils.dom', 'Blockly.utils.object']);
goog.addDependency("../../core/renderers/zelos/renderer.js", ['Blockly.zelos.Renderer'], ['Blockly.blockRendering', 'Blockly.blockRendering.Renderer', 'Blockly.utils.object', 'Blockly.zelos.ConstantProvider', 'Blockly.zelos.Drawer', 'Blockly.zelos.PathObject', 'Blockly.zelos.RenderInfo', 'Blockly.zelos.MarkerSvg']);

View File

@@ -364,6 +364,9 @@ Blockly.blockRendering.Debug.prototype.drawDebug = function(block, info) {
if (block.outputConnection) {
this.drawConnection(block.outputConnection);
}
if (info.rightSide) {
this.drawRenderedElem(info.rightSide, info.RTL);
}
this.drawBoundingBox(info);
};

View File

@@ -728,7 +728,8 @@ Blockly.blockRendering.RenderInfo.prototype.finalize_ = function() {
this.recordElemPositions_(row);
}
this.widthWithChildren = widestRowWithConnectedBlocks + this.startX;
this.widthWithChildren = Math.max(this.widthWithChildren,
widestRowWithConnectedBlocks + this.startX);
this.height = yCursor;
this.startY = this.topRow.capline;

View File

@@ -69,9 +69,9 @@ Blockly.blockRendering.OutputConnection = function(constants, connectionModel) {
constants, connectionModel);
this.type |= Blockly.blockRendering.Types.OUTPUT_CONNECTION;
this.setShapeDimensions(
!this.isDynamicShape ? this.shape.height : 0,
!this.isDynamicShape ? this.shape.width : 0);
this.height = !this.isDynamicShape ? this.shape.height : 0;
this.width = !this.isDynamicShape ? this.shape.width : 0;
this.startX = this.width;
this.connectionOffsetY = this.constants_.TAB_OFFSET_FROM_TOP;
};
@@ -79,18 +79,6 @@ Blockly.utils.object.inherits(Blockly.blockRendering.OutputConnection,
Blockly.blockRendering.Connection);
/**
* Sets properties that depend on the connection shape dimensions.
* @param {number} height Height of the connection shape.
* @param {number} width Width of the connection shape.
*/
Blockly.blockRendering.OutputConnection.prototype.setShapeDimensions = function(
height, width) {
this.height = height;
this.width = width;
this.startX = this.width;
};
/**
* An object containing information about the space a previous connection takes
* up during rendering.

View File

@@ -45,6 +45,7 @@ goog.require('Blockly.utils.object');
goog.require('Blockly.zelos.AfterStatementSpacerRow');
goog.require('Blockly.zelos.BeforeStatementSpacerRow');
goog.require('Blockly.zelos.BottomRow');
goog.require('Blockly.zelos.RightConnectionShape');
goog.require('Blockly.zelos.TopRow');
@@ -82,6 +83,13 @@ Blockly.zelos.RenderInfo = function(renderer, block) {
* @override
*/
this.isInline = true;
/**
* An object with rendering information about the right connection shape.
* @type {Blockly.zelos.RightConnectionShape}
*/
this.rightSide = this.outputConnection ?
new Blockly.zelos.RightConnectionShape(this.constants_) : null;
};
Blockly.utils.object.inherits(Blockly.zelos.RenderInfo,
Blockly.blockRendering.RenderInfo);
@@ -109,20 +117,6 @@ Blockly.zelos.RenderInfo.prototype.measure = function() {
this.finalize_();
};
/**
* @override
*/
Blockly.zelos.RenderInfo.prototype.computeBounds_ = function() {
Blockly.zelos.RenderInfo.superClass_.computeBounds_.call(this);
if (this.outputConnection && this.outputConnection.isDynamicShape) {
// Add right connection width.
var rightConnectionWidth = this.outputConnection.width;
this.width += rightConnectionWidth;
this.widthWithChildren += rightConnectionWidth;
}
};
/**
* @override
*/
@@ -259,42 +253,45 @@ Blockly.zelos.RenderInfo.prototype.adjustXPosition_ = function() {
};
/**
* @override
* Finalize the output connection info. In particular set the height of the
* output connection to match that of the block. For the right side, add a
* right connection shape element and have it match the dimensions of the
* output connection.
* @protected
*/
Blockly.zelos.RenderInfo.prototype.finalize_ = function() {
// Performance note: this could be combined with the draw pass, if the time
// that this takes is excessive. But it shouldn't be, because it only
// accesses and sets properties that already exist on the objects.
Blockly.zelos.RenderInfo.prototype.finalizeOutputConnection_ = function() {
var yCursor = 0;
// Determine the block height.
for (var i = 0, row; (row = this.rows[i]); i++) {
row.yPos = yCursor;
yCursor += row.height;
}
this.height = yCursor;
if (this.outputConnection && this.outputConnection.isDynamicShape) {
// Dynamic output connections depend on the height of the block. Adjust the
// height of the connection.
this.outputConnection.setShapeDimensions(
this.outputConnection.shape.height(this.height),
this.outputConnection.shape.width(this.height));
var connectionHeight = this.outputConnection.shape.height(yCursor);
var connectionWidth = this.outputConnection.shape.width(yCursor);
// Recompute the bounds as we now know the output connection dimensions.
this.computeBounds_();
this.outputConnection.height = connectionHeight;
this.outputConnection.width = connectionWidth;
this.outputConnection.startX = connectionWidth;
// Adjust right side measurable.
this.rightSide.height = connectionHeight;
this.rightSide.width = connectionWidth;
this.rightSide.centerline = connectionHeight / 2;
this.rightSide.xPos = this.width + connectionWidth;
this.startX = connectionWidth;
this.width += connectionWidth * 2;
this.widthWithChildren += connectionWidth * 2;
}
var widestRowWithConnectedBlocks = 0;
for (var i = 0, row; (row = this.rows[i]); i++) {
row.xPos = this.startX;
widestRowWithConnectedBlocks =
Math.max(widestRowWithConnectedBlocks, row.widthWithConnectedBlocks);
this.recordElemPositions_(row);
}
this.widthWithChildren = Math.max(this.widthWithChildren,
widestRowWithConnectedBlocks + this.startX);
this.startY = this.topRow.capline;
this.bottomRow.baseline = this.height - this.bottomRow.descenderHeight;
};
/**
* @override
*/
Blockly.zelos.RenderInfo.prototype.finalize_ = function() {
this.finalizeOutputConnection_();
Blockly.zelos.RenderInfo.superClass_.finalize_.call(this);
};

View File

@@ -0,0 +1,48 @@
/**
* @license
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview Zelos specific objects representing elements in a row of a
* rendered block.
* @author samelh@google.com (Sam El-Husseini)
*/
goog.provide('Blockly.zelos.RightConnectionShape');
goog.require('Blockly.blockRendering.Measurable');
goog.require('Blockly.blockRendering.Types');
goog.require('Blockly.utils.object');
/**
* An object containing information about the space a right connection shape
* takes up during rendering.
* @param {!Blockly.blockRendering.ConstantProvider} constants The rendering
* constants provider.
* @package
* @constructor
* @extends {Blockly.blockRendering.Measurable}
*/
Blockly.zelos.RightConnectionShape = function(constants) {
Blockly.zelos.RightConnectionShape.superClass_.constructor.call(this, constants);
this.type |= Blockly.blockRendering.Types.getType('RIGHT_CONNECTION');
// Size is dynamic
this.height = 0;
this.width = 0;
};
Blockly.utils.object.inherits(Blockly.zelos.RightConnectionShape,
Blockly.blockRendering.Measurable);

View File

@@ -33,6 +33,7 @@
goog.require('Blockly.blockRendering.Debug');
goog.require('Blockly.zelos.Renderer');
// Blockly.blockRendering.startDebugger();
var blocklyDiv = document.getElementById('blocklyDiv');
var workspace;
window.addEventListener('message', function (msg) {