SFML community forums

Help => Graphics => Topic started by: JasonLeon on October 01, 2023, 09:26:03 pm

Title: Issue with cache of pictures
Post by: JasonLeon on October 01, 2023, 09:26:03 pm
I wanted to cache pictures at the beginning, using map<string, Texture>cache to store the info of the image. I wrote the code
cache[filename].loadFromFile(xxx);
but the program crashed.
I also used the ways below.
Texture temp;
temp.loadFromFile(xxx);
cache[filename]=std::move(temp);
Still did not work.
Seems like the Texture kind object cannot use '='?
Title: Re: Issue with cache of pictures
Post by: kojack on October 01, 2023, 09:52:03 pm
I just tested your first version, it works fine. (I usually use texture pointers in my resource system map, but textures work too)
Are you sure that's the part causing the crash?
Title: Re: Issue with cache of pictures
Post by: JasonLeon on October 01, 2023, 10:06:26 pm
That's really confusing. I'm sure the file is existed.😥
Title: Re: Issue with cache of pictures
Post by: JasonLeon on October 02, 2023, 06:38:14 am
I just tested your first version, it works fine. (I usually use texture pointers in my resource system map, but textures work too)
Are you sure that's the part causing the crash?
I wrote this and the program crashed here:
textureCache[string("animation\\") + fileinfo.name].loadFromFile(string("..\\graphics\\animation\\") + fileinfo.name);
Title: Re: Issue with cache of pictures
Post by: JasonLeon on October 02, 2023, 06:46:50 am
Sorry guys. I found out that it was the loop's fault. Problem solved.