What's everyone working on? (tigsource inspired)

General discussion about LÖVE, Lua, game development, puns, and unicorns.
User avatar
megalukes
Citizen
Posts: 94
Joined: Fri Jun 27, 2014 11:29 pm
Location: Brazil

Re: What's everyone working on? (tigsource inspired)

Post by megalukes »

Creating some actions for each character in map and adding nice animations to them. It still needs some more tweaking but i's going nicely. I'm also learning how to use shaders to create better looking (but simple) effects (the tracing effect was done with shaders and tweening).
gifrpg.gif
gifrpg.gif (1.51 MiB) Viewed 7276 times
User avatar
Ulydev
Party member
Posts: 445
Joined: Mon Nov 10, 2014 10:46 pm
Location: Paris
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Ulydev »

Making an online, turn-based strategy shooter for #makeitsuperhot

Image
roccdcasbah
Prole
Posts: 5
Joined: Thu Feb 23, 2017 12:02 pm

Re: What's everyone working on? (tigsource inspired)

Post by roccdcasbah »

Im currently working on a peaceful top-down puzzle game.

Yesterday I implemented a teleport device that can either teleport you around in a 5x5 grid or switch any block around in the same grid.
The game is tilebased and Im trying to make use of visual candy to make it a bit more interesting for ZE EYES! Third party libraries used are Shine, light_world and Shack! Pretty happy with the prototype and those who have tried the demo thought it was fun. Next step is DRYing the code and make it more scalable.

heres som really bad gifs with some blocky placeholder graphics, demonstrating some simple puzzle solving and the teleport device!
Attachments
forum5.gif
forum5.gif (1.61 MiB) Viewed 7027 times
forum3.gif
forum3.gif (3.03 MiB) Viewed 7027 times
forum1.gif
forum1.gif (4.81 MiB) Viewed 7027 times
Echo13243
Prole
Posts: 2
Joined: Fri Mar 10, 2017 1:07 am

Re: What's everyone working on? (tigsource inspired)

Post by Echo13243 »

A dumb ms-paint graphics 15 tile puzzle that isn't working
MasterLee
Party member
Posts: 141
Joined: Tue Mar 07, 2017 4:03 pm
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by MasterLee »

Tile/Map editor, which can be entirely operated with keyboard. Also supporting fours colors per palette and 32 palettes to choose from per tile.
Only 16x16 Tile size but nice Island:
Bildschirmfoto von »2017-02-21 18-41-38«.png
Bildschirmfoto von »2017-02-21 18-41-38«.png (17.6 KiB) Viewed 6926 times
With wrong colors
Bildschirmfoto von »2017-02-21 18-46-07«.png
Bildschirmfoto von »2017-02-21 18-46-07«.png (16.88 KiB) Viewed 6926 times
And here the tileset editor where you can choose from an total of 256 tiles
Bildschirmfoto von »2017-03-10 11-53-11«.png
Bildschirmfoto von »2017-03-10 11-53-11«.png (13.38 KiB) Viewed 6926 times
On left an right you see an tilemap where for each cell an tile and palette can be choosen also it is possible to flip an tile horizontal, vertical and diagonal.
Rendering of tilemap is done using fragmentshader and special prepared images

Code: Select all

    extern vec2 offset;
    extern vec2 size;
    extern vec2 mapsize;
    extern sampler2D tiles;
    extern sampler2D palette;
    vec4 effect(vec4 color,Image texture,vec2 texture_coords,vec2 pixel_coords)
    {
      texture_coords*=size;
      texture_coords+=offset;
      vec4 cell=Texel(texture,floor(texture_coords)/mapsize);
      vec2 pixelpos=mod(texture_coords,1);
      if(cell.a>=.5)pixelpos.x=1-pixelpos.x;
      if(mod(cell.a,.5)>=.25)pixelpos.y=1-pixelpos.y;
      if(mod(cell.a,.25)>=.125)pixelpos=pixelpos.yx;
      return Texel(palette,vec2(cell.b,Texel(tiles,pixelpos/16+cell.rg).r));
    }
Link30
Prole
Posts: 1
Joined: Fri Mar 17, 2017 3:22 pm

Re: What's everyone working on? (tigsource inspired)

Post by Link30 »

I am working on my first project in LUA which will probably be some kind of turn based tactical game, I am not sure yet. It is hex tile based, I am pretty much done with the pathfinder, although I am still not sure how to weight the Heuristics, you can see when I change its value it changes its behaviour to either Dijkstra’s Algorithm or Best-First-Search. When I finalize what the movement costs are like I will probably finalize it or make it dynamicly change or smth.
Attachments
hex.gif
hex.gif (1.13 MiB) Viewed 6806 times
tapir
Prole
Posts: 9
Joined: Wed Jan 01, 2014 12:49 pm

Re: What's everyone working on? (tigsource inspired)

Post by tapir »

We are working on a M.U.L.E clone. Here are some mockups.

Image

Image
User avatar
Davidobot
Party member
Posts: 1226
Joined: Sat Mar 31, 2012 5:18 am
Location: Oxford, UK
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Davidobot »

Image
A game about dying a lot and discovering that you have been betrayed.
PM me on here or elsewhere if you'd like to discuss porting your game to Nintendo Switch via mazette!
personal page and a raycaster
User avatar
mtdev
Prole
Posts: 20
Joined: Mon Feb 20, 2017 5:10 am
Location: Midwest US

Re: What's everyone working on? (tigsource inspired)

Post by mtdev »

Not entirely sure what it is yet :awesome: ... Thinking something similar to ICE but most likely will end up a half finished hard drive waster.
Attachments
something.PNG
something.PNG (38.97 KiB) Viewed 6546 times
Whatthefuck
Party member
Posts: 106
Joined: Sat Jun 21, 2014 3:45 pm

Re: What's everyone working on? (tigsource inspired)

Post by Whatthefuck »



I decided to add a small gameplay mechanic - books and bookshelves - to my game dev sim game

books provide boosts to experience gain in skills
the boosts are provided regardless of where the bookshelf is, as long as it is reachable

each bookshelf can contain a maximum of 3 books, each book increases experience gain of a skill by 5%, there are a total of 3 books for each skill

that translates to a maximum of a 15% skill experience gain boost if all books are placed in bookshelves

it's a cool little feature that is beneficial to all employees within the office and is another way of spending money for the player :)
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 63 guests