just adding more missing stuf
This commit is contained in:
parent
8fe442807a
commit
fd099c84ca
9 changed files with 59 additions and 15 deletions
|
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "-std=c++17 -Wno-error")
|
||||
file(GLOB_RECURSE FORESPEND_SOURCES "src/*.cpp")
|
||||
file(GLOB_RECURSE FORESPEND_SOURCES CONFIGURE_DEPENDS "src/*.cpp")
|
||||
add_executable(forespend ${FORESPEND_SOURCES})
|
||||
|
||||
set_target_properties(forespend PROPERTIES
|
||||
|
|
|
|||
|
|
@ -8,8 +8,9 @@ client::client() {
|
|||
void client::boot() {
|
||||
this->framerate=60;
|
||||
this->tickrate=20;
|
||||
InitWindow(380,240,"forespend - 0.03h");
|
||||
// SetConfigFlags();
|
||||
InitWindow(380,240,"forespend - 0.03h");
|
||||
initconfigmenu();
|
||||
this->currentscene=new mainmenu();
|
||||
this->currentscene->boot();
|
||||
target=LoadRenderTexture(380,240);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,31 @@
|
|||
//
|
||||
// Created by komi on 12/25/25.
|
||||
//
|
||||
#include "configmenu.h"
|
||||
|
||||
#include <enginend/scenes/node2d.h>
|
||||
Font forefont;
|
||||
|
||||
enginend::group mainpage= enginend::group(
|
||||
{
|
||||
new enginend::nodes::labeledbutton("graphics",nullptr,{255,127,0,255},{0,0,0,0},100,100,0,0,std::function<void()>([]() {
|
||||
|
||||
}),forefont,32),
|
||||
|
||||
}
|
||||
);
|
||||
enginend::group graphics= enginend::group(
|
||||
{
|
||||
|
||||
}
|
||||
);
|
||||
enginend::group sound= enginend::group(
|
||||
{
|
||||
|
||||
}
|
||||
);
|
||||
enginend::group controls= enginend::group(
|
||||
{
|
||||
|
||||
}
|
||||
);
|
||||
void initconfigmenu() {
|
||||
forefont=LoadFont(AT("res/fonts/dos.fnt"));
|
||||
}
|
||||
|
|
@ -1,6 +1,11 @@
|
|||
#pragma once
|
||||
#include <vector>
|
||||
#include <enginend/scenes/node2drelative.h>
|
||||
#include <incmgr.h>
|
||||
|
||||
extern Font forefont;
|
||||
extern enginend::group maincfgpage;
|
||||
extern enginend::group graphics;
|
||||
extern enginend::group sound;
|
||||
extern enginend::group controls;
|
||||
|
||||
std::vector<enginend::nodes::group> config{};
|
||||
void initconfigmenu();
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
#include <incmgr.h>
|
||||
#include <enginend/scenes/node2drelative.h>
|
||||
#include "configmenu.h"
|
||||
#include <enginend/scenes/node2d.h>
|
||||
|
||||
class mainmenu :public virtual enginend::scene{
|
||||
|
|
@ -11,6 +12,7 @@ public:
|
|||
|
||||
this->nodes=std::list<enginend::nodes::node*>{
|
||||
new enginend::nodes::relative::animated(AT("res/images/sky.gif"),0,0,1,1,2),
|
||||
new enginend::nodes::relative::text(nullptr,{255,127,0,255},{0,0,0,0},0.25,0.05,0.8,0.1,forefont,32,"FORESPEND"),
|
||||
};
|
||||
enginend::scene::boot();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@
|
|||
PLATFORM platform=LINUX;
|
||||
std::string androidpackage="kn.kinfuyuki.forespend";
|
||||
inline const char* COMMONCONFIG(){return "common.tdf";}
|
||||
tiny::ErrorLevel tiny::level{6};
|
||||
tiny::ErrorLevel tiny::level{4};
|
||||
int main(int argc, char** argv) {
|
||||
enginend::program* game;
|
||||
tiny::startup("forespend","0.03g-rewrite");
|
||||
bool isserver = false;
|
||||
if (argc>1) {
|
||||
for (int i=1;i<argc;i++) {
|
||||
if (argv[i]=="server") {
|
||||
if (argv[i]=="server ") {
|
||||
isserver = true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue