Search found 157 matches

by RPG
Sun Oct 16, 2011 5:43 pm
Forum: Support and Development
Topic: Share a Shader!
Replies: 328
Views: 602896

Re: Share a Shader!

Shaders in LOVE looks strange... Is this glsl?
by RPG
Wed Oct 12, 2011 9:26 pm
Forum: Libraries and Tools
Topic: Procedural texture generator (concept)
Replies: 15
Views: 8317

Re: Procedural texture generator (concept)

That all sounds great. I wish you luck with it. I would be very, very happy if you ended up making a Love tool with which I could replace Genetica. I don't promise. Genetica is a commercial program, that costs many $$$. My project has no budget and has no team of programmers:) I added two new filte...
by RPG
Tue Oct 11, 2011 8:26 pm
Forum: Libraries and Tools
Topic: Procedural texture generator (concept)
Replies: 15
Views: 8317

Re: Procedural texture generator (concept)

Procedural generation — easy task for parallel execution on GPU. Non-parallel tasks I compute on CPU. Of course there is much work about improving quality of generators, maybe I have to use 32 bit per channel instead of 8 bit per channel — but LOVE doesn’t give me choice. I think luajit with ffi may...
by RPG
Tue Oct 11, 2011 6:15 pm
Forum: Libraries and Tools
Topic: Procedural texture generator (concept)
Replies: 15
Views: 8317

Re: Procedural texture generator (concept)

Faster than .werkkzeug?! That's a tall order... Much, much faster. .werkkzeug is a good assembly code. I wrote messy glsl code, but my video card about 20 times faster than my CPU. I use shaders to generate random noise and it is fast as hell. I dont think that .werkkzeug uses shaders to generate t...
by RPG
Tue Oct 11, 2011 4:52 am
Forum: Libraries and Tools
Topic: Procedural texture generator (concept)
Replies: 15
Views: 8317

Re: Procedural texture generator (concept)

Oooh, I like it. Have you ever used Genetica ? That could be a source of inspiration for you. It's a damn good procedural texture program. Yep, Genetica is good, but proprietary. This program will be similar to Neo Textureedit or .werkkzeug, but much, much faster. To white thing similar to Genetica...
by RPG
Mon Oct 10, 2011 8:46 pm
Forum: Libraries and Tools
Topic: Procedural texture generator (concept)
Replies: 15
Views: 8317

Procedural texture generator (concept)

Simple program, that generates seamless procedural textures: cellular noise and perlin noise. It also supports some effects: blending, gradient mapping, blur. It uses GPU for image processing ant it is very fast (512x512 texture in less than 30 milliseconds). Now this program runs on my own engine, ...
by RPG
Mon Aug 15, 2011 6:03 pm
Forum: Games and Creations
Topic: Tic tac toe (tutorial)
Replies: 7
Views: 4564

Re: Tic tac toe (tutorial)

Nice, but the AI is a bad player. I thought I'd have a game of tic tac toe that was a bit challenging... In this demo AI just places noughts randomly. I remember when I made Tic-Tac-Toe in Visual Basic way back in the 90's. I impressed myself. I gave it an AI so smart it had 3 difficulty levels. A ...
by RPG
Thu Aug 11, 2011 4:48 am
Forum: Games and Creations
Topic: Tic tac toe (tutorial)
Replies: 7
Views: 4564

Re: Tic tac toe (tutorial)

Robin wrote:Nice. Too bad it crashes on a draw: the AI keeps looking for an open space but it can't find any, so it gets stuck in an infinite loop.
Fixed. I just forgot about draw situation.
TechnoCat wrote:It really really doesn't like cat's games. :neko:
Cat's game is hunting:-)
by RPG
Wed Aug 10, 2011 6:18 pm
Forum: Games and Creations
Topic: Tic tac toe (tutorial)
Replies: 7
Views: 4564

Tic tac toe (tutorial)

I really thought a long time about which game to create as an example for lQuery framework. Gems game is very difficult to understand, so I created a little game - tic tac toe, which takes advantages of lQuery. This game has a smallest size, and I hope it is very easy to understand. require('lib.lqu...
by RPG
Tue Aug 02, 2011 7:32 pm
Forum: Libraries and Tools
Topic: lQuery 1.0 alpha
Replies: 10
Views: 7216

Re: lQuery 1.0 alpha

Robin wrote:Still, what is meant by "board"? Keyboard?
Imagine chess board or monopoly board:)