Files
blockly/core/renderers/geras/drawer.js
Sam El-Husseini ee09aafd57 [zelos] Add input outlines on the path object. (#3410)
* Add input outlines on the path object.
2019-11-07 15:15:49 -08:00

215 lines
5.8 KiB
JavaScript

/**
* @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 Renderer that preserves the look and feel of Blockly pre-2019.
* @author fenichel@google.com (Rachel Fenichel)
*/
'use strict';
goog.provide('Blockly.geras.Drawer');
goog.require('Blockly.blockRendering.ConstantProvider');
goog.require('Blockly.blockRendering.Drawer');
goog.require('Blockly.geras.Highlighter');
goog.require('Blockly.geras.RenderInfo');
goog.require('Blockly.utils.object');
goog.require('Blockly.utils.svgPaths');
goog.requireType('Blockly.geras.PathObject');
/**
* An object that draws a block based on the given rendering information.
* @param {!Blockly.BlockSvg} block The block to render.
* @param {!Blockly.geras.RenderInfo} info An object containing all
* information needed to render this block.
* @package
* @constructor
* @extends {Blockly.blockRendering.Drawer}
*/
Blockly.geras.Drawer = function(block, info) {
Blockly.geras.Drawer.superClass_.constructor.call(this, block, info);
// Unlike Thrasos, Geras has highlights and drop shadows.
this.highlighter_ = new Blockly.geras.Highlighter(info);
};
Blockly.utils.object.inherits(Blockly.geras.Drawer,
Blockly.blockRendering.Drawer);
/**
* @override
*/
Blockly.geras.Drawer.prototype.draw = function() {
this.hideHiddenIcons_();
this.drawOutline_();
this.drawInternals_();
var pathObject =
/** @type {!Blockly.geras.PathObject} */ (this.block_.pathObject);
pathObject.setPath(this.outlinePath_ + '\n' + this.inlinePath_);
pathObject.setHighlightPath(this.highlighter_.getPath());
if (this.info_.RTL) {
pathObject.flipRTL();
}
if (Blockly.blockRendering.useDebugger) {
this.block_.renderingDebugger.drawDebug(this.block_, this.info_);
}
this.recordSizeOnBlock_();
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawTop_ = function() {
this.highlighter_.drawTopCorner(this.info_.topRow);
this.highlighter_.drawRightSideRow(this.info_.topRow);
Blockly.geras.Drawer.superClass_.drawTop_.call(this);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawJaggedEdge_ = function(row) {
this.highlighter_.drawJaggedEdge_(row);
Blockly.geras.Drawer.superClass_.drawJaggedEdge_.call(this, row);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawValueInput_ = function(row) {
this.highlighter_.drawValueInput(row);
Blockly.geras.Drawer.superClass_.drawValueInput_.call(this, row);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawStatementInput_ = function(row) {
this.highlighter_.drawStatementInput(row);
Blockly.geras.Drawer.superClass_.drawStatementInput_.call(this, row);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawRightSideRow_ = function(row) {
this.highlighter_.drawRightSideRow(row);
Blockly.geras.Drawer.superClass_.drawRightSideRow_.call(this, row);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawBottom_ = function() {
this.highlighter_.drawBottomRow(this.info_.bottomRow);
Blockly.geras.Drawer.superClass_.drawBottom_.call(this);
};
/**
* Add steps for the left side of the block, which may include an output
* connection
* @private
*/
Blockly.geras.Drawer.prototype.drawLeft_ = function() {
this.highlighter_.drawLeft();
Blockly.geras.Drawer.superClass_.drawLeft_.call(this);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.drawInlineInput_ = function(input) {
this.highlighter_.drawInlineInput(input);
Blockly.geras.Drawer.superClass_.drawInlineInput_.call(this, input);
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.positionInlineInputConnection_ = function(input) {
var yPos = input.centerline - input.height / 2;
// Move the connection.
if (input.connection) {
// xPos already contains info about startX
var connX = input.xPos + input.connectionWidth +
this.constants_.DARK_PATH_OFFSET;
if (this.info_.RTL) {
connX *= -1;
}
input.connection.setOffsetInBlock(
connX, yPos + input.connectionOffsetY +
this.constants_.DARK_PATH_OFFSET);
}
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.positionStatementInputConnection_ = function(row) {
var input = row.getLastInput();
if (input.connection) {
var connX = row.xPos + row.statementEdge + input.notchOffset;
if (this.info_.RTL) {
connX *= -1;
} else {
connX += this.constants_.DARK_PATH_OFFSET;
}
input.connection.setOffsetInBlock(connX,
row.yPos + this.constants_.DARK_PATH_OFFSET);
}
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.positionExternalValueConnection_ = function(row) {
var input = row.getLastInput();
if (input.connection) {
var connX = row.xPos + row.width +
this.constants_.DARK_PATH_OFFSET;
if (this.info_.RTL) {
connX *= -1;
}
input.connection.setOffsetInBlock(connX, row.yPos);
}
};
/**
* @override
*/
Blockly.geras.Drawer.prototype.positionNextConnection_ = function() {
var bottomRow = this.info_.bottomRow;
if (bottomRow.connection) {
var connInfo = bottomRow.connection;
var x = connInfo.xPos; // Already contains info about startX
var connX = (this.info_.RTL ? -x : x) +
(this.constants_.DARK_PATH_OFFSET / 2);
connInfo.connectionModel.setOffsetInBlock(
connX, (connInfo.centerline - connInfo.height / 2) +
this.constants_.DARK_PATH_OFFSET);
}
};