У меня есть код: loading* loadingScreen = new loading(device);
При объявлении переменной: переменная не объявлена в этой области
Когда я скомпилировать программу, компилятор жалуется, что экран загрузки не был объявлен:
error: 'loadingScreen' was not declared in this scope
loading* loadingScreen = new loading(device);
^
Я m unsure, что вызывает это. Что я пробовал:
- Перезаписывать его так, чтобы конструктор не запускался.
- Перемещение декларации в другой раздел кода.
- Убедитесь, что мои классы включены правильно.
Вот мой main.cpp файл:
#include <iostream>
#include <irrlicht.h>
#include <future> // std::async, std::future
#include <chrono> // Millisecond timer
#include <pthread.h>
#include <loading.h>
#include <fps.h>
bool loading = false;
struct load_struct {
irr::IrrlichtDevice *device;
fps *fpsLevel;
};
void load(void * loadingStruct)
{
loading = true;
struct load_struct *args = (struct load_struct *) loadingStruct;
loading = false;
pthread_exit(NULL);
}
int main()
{
//Create display to optimal settings.
irr::IrrlichtDevice *device = irr::createDevice(irr::video::EDT_NULL);
irr::s32 depth = device->getVideoModeList()->getDesktopDepth();
irr::core::dimension2d<irr::u32> resolution = device->getVideoModeList()->getDesktopResolution();
device->drop();
device = irr::createDevice(irr::video::EDT_OPENGL, resolution, depth, true, true, true, NULL); // TODO: Change last parameter
if(device==NULL)
{
std::cout << "Unable to create device! Do you have graphics drivers installed?" << std::endl;
return 1;
}
//Open data files
device->getFileSystem()->addFileArchive("Resources",true,true,irr::io::EFAT_ZIP);
device->getFileSystem()->addFileArchive("Video.tar");
device->getFileSystem()->addFileArchive("Textures.tar");
device->getFileSystem()->addFileArchive("Models.tar");
device->getFileSystem()->addFileArchive("Audio.tar");
//Load first room.
loading* loadingScreen = new loading(device);
fps *fpsLevel = new fps();
pthread_t creationThread;
struct load_struct loadingStruct;
loadingStruct.device = device;
loadingStruct.fpsLevel = fpsLevel;
//pthread_create(creationThread,NULL,load,(void *)&loadingStruct); Fix me!
while(loading==false)
{
loadingScreen->update();
std::this_thread::sleep_for(std::chrono::milliseconds(1000/60));
}
loadingScreen->kill();
// Run first room.
fpsLevel->run();
//Clean up.
device->drop();
return 0;
}
Вот мой loading.h файл:
#include <irrlicht.h>
#include <string>
#ifndef LOADING_H
#define LOADING_H
class loading
{
public:
loading(irr::IrrlichtDevice *device);
void update();
void kill();
protected:
int slide;
static const int SLIDES_AMOUNT = 60;
const std::string FILENAME_TEMPLATE = "Loading_Screen/%.png";
irr::video::ITexture* slides[SLIDES_AMOUNT];
};
#endif // LOADING_H
Любая помощь будет оценен по достоинству!
Можете ли вы предоставить больше контекста о том, где находится проблематичная строка кода? Только что вы предоставили здесь, я не думаю, что есть достаточно информации, чтобы помочь. – templatetypedef
Я думаю, что ошибка, о которой вы упоминаете, является ошибкой _second_, и это ложное положительное сообщение, вызванное ошибкой _first_. А именно, что 'loading' не имеет конструктора по умолчанию, который вызывается' new loading() '. –
Что происходит, когда вы идете только ==> loading * loadingScreen = новая загрузка; –