1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-20 07:30:26 +00:00

texture:: 'paint textures' in main menu now starts Canvas automatically

This commit is contained in:
Zeno Rogue 2019-01-03 15:16:12 +01:00
parent cd2fa33bbc
commit 9ccf82d9dc
3 changed files with 23 additions and 19 deletions

View File

@ -3268,6 +3268,7 @@ namespace texture {
extern bool texture_aura;
bool using_aura();
void start_editor();
}
#endif

View File

@ -755,18 +755,19 @@ void showStartMenu() {
#if CAP_TEXTURE && CAP_EDIT
else if(uni == 'T') {
popScreenAll();
pushScreen(texture::showMenu);
resetModes('c');
stop_game();
firstland = specialland = laCanvas;
cheater = true;
patterns::canvasback = 0xFFFFFF;
mapeditor::drawplayer = false;
start_game();
clearMessages();
welcomeMessage();
using namespace texture;
if(config.data.whitetexture() && config.data.loadTextureGL()) {
config.tstate = config.tstate_max = tsActive;
config.perform_mapping();
config.finish_mapping();
mapeditor::initdraw(cwt.at);
pushScreen(showMenu);
pushScreen(mapeditor::showDrawEditor);
}
calcparam();
drawthemap();
texture::start_editor();
}
#endif
else if(uni == 'g') {

View File

@ -1056,6 +1056,17 @@ string texturehelp =
"(these probably work best with the 'large picture' setting in geometry selection). "
"Again, tesselations can have their geometry changed.\n\n";
void start_editor() {
addMessage("white");
if(config.data.whitetexture() && config.data.loadTextureGL()) {
config.tstate = config.tstate_max = tsActive;
config.perform_mapping();
config.finish_mapping();
mapeditor::initdraw(cwt.at);
pushScreen(mapeditor::showDrawEditor);
}
}
void showMenu() {
cmode = sm::SIDE | sm::MAYDARK | sm::DIALOG_STRICT_X;
gamescreen(0);
@ -1215,16 +1226,7 @@ void showMenu() {
pushScreen(mapeditor::showDrawEditor);
}
else if(uni == 'n' && config.tstate == tsOff) {
addMessage("white");
if(config.data.whitetexture() && config.data.loadTextureGL()) {
config.tstate = config.tstate_max = tsActive;
config.perform_mapping();
config.finish_mapping();
mapeditor::initdraw(cwt.at);
pushScreen(mapeditor::showDrawEditor);
}
}
else if(uni == 'n' && config.tstate == tsOff) start_editor();
#endif
else if(uni == 't' && config.tstate == tsOff)