123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- /**
- * @license
- * Visual Blocks Language
- *
- * 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 Generating Python for math blocks.
- * @author q.neutron@gmail.com (Quynh Neutron)
- */
- 'use strict';
- goog.provide('Blockly.Python.math');
- goog.require('Blockly.Python');
- // If any new block imports any library, add that library name here.
- Blockly.Python.addReservedWords('math,random,Number');
- Blockly.Python['math_number'] = function(block) {
- // Numeric value.
- var code = parseFloat(block.getFieldValue('NUM'));
- var order;
- if (code == Infinity) {
- code = 'float("inf")';
- order = Blockly.Python.ORDER_FUNCTION_CALL;
- } else if (code == -Infinity) {
- code = '-float("inf")';
- order = Blockly.Python.ORDER_UNARY_SIGN;
- } else {
- order = code < 0 ? Blockly.Python.ORDER_UNARY_SIGN :
- Blockly.Python.ORDER_ATOMIC;
- }
- return [code, order];
- };
- Blockly.Python['math_arithmetic'] = function(block) {
- // Basic arithmetic operators, and power.
- var OPERATORS = {
- 'ADD': [' + ', Blockly.Python.ORDER_ADDITIVE],
- 'MINUS': [' - ', Blockly.Python.ORDER_ADDITIVE],
- 'MULTIPLY': [' * ', Blockly.Python.ORDER_MULTIPLICATIVE],
- 'DIVIDE': [' / ', Blockly.Python.ORDER_MULTIPLICATIVE],
- 'POWER': [' ** ', Blockly.Python.ORDER_EXPONENTIATION],
- 'MODULO': [' % ', Blockly.Python.ORDER_MULTIPLICATIVE]
- };
- var tuple = OPERATORS[block.getFieldValue('OP')];
- var operator = tuple[0];
- var order = tuple[1];
- var argument0 = Blockly.Python.valueToCode(block, 'A', order) || '___';
- var argument1 = Blockly.Python.valueToCode(block, 'B', order) || '___';
- var code = argument0 + operator + argument1;
- return [code, order];
- // In case of 'DIVIDE', division between integers returns different results
- // in Python 2 and 3. However, is not an issue since Blockly does not
- // guarantee identical results in all languages. To do otherwise would
- // require every operator to be wrapped in a function call. This would kill
- // legibility of the generated code.
- };
- Blockly.Python['math_single'] = function(block) {
- // Math operators with single operand.
- var operator = block.getFieldValue('OP');
- var code;
- var arg;
- if (operator == 'NEG') {
- // Negation is a special case given its different operator precedence.
- var code = Blockly.Python.valueToCode(block, 'NUM',
- Blockly.Python.ORDER_UNARY_SIGN) || '___';
- return ['-' + code, Blockly.Python.ORDER_UNARY_SIGN];
- }
- if (operator != 'ABS' && operator != 'POW' && operator != 'ROUND') {
- Blockly.Python.definitions_['import_math'] = 'import math';
- }
- if (operator == 'SIN' || operator == 'COS' || operator == 'TAN') {
- arg = Blockly.Python.valueToCode(block, 'NUM',
- Blockly.Python.ORDER_MULTIPLICATIVE) || '___';
- } else {
- arg = Blockly.Python.valueToCode(block, 'NUM',
- Blockly.Python.ORDER_NONE) || '___';
- }
- // First, handle cases which generate values that don't need parentheses
- // wrapping the code.
- switch (operator) {
- case 'ABS':
- code = 'abs(' + arg + ')';
- break;
- case 'ROOT':
- code = 'math.sqrt(' + arg + ')';
- break;
- case 'DEGRAD_DEG':
- code = 'math.degrees(' + arg + ')';
- break;
- case 'DEGRAD_RAD':
- code = 'math.radians(' + arg + ')';
- break;
- case 'LN':
- code = 'math.log(' + arg + ')';
- break;
- case 'LOG10':
- code = 'math.log10(' + arg + ')';
- break;
- case 'EXP':
- code = 'math.exp(' + arg + ')';
- break;
- case 'POW10':
- code = 'pow(10,' + arg + ')';
- break;
- case 'ROUND':
- code = 'round(' + arg + ')';
- break;
- case 'ROUNDUP':
- code = 'math.ceil(' + arg + ')';
- break;
- case 'ROUNDDOWN':
- code = 'math.floor(' + arg + ')';
- break;
- case 'SIN':
- code = 'math.sin(' + arg + ' / 180.0 * math.pi)';
- break;
- case 'COS':
- code = 'math.cos(' + arg + ' / 180.0 * math.pi)';
- break;
- case 'TAN':
- code = 'math.tan(' + arg + ' / 180.0 * math.pi)';
- break;
- }
- if (code) {
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- }
- // Second, handle cases which generate values that may need parentheses
- // wrapping the code.
- switch (operator) {
- case 'ASIN':
- // code = 'math.asin(' + arg + ') / math.pi * 180';
- code = 'math.asin(' + arg + ')';
- break;
- case 'ACOS':
- // code = 'math.acos(' + arg + ') / math.pi * 180';
- code = 'math.acos(' + arg + ')';
- break;
- case 'ATAN':
- // code = 'math.atan(' + arg + ') / math.pi * 180';
- code = 'math.atan(' + arg + ')';
- break;
- default:
- throw 'Unknown math operator: ' + operator;
- }
- return [code, Blockly.Python.ORDER_MULTIPLICATIVE];
- };
- Blockly.Python['math_constant'] = function(block) {
- // Constants: PI, E, the Golden Ratio, sqrt(2), 1/sqrt(2), INFINITY.
- var CONSTANTS = {
- 'PI': ['math.pi', Blockly.Python.ORDER_MEMBER],
- 'E': ['math.e', Blockly.Python.ORDER_MEMBER],
- 'GOLDEN_RATIO': ['(1 + math.sqrt(5)) / 2',
- Blockly.Python.ORDER_MULTIPLICATIVE],
- 'SQRT2': ['math.sqrt(2)', Blockly.Python.ORDER_MEMBER],
- 'SQRT1_2': ['math.sqrt(1.0 / 2)', Blockly.Python.ORDER_MEMBER],
- 'INFINITY': ['float(\'inf\')', Blockly.Python.ORDER_ATOMIC]
- };
- var constant = block.getFieldValue('CONSTANT');
- if (constant != 'INFINITY') {
- Blockly.Python.definitions_['import_math'] = 'import math';
- }
- return CONSTANTS[constant];
- };
- Blockly.Python['math_number_property'] = function(block) {
- // Check if a number is even, odd, prime, whole, positive, or negative
- // or if it is divisible by certain number. Returns true or false.
- var number_to_check = Blockly.Python.valueToCode(block, 'NUMBER_TO_CHECK',
- Blockly.Python.ORDER_MULTIPLICATIVE) || '___';
- var dropdown_property = block.getFieldValue('PROPERTY');
- var code;
- if (dropdown_property == 'PRIME') {
- Blockly.Python.definitions_['import_math'] = 'import math';
- Blockly.Python.definitions_['from_numbers_import_Number'] =
- 'from numbers import Number';
- var functionName = Blockly.Python.provideFunction_(
- 'math_isPrime',
- ['def ' + Blockly.Python.FUNCTION_NAME_PLACEHOLDER_ + '(n):',
- ' # https://en.wikipedia.org/wiki/Primality_test#Naive_methods',
- ' # If n is not a number but a string, try parsing it.',
- ' if not isinstance(n, Number):',
- ' try:',
- ' n = float(n)',
- ' except:',
- ' return False',
- ' if n == 2 or n == 3:',
- ' return True',
- ' # False if n is negative, is 1, or not whole,' +
- ' or if n is divisible by 2 or 3.',
- ' if n <= 1 or n % 1 != 0 or n % 2 == 0 or n % 3 == 0:',
- ' return False',
- ' # Check all the numbers of form 6k +/- 1, up to sqrt(n).',
- ' for x in range(6, int(math.sqrt(n)) + 2, 6):',
- ' if n % (x - 1) == 0 or n % (x + 1) == 0:',
- ' return False',
- ' return True']);
- code = functionName + '(' + number_to_check + ')';
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- }
- switch (dropdown_property) {
- case 'EVEN':
- code = number_to_check + ' % 2 == 0';
- break;
- case 'ODD':
- code = number_to_check + ' % 2 == 1';
- break;
- case 'WHOLE':
- code = number_to_check + ' % 1 == 0';
- break;
- case 'POSITIVE':
- code = number_to_check + ' > 0';
- break;
- case 'NEGATIVE':
- code = number_to_check + ' < 0';
- break;
- case 'DIVISIBLE_BY':
- var divisor = Blockly.Python.valueToCode(block, 'DIVISOR',
- Blockly.Python.ORDER_MULTIPLICATIVE);
- // If 'divisor' is some code that evals to 0, Python will raise an error.
- if (!divisor || divisor == '0') {
- return ['False', Blockly.Python.ORDER_ATOMIC];
- }
- code = number_to_check + ' % ' + divisor + ' == 0';
- break;
- }
- return [code, Blockly.Python.ORDER_RELATIONAL];
- };
- Blockly.Python['math_change'] = function(block) {
- // Add to a variable in place.
- //Blockly.Python.definitions_['from_numbers_import_Number'] =
- // 'from numbers import Number';
- var argument0 = Blockly.Python.valueToCode(block, 'DELTA',
- Blockly.Python.ORDER_ADDITIVE) || '___';
- var varName = Blockly.Python.variableDB_.getName(block.getFieldValue('VAR'),
- Blockly.Variables.NAME_TYPE);
- return varName + ' += ' + argument0 + '\n';
- };
- // Rounding functions have a single operand.
- Blockly.Python['math_round'] = Blockly.Python['math_single'];
- // Trigonometry functions have a single operand.
- Blockly.Python['math_trig'] = Blockly.Python['math_single'];
- Blockly.Python['math_on_list'] = function(block) {
- // Math functions for lists.
- var func = block.getFieldValue('OP');
- var list = Blockly.Python.valueToCode(block, 'LIST',
- Blockly.Python.ORDER_NONE) || '___';
- var code;
- switch (func) {
- case 'SUM':
- code = 'sum(' + list + ')';
- break;
- case 'MIN':
- code = 'min(' + list + ')';
- break;
- case 'MAX':
- code = 'max(' + list + ')';
- break;
- case 'AVERAGE':
- Blockly.Python.definitions_['from_numbers_import_Number'] =
- 'from numbers import Number';
- var functionName = Blockly.Python.provideFunction_(
- 'math_mean',
- // This operation excludes null and values that aren't int or float:',
- // math_mean([null, null, "aString", 1, 9]) == 5.0.',
- ['def ' + Blockly.Python.FUNCTION_NAME_PLACEHOLDER_ + '(myList):',
- ' localList = [e for e in myList if isinstance(e, Number)]',
- ' if not localList: return',
- ' return float(sum(localList)) / len(localList)']);
- code = functionName + '(' + list + ')';
- break;
- case 'MEDIAN':
- Blockly.Python.definitions_['from_numbers_import_Number'] =
- 'from numbers import Number';
- var functionName = Blockly.Python.provideFunction_(
- 'math_median',
- // This operation excludes null values:
- // math_median([null, null, 1, 3]) == 2.0.
- ['def ' + Blockly.Python.FUNCTION_NAME_PLACEHOLDER_ + '(myList):',
- ' localList = sorted([e for e in myList if isinstance(e, Number)])',
- ' if not localList: return',
- ' if len(localList) % 2 == 0:',
- ' return (localList[len(localList) // 2 - 1] + ' +
- 'localList[len(localList) // 2]) / 2.0',
- ' else:',
- ' return localList[(len(localList) - 1) // 2]']);
- code = functionName + '(' + list + ')';
- break;
- case 'MODE':
- var functionName = Blockly.Python.provideFunction_(
- 'math_modes',
- // As a list of numbers can contain more than one mode,
- // the returned result is provided as an array.
- // Mode of [3, 'x', 'x', 1, 1, 2, '3'] -> ['x', 1].
- ['def ' + Blockly.Python.FUNCTION_NAME_PLACEHOLDER_ + '(some_list):',
- ' modes = []',
- ' # Using a lists of [item, count] to keep count rather than dict',
- ' # to avoid "unhashable" errors when the counted item is ' +
- 'itself a list or dict.',
- ' counts = []',
- ' maxCount = 1',
- ' for item in some_list:',
- ' found = False',
- ' for count in counts:',
- ' if count[0] == item:',
- ' count[1] += 1',
- ' maxCount = max(maxCount, count[1])',
- ' found = True',
- ' if not found:',
- ' counts.append([item, 1])',
- ' for counted_item, item_count in counts:',
- ' if item_count == maxCount:',
- ' modes.append(counted_item)',
- ' return modes']);
- code = functionName + '(' + list + ')';
- break;
- case 'STD_DEV':
- Blockly.Python.definitions_['import_math'] = 'import math';
- var functionName = Blockly.Python.provideFunction_(
- 'math_standard_deviation',
- ['def ' + Blockly.Python.FUNCTION_NAME_PLACEHOLDER_ + '(numbers):',
- ' n = len(numbers)',
- ' if n == 0: return',
- ' mean = float(sum(numbers)) / n',
- ' variance = sum((x - mean) ** 2 for x in numbers) / n',
- ' return math.sqrt(variance)']);
- code = functionName + '(' + list + ')';
- break;
- case 'RANDOM':
- Blockly.Python.definitions_['import_random'] = 'import random';
- code = 'random.choice(' + list + ')';
- break;
- default:
- throw 'Unknown operator: ' + func;
- }
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- };
- Blockly.Python['math_modulo'] = function(block) {
- // Remainder computation.
- var argument0 = Blockly.Python.valueToCode(block, 'DIVIDEND',
- Blockly.Python.ORDER_MULTIPLICATIVE) || '___';
- var argument1 = Blockly.Python.valueToCode(block, 'DIVISOR',
- Blockly.Python.ORDER_MULTIPLICATIVE) || '___';
- var code = argument0 + ' % ' + argument1;
- return [code, Blockly.Python.ORDER_MULTIPLICATIVE];
- };
- Blockly.Python['math_constrain'] = function(block) {
- // Constrain a number between two limits.
- var argument0 = Blockly.Python.valueToCode(block, 'VALUE',
- Blockly.Python.ORDER_NONE) || '___';
- var argument1 = Blockly.Python.valueToCode(block, 'LOW',
- Blockly.Python.ORDER_NONE) || '___';
- var argument2 = Blockly.Python.valueToCode(block, 'HIGH',
- Blockly.Python.ORDER_NONE) || '___';
- var code = 'min(max(' + argument0 + ', ' + argument1 + '), ' +
- argument2 + ')';
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- };
- Blockly.Python['math_random_int'] = function(block) {
- // Random integer between [X] and [Y].
- // Blockly.Python.definitions_.import_time = "import time";
- Blockly.Python.definitions_['import_random'] = 'import random';
- // Blockly.Python.codeFunctions_.random_seed = "random.seed(time.ticks_cpu())";
- var argument0 = Blockly.Python.valueToCode(block, 'FROM',
- Blockly.Python.ORDER_NONE) || '___';
- var argument1 = Blockly.Python.valueToCode(block, 'TO',
- Blockly.Python.ORDER_NONE) || '___';
- var code = 'random.randint(' + argument0 + ', ' + argument1 + ')';
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- };
- Blockly.Python['math_random_float'] = function(block) {
- // Random fraction between 0 and 1.
- Blockly.Python.definitions_['import_random'] = 'import random';
- return ['random.random()', Blockly.Python.ORDER_FUNCTION_CALL];
- };
- Blockly.Python['math_sum_values'] = function(block) {
- var sum1 = Blockly.Python.valueToCode(block,"SUM1",Blockly.Python.ORDER_ATOMIC) || "";
- var sum2 = Blockly.Python.valueToCode(block,"SUM2",Blockly.Python.ORDER_ATOMIC) || "";
- var code = "sum(" + sum1 + " " + sum2 + ")";
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- }
- Blockly.Python['math_sum_common'] = function(block) {
- var sum1 = Blockly.Python.valueToCode(block,"SUM1",Blockly.Python.ORDER_ATOMIC) || "";
- var code = "sum(" + sum1 +")";
- return [code, Blockly.Python.ORDER_FUNCTION_CALL];
- }
|