Temple of The Roguelike Forums
Game Discussion => 7DRLs => Topic started by: Nogoth on March 05, 2016, 12:13:30 PM
-
Hi!
We are making a game about an ever changing formation of roman soldiers battling hordes of barbarians to retrieve the golden eagle of Rome. At least thats the idea. More info to come.
Status: In Progress!
-
A sample of our tileset and unit sprites!
(http://abload.de/thumb/screenshot8ls84.png) (http://abload.de/image.php?img=screenshot8ls84.png)
Also some animations:
(http://abload.de/thumb/legionnaire-walking_aejsh8.gif) (http://abload.de/image.php?img=legionnaire-walking_aejsh8.gif)(http://abload.de/thumb/legionnaire-walking_ae7s29.gif) (http://abload.de/image.php?img=legionnaire-walking_ae7s29.gif)(http://abload.de/thumb/legionnaire-walking_auqsjr.gif) (http://abload.de/image.php?img=legionnaire-walking_auqsjr.gif)(http://abload.de/thumb/legionnaire-walking_aqtsvr.gif) (http://abload.de/image.php?img=legionnaire-walking_aqtsvr.gif)
We mainly worked on creating art and wrangling OpenGL today. Tomorrow we will do some world generation and formation movement.
-
We got a lot of work done!
World generation is much improved, formation movement is sort of working and there is a gif!
(http://i.imgur.com/1376BpQ.gif?1)
Mouse position relative to the units controls their orientation, the mouse wheel controls the size of the formation. We plan on implementing different formations (box, line, arrow, circle) which should be useful in different situations.
'Story' is: A group of romans follow an eagle which they believe is the incarnation of their golden eagle. They are attacked by barbarians along the way. If they manage to find the actual golden eagle they have to carry it back and protect it from being stolen.
-
A bit more on formations:
(http://i.imgur.com/6mDftsR.gif?1)
The barbarians are also attacking now!
They do die when hit but they are not sufficiently deadly themselves yet ^^
We are working on it..
-
I still think that you take quite hard task to accomplish in 7 days, but I'm very curious this game. Looks promising, good luck!
-
It is done and it is quite playable!
Get the game here: https://www.dropbox.com/s/pxd803jgktc3dlg/Schildkroetenformation.zip?dl=0 (https://www.dropbox.com/s/pxd803jgktc3dlg/Schildkroetenformation.zip?dl=0)
I will add some gifs tomorrow.
-
Crashes right at the start on Win 8.1 x64...
-
:'(
I think we are seing Murphys Law in action here. I have yet to find a computer outside of the room we developed the game in that will run it. It works fine on the 4 inside it...
It would be helpful to me if the people who can't run it post the console output that is produced when the game crashes.
It has something to do with the way different graphics drivers compile my shaders...
Hope I can get my hands on a computer where it is not working.
Until then I can only guess at whats actually wrong.
-
Wanted to post but it just flashes in a nanosecond and disappears. I`m console illiterate so if you could tell me how to get to this error message...
-
Open the bin folder in the Windows Explorer, click the address bar (where it displays the current folder) at the top and type in "cmd" and press enter. A console window should open. In the console window type in "Schildkroetenformation", press enter again.
Now... the game should start. But appearently it doesn't want to ... so an error will appear :)
Alternatively you can open the Schildkroetenformation.bat file in a text editor like notpad and write "pause" in line 76 and before line 84.
Thanks :)
-
(http://i67.tinypic.com/2yy1d9c.png)
Sorry bout that lame quality, bit in a rush here. Hope you can read it anyway
-
Same here. It may occurs due to Java version on our computers?
-
Thank you. I got the same error (C1105: cannot call a non-function) from somebody else. This is an error thrown by the shader compiler which is part of the graphics driver. I don't think it is about the java version, the program would crash sooner and differently if you had a java version lower than 1.8. Also if your driver did not support OpenGL 3.1 (and thereby GLSL 1.40) there would be a different exception..
#version 140
in vec2 tex_coord;
out vec4 color;
uniform vec4 mulColor;
uniform sampler2D tex;
void main() {
color = mulColor * texture(tex, tex_coord);
}
This is the offending shader. In line 11 only one function is called... "texture". Which is definitely a function according to the GLSL 1.4 Spec Page 83 (https://www.opengl.org/registry/doc/GLSLangSpec.Full.1.40.05.pdf). The engine requests at least an OpenGL 3.1 context. Anyone with OpenGL experience here?
The old texture lookup function "texture2D" was deprecated in GLSL 1.4 in favor of the "texture" function. I'll upload a version using the deprecated function... maybe that works. Get it here. (https://www.dropbox.com/s/sz8iz1ik5jezvqm/Schildkroetenformation_DepFun.zip?dl=0)
-
Still doesn't work for me.
(http://i.imgur.com/mr3SBkw.png)
-
Linux, Debian testing:
simen@garuda:~/data/spill/Schildkroetenformation/bin$ ls
config.properties Schildkroetenformation Schildkroetenformation.bat
simen@garuda:~/data/spill/Schildkroetenformation/bin$ ./Schildkroetenformation
Exception in thread "main" java.lang.UnsupportedClassVersionError: schildkroetenformation/Main : Unsupported major.minor version 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:482)
simen@garuda:~/data/spill/Schildkroetenformation/bin$
As always,
Minotauros
-
This is getting better and better...
AgingMinotaur:
Your exception indicates that you do not have the required java version 8. I am using Windows to develop so I only tested the Oracle JRE 1.8.0_74.
Avagart:
Would you mind checking that your graphics driver supports OpenGL 3.1 using the OpenGL Extension Viewer (http://www.realtech-vr.com/glview/download.php)?
I won't mind of course if this is to much trouble. Not your job to debug my program after all...
I might be able to get away with OpenGL 3.0, I will investigate.
-
I tried to use this program, but it doesn't work for me. During installation warning window with 'this program needs windows nt' message appears. During loading extensions wiever freezes. I have Windows 7 Ultimate 32-bit. But I'm aware that my graphic (old, not identify-able (lol, but it's true) Intel HD doesn't support OpenGL if it is newer technology.
I will check if Schildkrötenformation would works on my PC later.
-
Tested it on Windows 7, 64Bit with a 980Ti. Works great...
This is making debugging very frustrating ^^
-
OSX 10.11.3, 2015 Macbook Pro
When I try opening the Schildkroetenformation executable, I get:Last login: Sat Mar 12 09:20:59 on ttys001
Note-book:~ Tilded$ /Users/Tilded/Downloads/Schildkroetenformation/bin/Schildkroetenformation ; exit;
java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1864)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at org.lwjgl.system.Library.loadSystem(Library.java:97)
at org.lwjgl.system.Library.<clinit>(Library.java:48)
at org.lwjgl.system.MemoryUtil.<clinit>(MemoryUtil.java:56)
at org.lwjgl.system.libffi.Closure.<clinit>(Closure.java:57)
at de.uni_passau.fim.seibt.engine.Engine.init(Engine.java:68)
at de.uni_passau.fim.seibt.engine.Engine.run(Engine.java:52)
at schildkroetenformation.Main.main(Main.java:13)
Exception in thread "main" java.lang.NullPointerException
at de.uni_passau.fim.seibt.engine.Engine.run(Engine.java:57)
at schildkroetenformation.Main.main(Main.java:13)
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
Deleting expired sessions...37 completed.
[Process completed]
-
That one I can solve I think: Your working directory when starting the game must be the bin folder. Sadly there is no good way to tell the JVM where the native libraries are other than passing a relative path to the directory.
Hope I am not misunderstanding your shell there but it looks to me like you started the game using an absolute path to the shellscript rather than by navigating to the bin directory and starting it with "./Schildkroetenformation".
-
Now I get this error:
Note-book:bin Tilded$ ./Schildkroetenformation
java.lang.ExceptionInInitializerError
at org.lwjgl.glfw.GLFW.glfwCreateWindow(GLFW.java:1248)
at de.uni_passau.fim.seibt.engine.Window.init(Window.java:37)
at de.uni_passau.fim.seibt.engine.Engine.init(Engine.java:83)
at de.uni_passau.fim.seibt.engine.Engine.run(Engine.java:52)
at schildkroetenformation.Main.main(Main.java:13)
Caused by: java.lang.IllegalStateException: GLFW windows may only be created on the main thread and that thread must be the first thread in the process. Please run the JVM with -XstartOnFirstThread. For offscreen rendering, make sure another window toolkit (e.g. AWT or JavaFX) is initialized before GLFW.
at org.lwjgl.glfw.EventLoop$OffScreen.<clinit>(EventLoop.java:39)
... 5 more
Exception in thread "main" java.lang.NullPointerException
at org.lwjgl.system.Checks.checkPointer(Checks.java:100)
at org.lwjgl.glfw.GLFW.glfwDestroyWindow(GLFW.java:1275)
at de.uni_passau.fim.seibt.engine.Window.destroy(Window.java:77)
at de.uni_passau.fim.seibt.engine.Engine.run(Engine.java:57)
at schildkroetenformation.Main.main(Main.java:13)
-
Tried the new version, it freezes on the start screen (there`s some gfx and words START/QUIT).
Strange, because my system is similar to yours - Win 8.1 64x, 780 Ti with new-ish drivers.
-
Also doesn't work on Win10 x64, Radeon R9380X with newest drivers...
-
You have to select things with Up/Down + Enter in the start screen. There should be a visual difference (around the words) between having Start/Quit selected. Or is it not responding at all akeley?
Tilded: Can you try starting the shellscript with the environment variable "JAVA_OPTS" set to "-XstartOnFirstThread"? Don't know how that error could come about, Engine.run() is called directly from the main() method. Might be that the jre on the Mac does something weird necessitating that JVM switch.
And thanks for trying Avagart..
I suppose LWJGL is a lot less robust than I thought.
-
A-ha! I thought for some reason the game is entirely mouse driven. Works fine now!
Seems like a cool game too..though bit busy now, will have to play more later.
What does "Schildkröten" stand for anyway?
-
Schildkrötenformation is the german word for tortoise formation. Quite the beautifull example of german word craftsmanship.
For a more visual explanation of the tortoise formation refer to this (https://youtu.be/oKidloj2Etk?t=38).
-
"Schildkrötenformation" is indeed a beautiful word, and an extra fitting term for the Roman defensive position since "Schildkröte" literally means "shield-toad".
AgingMinotaur:
Your exception indicates that you do not have the required java version 8. I am using Windows to develop so I only tested the Oracle JRE 1.8.0_74.
That makes sense. I'm using the free java version (icedtea) that comes with Debian. There are ways to install Sun Java, though, maybe I'll get around to test it again soon-ish.
As always,
Minotaruos
-
I made some more gifs showing off the additions since the last ones. Barbarians, death and attack animations and the like. Also you can get new recruits by rescuing them from cages (and via another, secret way).
(http://i.imgur.com/Yj8rhku.gif)
(http://i.imgur.com/wuQ2zn3.gif)
-
Another error: The targeted version of OS X does not support OpenGL 3.0 or 3.1. My computer seems to support OpenGL 4.1. Does that mean I'd have to download version 3.1 to run the game?
-
Hey,
kind of a catch 22 there. I requested a low version of OpenGL so as many people as possible can play it... however OSX seems to prevent the usage of a version that old even if the graphics card could handle it.
I think what I will do is request a newer version (3.3 Core Profile with forward compatibility). A lot of older hardware won't run it but I think the graphics cards > 2010 will have less problems with it.
I won't be online (holidays :)) for the next few days so here is a summary:
Get the game here (https://www.dropbox.com/s/pxd803jgktc3dlg/Schildkroetenformation.zip?dl=0) or here if the first version does not work (https://www.dropbox.com/s/sz8iz1ik5jezvqm/Schildkroetenformation_DepFun.zip?dl=0).
If you can run the game:
- Choose Start/Quit using Up/Down + Enter in the start screen.
- 12345 choose the formation, Q/E rotate it, Left click stabs in the direction the romans are facing (any direction, not just Up/Down/Left/Right).
- The romans have a shield in front of them that will stop the barbarians.
- Get new guys from cages or from another source ;)
- Find the golden eagle (some of your guys will surround it) and slay all barbarians to win.
If you can not:
- The working directory when running the game must be the 'bin' folder.
- Make sure you have Java 8 installed (most recent update is best) and that it is accessible from your console. It has to be in your path or the JAVA_HOME system variable must be set.
- Make sure your graphics driver supports at least OpenGL 3.1 and your operating system is not preventing apps from using it (OSX :( )
- See this post (http://forums.roguetemple.com/index.php?topic=4934.msg46080#msg46080) for how to get the console to stay open if you are on Windows.
- Good luck? Sorry...
As I said, after a bit of a 7DRL cooldown period I will work on ways to make the game more compatible with different OS/OpenGL versions.
-
Worked fine on Linux Mint 17.3. Nice game, though for some reason I found it really hard to keep more than one roman alive. The last one could survive for ages, but the other die all the time. Looks good, plays good, good one.