Angband.oook.cz
Angband.oook.cz
AboutVariantsLadderForumCompetitionComicScreenshotsFunniesLinks

Go Back   Angband Forums > Angband > Development

Reply
 
Thread Tools Display Modes
Old April 28, 2015, 05:02   #711
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
Quote:
Originally Posted by nppangband View Post
Looks great. Actually, with the ability to rotate the tiles, you would only need 4 of them
Depends on if you want to do shadows, other directional lighting effects, or any kind of perspective work.
Derakon is offline   Reply With Quote
Old April 28, 2015, 15:02   #712
Shockbolt
Knight
 
Shockbolt's Avatar
 
Join Date: Jan 2011
Location: Norway
Posts: 635
Shockbolt is on a distinguished road
Send a message via MSN to Shockbolt
Quote:
Originally Posted by nppangband View Post
Looks great. Actually, with the ability to rotate the tiles, you would only need 4 of them
I don't see how you'd be able to get a seemless tileset with only 4 tiles.
__________________
http://www.rpgartkits.com/
Fantasy art kits for personal and commercial use. Commercial use requires a Developer license, also available through my website.
Shockbolt is offline   Reply With Quote
Old April 28, 2015, 17:32   #713
Shockbolt
Knight
 
Shockbolt's Avatar
 
Join Date: Jan 2011
Location: Norway
Posts: 635
Shockbolt is on a distinguished road
Send a message via MSN to Shockbolt
Quote:
Originally Posted by Dean Anderson View Post
Speaking of which...

I'm probably missing something obvious, but is the entire tileset (in 64x64) available anywhere? This thread contains lots of pictures with individual tiles or groups of tiles, but if there are any links to a big honking tilesheet then I've missed them.

I'd love to use them in Cthangband.
The majority of the tiles and tokens I've made are currently included in the tilesheet downloaded with Angband. I'm also working on creating a "clean" tilesheet that only contain "Shockbolt" artwork.

Up until now, I've found it to be easier editing images when they are stored as separate images instead of in a large tilesheet, besides back when I worked on art for ToME, separate images for everything was the way to go.
__________________
http://www.rpgartkits.com/
Fantasy art kits for personal and commercial use. Commercial use requires a Developer license, also available through my website.
Shockbolt is offline   Reply With Quote
Old April 28, 2015, 19:13   #714
AnonymousHero
Veteran
 
AnonymousHero's Avatar
 
Join Date: Jun 2007
Posts: 1,391
AnonymousHero is on a distinguished road
Quote:
Originally Posted by Shockbolt View Post
The majority of the tiles and tokens I've made are currently included in the tilesheet downloaded with Angband. I'm also working on creating a "clean" tilesheet that only contain "Shockbolt" artwork.

Up until now, I've found it to be easier editing images when they are stored as separate images instead of in a large tilesheet, besides back when I worked on art for ToME, separate images for everything was the way to go.
Have you looked into any of the "spriting" tools for web development? It seems like they should be able to combine all of your individual images into a single image with a simple command.
AnonymousHero is offline   Reply With Quote
Old April 28, 2015, 21:18   #715
Shockbolt
Knight
 
Shockbolt's Avatar
 
Join Date: Jan 2011
Location: Norway
Posts: 635
Shockbolt is on a distinguished road
Send a message via MSN to Shockbolt
Trouble is making any type of software to recognize what is what and group stuff together, in the process making up free space near each group for future additions. I guess you could stuff every item in a file, every monster in a file and then place those out onto a tilesheet manually with some empty space between the groups.
__________________
http://www.rpgartkits.com/
Fantasy art kits for personal and commercial use. Commercial use requires a Developer license, also available through my website.
Shockbolt is offline   Reply With Quote
Old April 28, 2015, 21:22   #716
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
Quote:
Originally Posted by Shockbolt View Post
Trouble is making any type of software to recognize what is what and group stuff together, in the process making up free space near each group for future additions. I guess you could stuff every item in a file, every monster in a file and then place those out onto a tilesheet manually with some empty space between the groups.
For traditional game dev there are tools where you hand them a bunch of files and the tool will compile the lot of them together into an efficient packing within a single file, and tell you the offsets of each "sub-image" within the file. This isn't the kind of thing you should be trying to do by hand.
Derakon is offline   Reply With Quote
Old April 29, 2015, 02:36   #717
nppangband
NPPAngband Maintainer
 
Join Date: Dec 2008
Location: Stat Gain, Angband
Posts: 926
nppangband is on a distinguished road
Quote:
Originally Posted by Shockbolt View Post
I don't see how you'd be able to get a seemless tileset with only 4 tiles.
One tile completely full of lava + the other three types of "edge" tiles, each of which can be rotated to represent the 4 directions. This makes 13 different possible tiles.
__________________
NPPAngband current home page: http://nppangband.bitshepherd.net/
Source code repository:
https://github.com/nppangband/NPPAngband_QT
Downloads:
https://app.box.com/s/1x7k65ghsmc31usmj329pb8415n1ux57
nppangband is offline   Reply With Quote
Old April 29, 2015, 02:40   #718
nppangband
NPPAngband Maintainer
 
Join Date: Dec 2008
Location: Stat Gain, Angband
Posts: 926
nppangband is on a distinguished road
Quote:
Originally Posted by Shockbolt View Post
Trouble is making any type of software to recognize what is what and group stuff together, in the process making up free space near each group for future additions. I guess you could stuff every item in a file, every monster in a file and then place those out onto a tilesheet manually with some empty space between the groups.
The NPP QT port has one .png file for each item. No more tilemaps. They are in a zip file.

It works quite nicely. No more worrying about tile coordinates. Or having three different shades of lighted tile terrain. The shadow and other lighted effects are handled with a couple lines of code.
__________________
NPPAngband current home page: http://nppangband.bitshepherd.net/
Source code repository:
https://github.com/nppangband/NPPAngband_QT
Downloads:
https://app.box.com/s/1x7k65ghsmc31usmj329pb8415n1ux57
nppangband is offline   Reply With Quote
Old April 29, 2015, 15:04   #719
Shockbolt
Knight
 
Shockbolt's Avatar
 
Join Date: Jan 2011
Location: Norway
Posts: 635
Shockbolt is on a distinguished road
Send a message via MSN to Shockbolt
Using single images instead of a huge tilesheet is also something I'd prefer myself, that way you wouldn't worry about running out of space or worry about coordinates as mentioned above here.
__________________
http://www.rpgartkits.com/
Fantasy art kits for personal and commercial use. Commercial use requires a Developer license, also available through my website.
Shockbolt is offline   Reply With Quote
Old April 30, 2015, 00:49   #720
buzzkill
Prophet
 
buzzkill's Avatar
 
Join Date: May 2008
Location: Indiana, USA
Posts: 2,939
Donated: $8
buzzkill is on a distinguished road
Quote:
Originally Posted by nppangband View Post
Or having three different shades of lighted tile terrain. The shadow and other lighted effects are handled with a couple lines of code.
Nice. Also allows for nearly infinite shading possibilities? Maybe even changing the hue? Bring a bit of Brogue flicker and such to NPP .
__________________
www.mediafire.com/buzzkill - Get your 32x32 tiles here. UT32 now compatible Ironband and Quickband 9/6/2012.
My banding life on Buzzkill's ladder.
buzzkill is offline   Reply With Quote
Reply

Tags
angband, graphic, graphics, tileset


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
OSX Tileset help? ZorroRoaster Variants 1 March 31, 2009 00:09
Tileset formats? caduceus Vanilla 8 April 23, 2008 23:44


All times are GMT +1. The time now is 06:20.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.