Skip to content
Snippets Groups Projects
Commit e4c48ed9 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Fixed a metal layer bug

parent 33b31c4e
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
This diff is collapsed.
......@@ -21,4 +21,5 @@ public:
private:
static std::map<std::string, std::vector<ObjectMetadata>> _metadataMap; // layer_name -> metadata_vector
static std::string _bottomMetalLayername; //name of layer marked bottom metal
};
\ No newline at end of file
......@@ -2,6 +2,7 @@
#include <layer.hpp>
std::map<std::string, std::vector<ObjectMetadata>> MetadataManager::_metadataMap = {};
std::string MetadataManager::_bottomMetalLayername = "";
bool MetadataManager::load(std::string filename, std::string layername) {
//read data from file into vertex buffer, element buffer
......@@ -38,6 +39,12 @@ bool MetadataManager::load(std::string filename, std::string layername) {
std::cerr << "Encountered unknown directive " << c << " while parsing file " << filename << std::endl;
}
}
//If we load bottom metal, restore the infostrings
if (_bottomMetalLayername == layername) {
for (size_t i = 0; i < newDataVector.size(); ++i) {
newDataVector[i].info = _metadataMap[layername][i].info;
}
}
_metadataMap[layername] = newDataVector;
std::cout << "Loaded " << newDataVector.size() << " metadata entries for layer " << layername << " from " << filename << "." << std::endl;
return true;
......@@ -80,6 +87,7 @@ bool MetadataManager::addLayer(const Layer& layer) {
return true;
}
void MetadataManager::markBottomMetal(std::string layername) {
_bottomMetalLayername = layername;
std::ifstream file("C:\\Users\\Pascal\\repos\\rbcomb-sample-visualizer\\gui\\resources\\association\\sample-minicircuit-association.txt");
std::string line;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment