I've got a problem with getting names from a file. Structure of the file is:
a0 0 0 : N
a1 0 0 : N
a100 0 0 : N
And it goes and goes. This programm normaly write in other file numbers but don't right names. What must programm do: take names from this file and write another file with same names but instead the 0 0 :N it must write random numbers. name X Y :N - this is what line means. So my programm normaly randomize numbers and write in a file but doesn't take names! And i don't know why. Inasmuch as blondy girl, please help me.
This is main.cpp
void WrightPL(Field * field, char * _file){
fstream file;
file.open(_file, fstream::app);
for (int i = 0; i<field->blocks.size();i++){
file<<" "<<field->blocks[i].name<<" "<<field->blocks[i].GetX()<<" "<<field->blocks[i].GetY()<<" : N"<<endl;
}
file.close();
}
void ParseNodes(char * file, Field * field){
char * str = new char [125];
fstream nodes;
nodes.open(file);
for (int i = 0; i<4; i++){
nodes.getline(str,125);
}
nodes.getline(str, 125);
{ string *s = new string(str);
int pos = s->find_first_of("1234567890");
s->erase(0,pos-1);
field->SetBlocksCount(atoi(s->c_str()));
delete s;
nodes.getline(str, 125);
s = new string(str);
pos = s->find_first_of("1234567890");
s->erase(0,pos-1);
field->SetTerminalCount(atoi(s->c_str()));
delete s;
nodes.getline(str,125);
while (nodes.getline(str,125)){
if(strlen(str) < 3){
continue;
}
s= new string(str);
if (s->find("terminal")==string::npos){
pos = s->find_first_not_of("a1234567890");
field->blocks.push_back(Rect());
field->blocks.back().name = s->substr(0,pos);
s->erase(0,pos);
string*sk= new string(*s);
*sk=sk->substr(2,40);
*sk=sk->substr(sk->find_first_not_of("a1234567890"),5);
field->blocks.back().SetWidth(atof(sk->c_str()));
pos = s->find_last_not_of("1234567890.");
s->erase(0,pos);
field->blocks.back().SetHeight(atof(s->c_str()));
}
delete s;
}
}
delete[] str;
nodes.close();
}
void ParseSCL(Field *field, char * file){
char * str = new char [125];
fstream _file;
_file.open(file);
for (int i = 0; i<4; i++){
_file.getline(str,125);
}
_file.getline(str, 125);
string *s = new string(str);
int pos = s->find_first_of("1234567890");
s->erase(0,pos-1);
field->SetStrCount(atoi(s->c_str()));
delete s;
_file.getline(str, 125);
int strnum = 0;
while(_file.good()){
int n=0;
while(n<9){
_file.getline(str, 125);
if (n==1){
s = new string(str);
int pos = s->find_first_of("1234567890");
s->erase(0,pos-1);
field->startx =(atoi(s->c_str()));
delete s;
}
if (n==2){
s = new string(str);
int pos = s->find_first_of("1234567890");
s->erase(0,pos-1);
field->SetHeight(atoi(s->c_str())*field->GetStrCount());
field->starty =strnum*(atoi(s->c_str()));
delete s;
field->startpoint.push_back(pair<int, int>(field->startx,field->starty));
}
if (n==7){
s = new string(str);
int pos = s->find_last_of(":");
s->erase(0,pos);
field->SetWidth((atoi(s->c_str())));
delete s;
}
n++;
}
++strnum;
}
}
int main(){
Field field;
char * file = new char[100];
cout<<"enter file name .nodes"<<endl;
cin>>file;
ParseNodes(file,&field);
delete[] file;
file = new char [100];
cout<<"enter file name .scl"<<endl;
cin >> file;
ParseSCL(&field,file);
delete[] file;
field.LocateUnsortedBlocks();
file = new char[100];
cout<<"enter file name .pl"<<endl;
cin>>file;
//ParsePL(file,&field);
delete[] file;
cout<<"enter new .pl name"<<endl;
file = new char [100];
cin>>file;
WrightPL(&field,file);
delete[] file;
return 0;
}
This is Field.cpp
Field::Field( int _strcount, int _strheight, int _strlen ){
width = _strlen;
height = _strcount * _strheight;
strcount = _strcount;
for ( int i = 0; i<strcount;i++){
startpoint.push_back(pair <int, int >(0,i*_strheight));
}
}
void Field::FillingBlocks(Rect * block){
blocks.push_back(*block);
}
void Field::LocateUnsortedBlocks(){
srand(time(NULL));
for ( int i = 0; i<blocks.size(); i++ ){
blocks[i].SetY(rand()%8095);//(height-blocks[i].GetHeight()));
blocks[i].SetX(rand()%4527);//(width-blocks[i].GetWidth()));
}
}
void Field::LocateSortedBlocks(){
int minpointnumber;
double distance = sqrt(pow((double)width,2)+pow((double)height,2));
for (int i = 0; i < blocks.size(); i++){
for( int j = 0; j<startpoint.size(); j++){
double distance1 = sqrt( abs( pow((double)blocks[i].GetX(),2) - pow((double)startpoint[j].first,2) )
+ abs( pow((double)blocks[i].GetY(),2) - pow((double)startpoint[j].second,2) ) );
if (distance > distance1 ){
distance = distance1;
minpointnumber = j;
}
}
blocks[i].SetX(startpoint[minpointnumber].first);
blocks[i].SetY(startpoint[minpointnumber].second);
startpoint[minpointnumber].first += blocks[i].GetWidth();
}
}
std::stringvariables for any text, andints for the numbers, as inwhile (instream >> name >> firstnum >> secondnum >> colon >> n) outstream << name << (rand() % max) << (rand() % max) << ": N\n";– Tony D Feb 11 at 15:35