2013-11-15 13:41:26 +01:00
|
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @file calculator.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** @brief
|
|
|
|
|
** @copyright
|
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
** (at your option) any later version.
|
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
|
**
|
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
|
2013-07-17 13:38:11 +02:00
|
|
|
|
#include "calculator.h"
|
|
|
|
|
#include <QDebug>
|
2014-05-29 10:46:28 +02:00
|
|
|
|
#include <QSettings>
|
2014-05-21 10:51:16 +02:00
|
|
|
|
#include "../widgets/vapplication.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
|
#include "vcontainer.h"
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2014-06-02 09:43:27 +02:00
|
|
|
|
using namespace qmu;
|
|
|
|
|
|
2014-05-22 14:11:14 +02:00
|
|
|
|
int Calculator::iVal = -1;
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-07 18:55:57 +02:00
|
|
|
|
/**
|
2014-05-30 15:04:38 +02:00
|
|
|
|
* @brief Calculator class constructor. Make easy initialization math parser.
|
|
|
|
|
*
|
|
|
|
|
* This constructor hide initialization variables, operators, character sets.
|
|
|
|
|
* Use this constuctor for evaluation formula. All formulas must be converted to internal look.
|
|
|
|
|
* Example:
|
|
|
|
|
*
|
|
|
|
|
* const QString formula = qApp->FormulaFromUser(edit->text());
|
|
|
|
|
* Calculator *cal = new Calculator(data);
|
|
|
|
|
* const qreal result = cal->EvalFormula(formula);
|
|
|
|
|
* delete cal;
|
|
|
|
|
*
|
2014-05-07 18:55:57 +02:00
|
|
|
|
* @param data pointer to a variable container.
|
|
|
|
|
*/
|
|
|
|
|
Calculator::Calculator(const VContainer *data)
|
2014-05-21 15:51:47 +02:00
|
|
|
|
:QmuParser(), vVarVal(nullptr)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-23 20:11:13 +02:00
|
|
|
|
InitCharacterSets();
|
2014-05-21 10:51:16 +02:00
|
|
|
|
|
|
|
|
|
// Add variables
|
|
|
|
|
InitVariables(data);
|
|
|
|
|
|
|
|
|
|
// Add unary operators
|
|
|
|
|
DefinePostfixOprt(cm_Oprt, CmUnit);
|
|
|
|
|
DefinePostfixOprt(mm_Oprt, MmUnit);
|
|
|
|
|
DefinePostfixOprt(in_Oprt, InchUnit);
|
2014-05-27 16:58:25 +02:00
|
|
|
|
|
|
|
|
|
SetArgSep(',');
|
|
|
|
|
SetDecSep('.');
|
2014-05-23 20:11:13 +02:00
|
|
|
|
}
|
2014-05-22 14:11:14 +02:00
|
|
|
|
|
2014-05-23 20:11:13 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-30 15:04:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief Calculator class constructor. Make easy initialization math parser.
|
|
|
|
|
*
|
|
|
|
|
* This constructor hide initialization variables, operators, character sets.
|
|
|
|
|
* Use this constuctor to get tokens from formula. All formulas must be converted to external look.
|
|
|
|
|
* Example:
|
|
|
|
|
*
|
|
|
|
|
* Calculator *cal = new Calculator(formula, false);
|
|
|
|
|
* tokens = cal->GetTokens();
|
|
|
|
|
* numbers = cal->GetNumbers();
|
|
|
|
|
* delete cal;
|
|
|
|
|
*
|
2014-06-02 09:43:27 +02:00
|
|
|
|
* @param formula string with formula.
|
2014-05-30 15:04:38 +02:00
|
|
|
|
* @param fromUser true if we parse formula from user
|
|
|
|
|
*/
|
2014-05-23 20:11:13 +02:00
|
|
|
|
Calculator::Calculator(const QString &formula, bool fromUser)
|
|
|
|
|
:QmuParser(), vVarVal(nullptr)
|
|
|
|
|
{
|
|
|
|
|
InitCharacterSets();
|
2014-05-22 14:11:14 +02:00
|
|
|
|
SetVarFactory(AddVariable, this);
|
2014-05-23 20:11:13 +02:00
|
|
|
|
|
|
|
|
|
// Add unary operators
|
|
|
|
|
if(fromUser)
|
|
|
|
|
{
|
|
|
|
|
DefinePostfixOprt(qApp->PostfixOperator(cm_Oprt), CmUnit);
|
|
|
|
|
DefinePostfixOprt(qApp->PostfixOperator(mm_Oprt), MmUnit);
|
|
|
|
|
DefinePostfixOprt(qApp->PostfixOperator(in_Oprt), InchUnit);
|
|
|
|
|
|
2014-05-29 10:46:28 +02:00
|
|
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
|
QApplication::applicationName());
|
|
|
|
|
bool osSeparatorValue = settings.value("configuration/osSeparator", 1).toBool();
|
|
|
|
|
|
|
|
|
|
if (osSeparatorValue)
|
|
|
|
|
{
|
|
|
|
|
QLocale loc = QLocale::system();
|
|
|
|
|
SetDecSep(loc.decimalPoint().toLatin1());
|
|
|
|
|
SetThousandsSep(loc.groupSeparator().toLatin1());
|
|
|
|
|
SetArgSep(';');
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SetArgSep(',');
|
|
|
|
|
SetDecSep('.');
|
|
|
|
|
}
|
2014-05-23 20:11:13 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DefinePostfixOprt(cm_Oprt, CmUnit);
|
|
|
|
|
DefinePostfixOprt(mm_Oprt, MmUnit);
|
|
|
|
|
DefinePostfixOprt(in_Oprt, InchUnit);
|
2014-05-27 16:58:25 +02:00
|
|
|
|
|
|
|
|
|
SetArgSep(',');
|
|
|
|
|
SetDecSep('.');
|
2014-05-23 20:11:13 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetExpr(formula);
|
2014-05-30 15:04:38 +02:00
|
|
|
|
//Need run for making tokens. Don't catch exception here, because it will show us in dialog that formula has error.
|
|
|
|
|
Eval();
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-21 15:51:47 +02:00
|
|
|
|
Calculator::~Calculator()
|
|
|
|
|
{
|
|
|
|
|
delete [] vVarVal;
|
2014-05-22 14:11:14 +02:00
|
|
|
|
Calculator::iVal = -1;
|
2014-05-21 15:51:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-07 18:55:57 +02:00
|
|
|
|
/**
|
2014-05-21 10:51:16 +02:00
|
|
|
|
* @brief eval calculate formula.
|
|
|
|
|
* @param formula string of formula.
|
2014-05-07 18:55:57 +02:00
|
|
|
|
* @return value of formula.
|
|
|
|
|
*/
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal Calculator::EvalFormula(const QString &formula)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
SetExpr(formula);
|
|
|
|
|
return Eval();
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-21 10:51:16 +02:00
|
|
|
|
void Calculator::InitVariables(const VContainer *data)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
int num = 0;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
if (qApp->patternType() == Pattern::Standard)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
num +=2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QHash<QString, qreal> *lengthLines = data->DataLengthLines();
|
|
|
|
|
num += lengthLines->size();
|
|
|
|
|
|
|
|
|
|
const QHash<QString, qreal> *lengthSplines = data->DataLengthSplines();
|
|
|
|
|
num += lengthSplines->size();
|
|
|
|
|
|
|
|
|
|
const QHash<QString, qreal> *lengthArcs = data->DataLengthArcs();
|
|
|
|
|
num += lengthArcs->size();
|
|
|
|
|
|
|
|
|
|
const QHash<QString, qreal> *lineAngles = data->DataLineAngles();
|
|
|
|
|
num += lineAngles->size();
|
|
|
|
|
|
|
|
|
|
const QHash<QString, VMeasurement> *measurements = data->DataMeasurements();
|
|
|
|
|
num += measurements->size();
|
|
|
|
|
|
|
|
|
|
const QHash<QString, VIncrement> *increments = data->DataIncrements();
|
|
|
|
|
num += increments->size();
|
|
|
|
|
|
|
|
|
|
vVarVal = new qreal[num];
|
|
|
|
|
int j = 0;
|
|
|
|
|
|
|
|
|
|
if (qApp->patternType() == Pattern::Standard)
|
|
|
|
|
{
|
|
|
|
|
vVarVal[j] = data->size();
|
|
|
|
|
DefineVar(data->SizeName(), &vVarVal[j]);
|
|
|
|
|
++j;
|
|
|
|
|
|
|
|
|
|
vVarVal[j] = data->height();
|
|
|
|
|
DefineVar(data->HeightName(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
QHash<QString, qreal>::const_iterator i = lengthLines->constBegin();
|
|
|
|
|
while (i != lengthLines->constEnd())
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value();
|
|
|
|
|
DefineVar(i.key(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
++i;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
QHash<QString, qreal>::const_iterator i = lengthSplines->constBegin();
|
|
|
|
|
while (i != lengthSplines->constEnd())
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value();
|
|
|
|
|
DefineVar(i.key(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
++i;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
QHash<QString, qreal>::const_iterator i = lengthArcs->constBegin();
|
|
|
|
|
while (i != lengthArcs->constEnd())
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value();
|
|
|
|
|
DefineVar(i.key(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
++i;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
2014-05-21 10:51:16 +02:00
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
QHash<QString, qreal>::const_iterator i = lineAngles->constBegin();
|
|
|
|
|
while (i != lineAngles->constEnd())
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value();
|
|
|
|
|
DefineVar(i.key(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
++i;
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
QHash<QString, VMeasurement>::const_iterator i = measurements->constBegin();
|
|
|
|
|
while (i != measurements->constEnd())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
if (qApp->patternType() == Pattern::Standard)
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value().GetValue(data->size(), data->height());
|
2014-05-21 10:51:16 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value().GetValue();
|
2014-05-21 10:51:16 +02:00
|
|
|
|
}
|
2014-05-30 10:32:40 +02:00
|
|
|
|
DefineVar(i.key(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
++i;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
2014-05-21 10:51:16 +02:00
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
QHash<QString, VIncrement>::const_iterator i = increments->constBegin();
|
|
|
|
|
while (i != increments->constEnd())
|
|
|
|
|
{
|
|
|
|
|
if (qApp->patternType() == Pattern::Standard)
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value().GetValue(data->size(), data->height());
|
2014-05-21 10:51:16 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-05-21 15:51:47 +02:00
|
|
|
|
vVarVal[j] = i.value().GetValue();
|
2014-05-21 10:51:16 +02:00
|
|
|
|
}
|
2014-05-30 10:32:40 +02:00
|
|
|
|
DefineVar(i.key(), &vVarVal[j]);
|
|
|
|
|
++j;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
++i;
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-30 15:04:38 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-23 20:11:13 +02:00
|
|
|
|
void Calculator::InitCharacterSets()
|
|
|
|
|
{
|
|
|
|
|
//String with all unique symbols for supported alpabets.
|
|
|
|
|
// See script alphabets.py for generation and more information.
|
|
|
|
|
const QString symbols = QStringLiteral("ցЀĆЈVӧĎАғΕĖӅИқΝĞơРңњΥĦШҫ̆جگĮаҳѕεشԶиһνԾрυلՆӝшËՎҔPÓՖXӛӟŞӣզhëծpóӞնxßվāŁЃֆĉЋCŬđ"
|
|
|
|
|
"ҐГΒęҘЛΚŘġҠУGاհЫدԱҰгβطԹõлκKՁÀуςهՉÈыvیՑÐSOřӘћաőcӐթèkàѓżűðsķչøӥӔĀփїІĈЎґĐΗЖҙĘȚ"
|
|
|
|
|
"ΟОҡĠآΧЦتЮұİزηжԸغοоÁՀقχцÉՈيюÑՐђӋіәťӆўáŠĺѐfөըnñŰӤӨӹոľЁրăЉŭċБӸēłΔҖЙŤěΜӜDСձģΤӰ"
|
|
|
|
|
"ЩīņحҮбưԳصδHйԻŇμӲӴсՃمτƠщՋєLQŹՓŕÖYśÞaգĽæiŽիӓîqճöyջþĂօЄӦĊЌΑĒДҗјΙȘĚМΡéĵĢФūӚΩبĪ"
|
|
|
|
|
"ЬүќαذԲдҷιظԺмρՂфÇωوՊьÏՒTŚĻJբdçժlïӪղtպӫAւąЇčŃЏĕӯЗΖEțŮĝПΞأĥĹЧΦثÆӳЯIسŲԵзζԽпξكՅ"
|
|
|
|
|
"ÄчφNMՍӌяӢՕÔWÎŝÜџёźեägխoӒյôwĶBžսüЂĄև̈ЊČƏљΓВҕĔӮΛКĜΣТҥĤکЪƯخγвŅԴŪضλкԼĴσтÅՄنъÍՌR"
|
|
|
|
|
"ӕՔZÝŜbåդﻩjíլļrӵմzýռپêЅքćچЍďӱҒЕůėژșΘØҚНğńءΠFҢХħΨҪЭųįҶرҲеԷňعθҺнԿفπÂхՇψÊэšՏÒU"
|
|
|
|
|
"əÚѝŻşҤӑâeէŐımկòuշÕúտŔ");
|
|
|
|
|
|
|
|
|
|
// Defining identifier character sets
|
|
|
|
|
DefineNameChars(QStringLiteral("0123456789_") + symbols);
|
|
|
|
|
DefineOprtChars(symbols + QStringLiteral("+-*^/?<>=#!$%&|~'_"));
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal Calculator::CmUnit(qreal val)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal unit = val;
|
|
|
|
|
switch(qApp->patternUnit())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
case Valentina::Mm:
|
|
|
|
|
unit = val * 10.0;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
break;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
case Valentina::Cm:
|
2013-07-17 13:38:11 +02:00
|
|
|
|
break;
|
2014-05-21 10:51:16 +02:00
|
|
|
|
case Valentina::Inch:
|
|
|
|
|
unit = val / 2.54;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
break;
|
2013-11-12 19:29:03 +01:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2014-05-21 10:51:16 +02:00
|
|
|
|
return unit;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal Calculator::MmUnit(qreal val)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal unit = val;
|
|
|
|
|
switch(qApp->patternUnit())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
case Valentina::Mm:
|
|
|
|
|
break;
|
|
|
|
|
case Valentina::Cm:
|
|
|
|
|
unit = val / 10.0;
|
|
|
|
|
break;
|
|
|
|
|
case Valentina::Inch:
|
|
|
|
|
unit = val / 25.4;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2014-05-21 10:51:16 +02:00
|
|
|
|
return unit;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal Calculator::InchUnit(qreal val)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
qreal unit = val;
|
|
|
|
|
switch(qApp->patternUnit())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
|
case Valentina::Mm:
|
|
|
|
|
unit = val * 25.4;
|
|
|
|
|
break;
|
|
|
|
|
case Valentina::Cm:
|
|
|
|
|
unit = val * 2.54;
|
|
|
|
|
break;
|
|
|
|
|
case Valentina::Inch:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
2014-05-21 10:51:16 +02:00
|
|
|
|
return unit;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
2014-05-22 14:11:14 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
// Factory function for creating new parser variables
|
|
|
|
|
// This could as well be a function performing database queries.
|
|
|
|
|
qreal* Calculator::AddVariable(const QString &a_szName, void *a_pUserData)
|
|
|
|
|
{
|
|
|
|
|
// I don't want dynamic allocation here, so i used this static buffer
|
|
|
|
|
// If you want dynamic allocation you must allocate all variables dynamically
|
|
|
|
|
// in order to delete them later on. Or you find other ways to keep track of
|
|
|
|
|
// variables that have been created implicitely.
|
|
|
|
|
static qreal afValBuf[100];
|
|
|
|
|
|
|
|
|
|
++iVal;
|
|
|
|
|
|
|
|
|
|
Q_UNUSED(a_szName)
|
|
|
|
|
Q_UNUSED(a_pUserData)
|
|
|
|
|
// qDebug() << "Generating new variable \""
|
|
|
|
|
// << a_szName << "\" (slots left: "
|
|
|
|
|
// << 99-iVal << ")"
|
|
|
|
|
// << " User data pointer is:"
|
|
|
|
|
// << QString::number(a_pUserData, 16);
|
|
|
|
|
afValBuf[iVal] = 0;
|
|
|
|
|
|
|
|
|
|
if (iVal>=99)
|
|
|
|
|
{
|
|
|
|
|
throw qmu::QmuParserError( "Variable buffer overflow." );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return &afValBuf[iVal];
|
|
|
|
|
}
|
|
|
|
|
}
|