ifstream reading
Moderator: Coders of Rage
-
- Chaos Rift Regular
- Posts: 101
- Joined: Thu Dec 09, 2010 2:13 am
ifstream reading
I'm trying to read in a file line by line and just print it to the screen. I know how to do this, and have done it many times, but for some reason my code isn't printing!
string index;
ifstream mapfile("map.txt");
while (mapfile)
{
getline(mapfile,index);
cout << index;
}
mapfile.close();
I've included <iostream> and <fstream> properly, and it all compiles no problem. Also, the map.txt IS in the right directory and it's all setup etc, it simply WILL NOT print to console and I can't figure out why.
Any help guys?
string index;
ifstream mapfile("map.txt");
while (mapfile)
{
getline(mapfile,index);
cout << index;
}
mapfile.close();
I've included <iostream> and <fstream> properly, and it all compiles no problem. Also, the map.txt IS in the right directory and it's all setup etc, it simply WILL NOT print to console and I can't figure out why.
Any help guys?
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: ifstream reading
Try while(!mapfile.eof()). I suspect an infinite loop.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
-
- Chaos Rift Regular
- Posts: 101
- Joined: Thu Dec 09, 2010 2:13 am
Re: ifstream reading
Yeah, that causes an infinite loop, what's the problem?
- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: ifstream reading
Alright so first, you should keep all of your posted codes in code tags so that it's more organized.like80ninjas wrote:I'm trying to read in a file line by line and just print it to the screen. I know how to do this, and have done it many times, but for some reason my code isn't printing!
string index;
ifstream mapfile("map.txt");
while (mapfile)
{
getline(mapfile,index);
cout << index;
}
mapfile.close();
I've included <iostream> and <fstream> properly, and it all compiles no problem. Also, the map.txt IS in the right directory and it's all setup etc, it simply WILL NOT print to console and I can't figure out why.
Any help guys?
So here is what it should look like, just a few minor changes. I haven't compiled this but it really should work fine.
Code: Select all
#include <iostream>
#include <fstream>
#include <string.h>
using namespace std;
int main () {
string index;
ifstream mapfile("map.txt");
if(mapfile.is_open()) //This is what actually checks if it's open I recommend not just "if(mapfile){ etc. }"
{
while(!mapfile.eof()) //While not the end of file
{
getline(mapfile,index);
cout << index << endl;
}
mapfile.close();
}
return 0;
}
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



-
- Chaos Rift Regular
- Posts: 101
- Joined: Thu Dec 09, 2010 2:13 am
Re: ifstream reading
First, I retyped your suggested code, same result, then I copy pasted it, same result. It simply won't print anything. The only thing I can think of is that the text file is in the wrong directory but it isn't. It's in the project directory, where the source is located, and it's being run from the ide(visual studio) all my images load fine from this directory.
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: ifstream reading
The standard out stream is probably not being flushed until that loop ends, which it never does.like80ninjas wrote:Yeah, that causes an infinite loop, what's the problem?
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: ifstream reading
It has to be where the application itself is located, so where ever you are running the application from, has to have the "map.txt" in it.like80ninjas wrote:First, I retyped your suggested code, same result, then I copy pasted it, same result. It simply won't print anything. The only thing I can think of is that the text file is in the wrong directory but it isn't. It's in the project directory, where the source is located, and it's being run from the ide(visual studio) all my images load fine from this directory.
EDIT: unless you put something like "Maps/Forest Maps/map.txt" instead of just "map.txt" as the file name.
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



-
- Chaos Rift Regular
- Posts: 101
- Joined: Thu Dec 09, 2010 2:13 am
Re: ifstream reading
I'm running the game from my compiler, visual studio, and it's directory is the same directory you keep your source files. All of my images, and DLLs are located there as well and load fine.
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: ifstream reading
Try making a new project in a new folder.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
-
- Chaos Rift Regular
- Posts: 101
- Joined: Thu Dec 09, 2010 2:13 am
Re: ifstream reading
Why would that help my cause? I would prefer not to make a new project.
- TheBuzzSaw
- Chaos Rift Junior
- Posts: 310
- Joined: Wed Dec 02, 2009 3:55 pm
- Current Project: Paroxysm
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Contact:
Re: ifstream reading
Code: Select all
string s;
while (getline(mapfile, s))
{
// do stuff
}
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: ifstream reading
Try changing #include<string.h> to #include<string>. That is the only thing I had to change to compile MadPumpkin's code and have it work correctly.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
-
- Chaos Rift Regular
- Posts: 101
- Joined: Thu Dec 09, 2010 2:13 am
Re: ifstream reading
In my code I do use <string> rather than <string.h>
But, i'll try TheBuzzSaw's method and see how it turns out.
I'm just trying to get a system built to load a map from text, and I've done it before in multiple engines, but this time it just won't work!
But, i'll try TheBuzzSaw's method and see how it turns out.
I'm just trying to get a system built to load a map from text, and I've done it before in multiple engines, but this time it just won't work!
- TheBuzzSaw
- Chaos Rift Junior
- Posts: 310
- Joined: Wed Dec 02, 2009 3:55 pm
- Current Project: Paroxysm
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Contact:
Re: ifstream reading
Yeah you have to be careful with the string libraries. The C library is string.h or cstring when including from C++. The STL string library is just <string>.