123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /**
- * @license
- * Visual Blocks Editor
- *
- * Copyright 2012 Google Inc.
- * https://developers.google.com/blockly/
- *
- * 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 Colour blocks for Blockly.
- * @author fraser@google.com (Neil Fraser)
- */
- 'use strict';
- goog.provide('Blockly.Blocks.camera');
- goog.require('Blockly.Blocks');
- /**
- * Common HSV hue for all blocks in this category.
- */
- Blockly.Blocks.camera.HUE = "#ff6381";
- Blockly.Blocks['camera_import'] = {
- /**
- * @this Blockly.Block
- */
- init: function() {
- this.setColour(Blockly.Blocks.camera.HUE);
- this.appendDummyInput()
- .appendField(Blockly.Msg.CAMERA_IMPORT);
- // this.setInputsInline(false);
- // this.setOutput(true);
- this.setPreviousStatement(true);
- this.setNextStatement(true);
- },
- };
- Blockly.Blocks['camera_use'] = {
- /**
- * @this Blockly.Block
- */
- init: function() {
- this.setColour(Blockly.Blocks.camera.HUE);
- this.appendDummyInput()
- .appendField(Blockly.Msg.CAMERA_USE_AS)
- .appendField(new Blockly.FieldTextInput("camera"),"CAMERA")
- this.appendDummyInput()
- .appendField(Blockly.Msg.CAMERA_SENSOR_MODE)
- .appendField(new Blockly.FieldNumber('4'),"SENSOR")
- this.appendDummyInput()
- .appendField(Blockly.Msg.CAMERA_RESOLUTION)
- .appendField(new Blockly.FieldNumber('1640'),"X")
- .appendField(",")
- .appendField(new Blockly.FieldNumber('1232'),"Y")
- this.appendDummyInput()
- .appendField(Blockly.Msg.CAMERA_FRAME_RATE)
- .appendField(new Blockly.FieldNumber('20'),"FPS")
- .appendField(Blockly.Msg.CAMERA_FPS)
- this.appendStatementInput("STACK")
- .appendField(Blockly.Msg.CAMERA_DO);
- // this.setInputsInline(false);
- // this.setOutput(true);
- this.setPreviousStatement(true);
- this.setNextStatement(true);
- },
- };
- Blockly.Blocks['camera_enable'] = {
- /**
- * @this Blockly.Block
- */
- init: function() {
- this.setColour(Blockly.Blocks.camera.HUE);
- this.appendDummyInput()
- .appendField(new Blockly.FieldDropdown([
- ["Enable","start"],
- ["Disable","stop"]
- ]),"MODE")
- .appendField(Blockly.Msg.CAMERA_CAMERA)
- .appendField(new Blockly.FieldTextInput("camera"),"CAMERA")
- // this.setInputsInline(false);
- // this.setOutput(true);
- this.setPreviousStatement(true);
- this.setNextStatement(true);
- },
- };
- Blockly.Blocks['camera_set_bounding'] = {
- /**
- * @this Blockly.Block
- */
- init: function() {
- this.setColour(Blockly.Blocks.camera.HUE);
- this.appendDummyInput()
- .appendField(Blockly.Msg.CAMERA_SET_BOUNDING)
- .appendField(new Blockly.FieldTextInput("x"),"X")
- .appendField(new Blockly.FieldTextInput("y"),"Y")
- .appendField(new Blockly.FieldTextInput("width"),"WIDTH")
- .appendField(new Blockly.FieldTextInput("height"),"HEIGHT")
- // this.setInputsInline(false);
- // this.setOutput(true);
- this.setPreviousStatement(true);
- this.setNextStatement(true);
- },
- };
|