(May 2015) Montly WIP screenshot thread

Definitely supporting only the Ogg format would be the easiest route for me, but I don’t think that the Ogg format has much market penetration so my music player wouldn’t be all that usable for a lot of people. I rather doubt many gamers would be willing to convert their MP3s to Ogg just to play Carpe Diem, though it will support running in windowed mode so using their own music player isn’t out of the question either.

I should be able to, using JavaFX, detect if a format is supported or not so trying to play an MP3 when it’s not supported by the system shouldn’t cause a crash or anything. One option I thought of was to use JavaFX for MP3 playback and jME for Ogg playback, that way if JavaFX isn’t working properly on a system they can, at least, play Ogg.

Really it would be nice if the Ogg format had a larger market share, it is a great format. Unfortunately in todays market I find that often times it is not the fittest that survives.

Block terrain with LOD implementation for large view distances.
View distance in this pictures is 2176 blocks.

10 Likes

Any chance to see the source of your block terrain @qxCsXO1 ?

14 Likes

Hey, great job Micheal!

Strut that stuff! Nice subdivisions and everything! :smile:

Know what is funny about that? It basically is the same I do with vertex shaders, by just having a mesh with hight vertex count in the middle and moving it with the cam over the heightmap :stuck_out_tongue:

(Probably with your approch faster on current systems however)

Awesome :smile:

That’s bootyful @zzuegg :smile:

This morning I played with jME’s particle editor and wanted to achieve a nice looking fire effect by only using the editor tools. This is what I came up with. I personally think it looks nice enough for use in a game.
Check it out:

6 Likes

Very cool! The source is welcome :slight_smile:

There is no source, this was created using the visual editor of jME.
I can zip up my resources if you would like it? The only source is the LightFlickerControl.java class.

2 Likes

It’s the best jME particle effect example so far.

What are the white flashes?

Some pretty cool stuff posted in here lately. Love to see what everyone is coming up with.

If anyone is curious I did end up polishing off my music player for Carpe Diem:

It does indeed support MP3 which was surprisingly easy to include. If anyone is thinking about using JavaFX for audio playback in their jME projects the only thing you need to keep in mind, apparently, is that the JavaFX ‘toolkit’ needs to be enabled. Typically, through a JavaFX application, this is done when Application.launch() is called, but in jME that’s not necessary. You can just create:

new JFXPanel();

You don’t need to store it in a variable or anything, enabling the JavaFX toolkit is part of the JFXPanel constructor so once it’s created you can just leave it for the garbage collector. Once that is done you’re free to create and use an instance of MediaPlayer.

new MediaPlayer(new Media(new File("Path/To/Audio.mp3").toURI().toString());

That simple :smile:

P.S. I wanted a somewhat retro look for the information display in the player window so I ended up making my own digital font with Blender. I only included the 0-9 characters plus a colon since that’s all I plan on using it for. I’d be happy to hand out the .png and .fnt files if anyone wants it, it’s only in 24 point size.

Oh yeah, in the screen cap above that’s the drag and drop feature being shown. I didn’t use Nifty’s built in drag and drop functionality, I wrote my own. The dragged items are basically just a window like the other windows, but without a decoration.

Hey folks.

Just wanted to show you screenshots from our current projects :smile:

http://agtinet.de/images/Myrdragor/bild5.JPG
Terrain for Myrdragor MMO. We are still on this project :smiley:

Another Puzzle from Tidy Jump n Think

Sadly, there are still no usable screenshots for Omniverse, maybe next month.

Edit: Sorry, Omniverse Link wasn’t working

5 Likes

@iamcreasy, here is a project download for that fire particle effect.
I zipped up the jME project and you can get it here.

@tirnithil, those screenshots looks amazing.
Well done!

Heheh… your first screen shot looks shockingly familiar. :smile:

Both look nice.

2 Likes

Regular versus displacement mapped.

14 Likes

Whoa that landscape in Myrdragor looks gorgeous!

From:

…cutting to the chase on that:

4 Likes