![]() |
#1 |
Swordsman
Join Date: Jun 2011
Location: Germany
Age: 53
Posts: 429
![]() |
Player's Guide
Hey all, i am still working on a player's guide to Angband. I have a PDF version quite far to, lets say 75%. But there are a couple of issues with it, image conversion and no pixel perfect scaling between the application i use to write the guide (OpenOffice) and the exported PDF file. I work on windows and don't know if PDF is a suitable format for unix / linux based systems.
So here is my question to you all: Better to use a simple text format with just courier new font and LF/CR signs (which is very likely to be useable on all systems) or the more graphic style oriented PDF file? Thanks for any feedback! |
![]() |
![]() |
![]() |
#2 |
Prophet
Join Date: Dec 2009
Posts: 9,024
![]() |
Linux can deal with PDFs just fine. How important are the images to the guide?
Kind of surprised that OpenOffice is ruining your images though. There must be some way to turn off resizing during the export process. |
![]() |
![]() |
![]() |
#3 |
Prophet
Join Date: Apr 2007
Location: Seattle, WA
Posts: 6,670
Donated: $40
![]() |
@Tiberus--what version of OpenOffice are you using? It should be using TrueType or FreeType; font size just shouldn't matter.
|
![]() |
![]() |
![]() |
#4 |
Veteran
Join Date: Oct 2016
Location: London-ish
Age: 49
Posts: 2,067
![]() |
are you just using the guide which is built into the game, or are you expanding it?
|
![]() |
![]() |
![]() |
#5 |
Swordsman
Join Date: Jun 2011
Location: Germany
Age: 53
Posts: 429
![]() |
players guide
I am using OpenOffice 3.4.1. I use this version because the newer versions always require some kind of internet connection for updates etc. I do not like those kind of requirements.
The help pages available inside the game do explain quite some aspects. But i feel they miss out very important topics belonging into a(n advanced) players guide, which covers more than just explaining what is possible with the available commands. Well, of course the pictures add a good deal of athmosphere in my eyes. So i would rather prefer a PDF version. I guess i will try to finish that and then see how i can get feedback here about it. |
![]() |
![]() |
![]() |
#6 |
Veteran
Join Date: Oct 2016
Location: London-ish
Age: 49
Posts: 2,067
![]() |
Absolutely agree with you. A more indepth player guide would really help make Angband more popular.
things, for example, which are invaluable now but i didn't understand back when i started: 1) mobs, OOD mobs, and uniques, which you are *NOT* meant to fight, and escaping in general as a major game tactic. 2) why resistances make such a difference and why instead AC, acid damage, etc are less important. (i.e. how to chose your equipment) 3) ALL the hidden game options, and how to find them, and WHY you should find them. 4) LOS tricks, turn count, resting, and in general explaining that this is a tactical game, not a RPG; one turn counts for a lot. 5) keymaps. and maybe inscriptions, but indepth. |
![]() |
![]() |
![]() |
#7 |
Veteran
Join Date: Jan 2009
Location: Manhattan Beach, CA
Posts: 2,110
![]() |
All of which can be learned by watching Fizzix's excellent "Let's Play Angband" series on YouTube. Though, they may be becoming a little dated since all the changes.
__________________
“We're more of the love, blood, and rhetoric school. Well, we can do you blood and love without the rhetoric, and we can do you blood and rhetoric without the love, and we can do you all three concurrent or consecutive. But we can't give you love and rhetoric without the blood. Blood is compulsory. They're all blood, you see.” ― Tom Stoppard, Rosencrantz and Guildenstern are Dead |
![]() |
![]() |
![]() |
#8 | |
Scout
Join Date: Apr 2017
Posts: 48
![]() |
Quote:
A possible workaround is to manually scale your images to match the print quality of the OpenOffice / PDF document while using a nearest neighbour filter. Usually that is 300 DPI, whereas screendumps and images for webpages are supposed to be 72 DPI or 96 DPI. Scaling the image will increase the file size, but since the scaling use a nearest neighbour filter, it should compress reasonably well. If you want to automate the scaling process, you can do so in GIMP. I don't have GIMP installed and have never used the scripting part of the program, so I can't help you with that. It is supposed to be Python with access to GIMP through an API. With Python installed on your computer, you can solve the problem using PIL / Pillow. The example below is for Pillow, but should work with PIL as well. First get Pillow through pip: Code:
pip install pillow Code:
from PIL import Image scale_from_dpi = 96.0 scale_to_dpi = 300.0 input_filename = 'Xenon 2 Megablast_1.png' output_filename = 'Xenon 2 Megablast_1 (scaled).png' original_image = Image.open(input_filename) new_width = int(original_image.width * scale_to_dpi / scale_from_dpi) new_height = int(original_image.height * scale_to_dpi / scale_from_dpi) resized_image = original_image.resize((new_width, new_height), Image.NEAREST) resized_image.save(output_filename) Import the scaled image(s) into you document (I just used drag+drop), right-click and select 'Picture...' (or maybe it is called Image...), the click the 'Original size' button to ensure that the image isn't manipulated by OpenOffice. |
|
![]() |
![]() |
![]() |
#9 |
Veteran
Join Date: Apr 2009
Location: Pisa / DL0
Posts: 1,001
![]() |
My 2 cents: Markdown is the best alternative by far. It's the perfect mix of portability, maintainability, and graphic quality. You can easily include images, screenshots, and code blocks containing ASCII art. You can convert it to PDF, HTML and anything else using Pandoc. You can throw it into version control. It's readable even as pure text. It's very likely going to be future-proof since it has gained huge traction now.
__________________
Dive fast, die young, leave a high-CHA corpse. -- You read a scroll labeled 'lol gtfo' of Teleport Level. |
![]() |
![]() |
![]() |
#10 |
Rookie
Join Date: Oct 2017
Posts: 6
![]() |
I've been visiting these forums off-and-on for years. Now I'm looking to stay around, and I am really interested in a modern player's guide. How are things going on that front?
|
![]() |
![]() |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Guide to the ID game | Infinitum | Sil | 6 | November 9, 2016 02:18 |
another try on a player's guide | Tibarius | Vanilla | 6 | June 25, 2016 22:25 |
Useful update to rephial Player's Guide | Pete Mack | Vanilla | 0 | April 14, 2013 08:44 |
How I Beat Angband. Or: A WoW Player's Dungeoneering Guide | Xaxyx | Vanilla | 17 | February 23, 2010 12:00 |
Tried my hand at a basic player's guide. | Pete Mack | Vanilla | 30 | January 12, 2010 10:50 |