Implement LineGroups for default weights
- Add ability to control default weight for visible, hidden and decorative lines from a configuration file. Diffent sets of defaults can be specified as a preference.
This commit is contained in:
196
src/Mod/TechDraw/App/LineGroup.cpp
Normal file
196
src/Mod/TechDraw/App/LineGroup.cpp
Normal file
@@ -0,0 +1,196 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2017 Wandererfan <wandererfan@gmail.com> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU Library General Public *
|
||||
* License as published by the Free Software Foundation; either *
|
||||
* version 2 of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This library is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU Library General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Library General Public *
|
||||
* License along with this library; see the file COPYING.LIB. If not, *
|
||||
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#include "PreCompiled.h"
|
||||
|
||||
#ifndef _PreComp_
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
#include <stdexcept>
|
||||
#endif
|
||||
|
||||
#include <App/Application.h>
|
||||
#include <Base/Console.h>
|
||||
#include <Base/Parameter.h>
|
||||
|
||||
#include "LineGroup.h"
|
||||
|
||||
using namespace TechDraw;
|
||||
|
||||
LineGroup::LineGroup()
|
||||
{
|
||||
init();
|
||||
}
|
||||
|
||||
LineGroup::LineGroup(std::string groupName)
|
||||
{
|
||||
init();
|
||||
m_name = groupName;
|
||||
}
|
||||
|
||||
|
||||
LineGroup::~LineGroup()
|
||||
{
|
||||
}
|
||||
|
||||
void LineGroup::init(void)
|
||||
{
|
||||
m_name = "";
|
||||
m_thin = 0.0;
|
||||
m_graphic = 0.0;
|
||||
m_thick = 0.0;
|
||||
m_extra = 0.0;
|
||||
}
|
||||
|
||||
double LineGroup::getWeight(std::string s)
|
||||
{
|
||||
double result = 0.55;
|
||||
if (s == "Thin") {
|
||||
result = m_thin;
|
||||
} else if (s == "Graphic") {
|
||||
result = m_graphic;
|
||||
} else if (s == "Thick") {
|
||||
result = m_thick;
|
||||
} else if (s == "Extra") {
|
||||
result = m_extra;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
void LineGroup::setWeight(std::string s, double weight)
|
||||
{
|
||||
if (s == "Thin") {
|
||||
m_thin = weight;
|
||||
} else if (s == "Graphic") {
|
||||
m_graphic = weight;
|
||||
} else if (s == "Thick") {
|
||||
m_thick = weight;
|
||||
} else if (s == "Extra") {
|
||||
m_extra = weight;
|
||||
}
|
||||
}
|
||||
|
||||
void LineGroup::dump(char* title)
|
||||
{
|
||||
Base::Console().Message( "DUMP: %s\n",title);
|
||||
Base::Console().Message( "Name: %s\n", m_name.c_str());
|
||||
Base::Console().Message( "Thin: %.3f\n", m_thin);
|
||||
Base::Console().Message( "Graphic: %.3f\n",m_graphic);
|
||||
Base::Console().Message( "Thick: %.3f\n",m_thick);
|
||||
Base::Console().Message( "Extra: %.3f\n",m_extra);
|
||||
}
|
||||
|
||||
//static support function: split comma separated string of values into vector of numbers
|
||||
std::vector<double> LineGroup::split(std::string line)
|
||||
{
|
||||
std::vector<double> result;
|
||||
std::stringstream lineStream(line);
|
||||
std::string cell;
|
||||
bool nameCell = true;
|
||||
|
||||
while(std::getline(lineStream,cell, ','))
|
||||
{
|
||||
if (nameCell) {
|
||||
nameCell = false;
|
||||
continue;
|
||||
}
|
||||
try {
|
||||
result.push_back(std::stod(cell));
|
||||
}
|
||||
catch (const std::invalid_argument& ia) {
|
||||
Base::Console().Warning("Invalid number in cell: %s (%s) \n",cell.c_str(),ia.what());
|
||||
result.push_back(0.0);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
//static support function: find group defn in file
|
||||
std::string LineGroup::getRecordFromFile(std::string parmFile, std::string groupName)
|
||||
{
|
||||
std::string record;
|
||||
std::string lineSpec;
|
||||
std::ifstream inFile;
|
||||
inFile.open (parmFile, std::ifstream::in);
|
||||
if(!inFile.is_open()) {
|
||||
Base::Console().Message( "Cannot open input file: %s\n",parmFile.c_str());
|
||||
return record;
|
||||
}
|
||||
|
||||
bool groupFound = false;
|
||||
while ( inFile.good() ){
|
||||
std::string line;
|
||||
std::getline(inFile,line);
|
||||
std::string nameTag = line.substr(0,1);
|
||||
std::string foundName;
|
||||
unsigned long int commaPos;
|
||||
if ((nameTag == ";") ||
|
||||
(nameTag == " ") ||
|
||||
(line.empty()) ) { //is cr/lf empty?
|
||||
continue;
|
||||
} else if (nameTag == "*") {
|
||||
commaPos = line.find(",",1);
|
||||
if (commaPos != std::string::npos) {
|
||||
foundName = line.substr(1,commaPos-1);
|
||||
} else {
|
||||
foundName = line.substr(1);
|
||||
}
|
||||
if (foundName == groupName) {
|
||||
//this is our group
|
||||
record = line;
|
||||
groupFound = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
} //endwhile
|
||||
if (!groupFound) {
|
||||
Base::Console().Message("LineGroup - group: %s is not found\n", groupName.c_str());
|
||||
}
|
||||
return record;
|
||||
}
|
||||
|
||||
//static LineGroup maker
|
||||
LineGroup* LineGroup::lineGroupFactory(std::string groupName)
|
||||
{
|
||||
LineGroup* lg = new LineGroup(groupName);
|
||||
|
||||
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter()
|
||||
.GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Files");
|
||||
|
||||
std::string defaultDir = App::Application::getResourceDir() + "Mod/TechDraw/LineGroup/";
|
||||
std::string defaultFileName = defaultDir + "LineGroup.csv";
|
||||
|
||||
std::string lgFileName = hGrp->GetASCII("LineGroupFile",defaultFileName.c_str());
|
||||
|
||||
std::string lgRecord = LineGroup::getRecordFromFile(lgFileName, groupName);
|
||||
|
||||
std::vector<double> values = LineGroup::split(lgRecord);
|
||||
if (values.size() < 4) {
|
||||
Base::Console().Message( "LineGroup::invalid entry in %s\n",groupName.c_str() );
|
||||
} else {
|
||||
lg->setWeight("Thin",values[0]);
|
||||
lg->setWeight("Graphic",values[1]);
|
||||
lg->setWeight("Thick",values[2]);
|
||||
lg->setWeight("Extra",values[3]);
|
||||
}
|
||||
return lg;
|
||||
}
|
||||
Reference in New Issue
Block a user