初步详情:
问题:
我刚刚完成了SFML的新安装,我反复检查和三次检查所有需要的文件都在正确的位置。
当我为Xcode构建和运行股票SFML模板时,我在这个文件的第81行(第81行: EXC_BAD_ACCESS -也清楚地注释)上得到了一个window.draw(sprite);
:
//
// Disclamer:
// ----------
//
// This code will work only if you selected window, graphics and audio.
//
// Note that the "Run Script" build phase will copy the required frameworks
// or dylibs to your application bundle so you can execute it on any OS X
// computer.
//
// Your resource files (images, sounds, fonts, ...) are also copied to your
// application bundle. To get the path to these resource, use the helper
// method resourcePath() from ResourcePath.hpp
//
#include <SFML/Audio.hpp>
#include <SFML/Graphics.hpp>
// Here is a small helper for you ! Have a look.
#include "ResourcePath.hpp"
int main(int, char const**)
{
// Create the main window
sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");
// Set the Icon
sf::Image icon;
if (!icon.loadFromFile(resourcePath() + "icon.png")) {
return EXIT_FAILURE;
}
window.setIcon(icon.getSize().x, icon.getSize().y, icon.getPixelsPtr());
// Load a sprite to display
sf::Texture texture;
if (!texture.loadFromFile(resourcePath() + "cute_image.jpg")) {
return EXIT_FAILURE;
}
sf::Sprite sprite(texture);
// Create a graphical text to display
sf::Font font;
if (!font.loadFromFile(resourcePath() + "sansation.ttf")) {
return EXIT_FAILURE;
}
sf::Text text("Hello SFML", font, 50);
text.setColor(sf::Color::Black);
// Load a music to play
sf::Music music;
if (!music.openFromFile(resourcePath() + "nice_music.ogg")) {
return EXIT_FAILURE;
}
// Play the music
music.play();
// Start the game loop
while (window.isOpen())
{
// Process events
sf::Event event;
while (window.pollEvent(event))
{
// Close window: exit
if (event.type == sf::Event::Closed) {
window.close();
}
// Escape pressed: exit
if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Escape) {
window.close();
}
}
// Clear screen
window.clear();
// Draw the sprite
window.draw(sprite); // -------------- LINE 81
// Draw the string
window.draw(text);
// Update the window
window.display();
}
return EXIT_SUCCESS;
}
我试过的
我在网上搜索过(包括seems ),常见的原因似乎是某种堆栈溢出。但据我所知,我看不出会导致上述程序堆栈溢出的原因。
发布于 2016-01-17 08:34:04
如果您查找SFML论坛中的此类错误,您会发现它总是由于系统上存在一些旧的头/二进制文件而不是使用较新的文件所致。
在安装最新版本之前,请确保删除了所有版本的SFML。根据安装SFML教程,您需要查看:
/usr/local/include
/usr/local/lib
/Library/Frameworks
https://stackoverflow.com/questions/34833835
复制相似问题