Angband.oook.cz
Angband.oook.cz
AboutVariantsLadderForumCompetitionComicScreenshotsFunniesLinks

Go Back   Angband Forums > Angband > Variants

Reply
 
Thread Tools Display Modes
Old February 8, 2011, 21:59   #11
Nick
Vanilla maintainer
 
Nick's Avatar
 
Join Date: Apr 2007
Location: Canberra, Australia
Age: 57
Posts: 9,465
Donated: $60
Nick will become famous soon enoughNick will become famous soon enough
Quote:
Originally Posted by nppangband View Post
Again, thank you. Do you mean I should rename the NPPchanges.txt file in the main directory?
Correct. changes.txt is referred to in Makefile.osx, so you could change the name there instead if you prefer.

You weren't kidding about moving to the V3.2 codebase, BTW
__________________
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.
Nick is offline   Reply With Quote
Old February 9, 2011, 01:59   #12
nppangband
NPPAngband Maintainer
 
Join Date: Dec 2008
Location: Stat Gain, Angband
Posts: 926
nppangband is on a distinguished road
Quote:
Originally Posted by Nick View Post
Correct. changes.txt is referred to in Makefile.osx, so you could change the name there instead if you prefer.
I made those changes.

The OSX/MAC build is also available here:

http://download.nppangband.org/NPPAngband-0.5.1-osx.dmg


Quote:
Originally Posted by Nick View Post
You weren't kidding about moving to the V3.2 codebase, BTW
I started just wanting to do the shop interface. I think it was about 5-75 hours of cut and paste before it would even compile. I probably wasn't too smart about the way I did some things, and it could have been done alot quicker, but it was still a heck of a project either way. I didn't even get all of it. I still don't have effect.c yet.

Good luck!

What version is the current FAAngband?
nppangband is offline   Reply With Quote
Old February 9, 2011, 02:12   #13
slinberg
Rookie
 
Join Date: May 2008
Posts: 21
slinberg is on a distinguished road
If I could toss in one feature request (I'm mainly a Vanilla player): in Vanilla, if you're given a prompt with only one option, the return key accepts it (rather than "a" or whatever the option designator is). It's a small thing, but I've gotten used to it.
slinberg is offline   Reply With Quote
Old February 9, 2011, 02:17   #14
Nick
Vanilla maintainer
 
Nick's Avatar
 
Join Date: Apr 2007
Location: Canberra, Australia
Age: 57
Posts: 9,465
Donated: $60
Nick will become famous soon enoughNick will become famous soon enough
Quote:
Originally Posted by nppangband View Post
I started just wanting to do the shop interface. I think it was about 5-75 hours of cut and paste before it would even compile. I probably wasn't too smart about the way I did some things, and it could have been done alot quicker, but it was still a heck of a project either way. I didn't even get all of it. I still don't have effect.c yet.
I'm trying to get just about everything except the store interface - the new command structures and spellcasting have hurt most so far, and I'm just hitting object handling...

Quote:
What version is the current FAAngband?
1.1.6 is current; my version policy is that all 1.1.x are savefile compatible, and increasing x is meant to be just for bugfixing. So once I have all this done it will go to 1.2.
__________________
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.
Nick is offline   Reply With Quote
Old February 9, 2011, 14:31   #15
nppangband
NPPAngband Maintainer
 
Join Date: Dec 2008
Location: Stat Gain, Angband
Posts: 926
nppangband is on a distinguished road
Quote:
Originally Posted by Nick View Post

1.1.6 is current; my version policy is that all 1.1.x are savefile compatible, and increasing x is meant to be just for bugfixing. So once I have all this done it will go to 1.2.
I worded that poorly. I meant to ask, what version of the Angband codebase is FAA based on? IIRC it was based on Oangband, which might have gotten its start with Angband 2.8.3. And I don't know if either have kept up with recent Angband development. I was trying to guess how much of the base code will have to be udpated.
nppangband is offline   Reply With Quote
Old February 9, 2011, 23:03   #16
Nick
Vanilla maintainer
 
Nick's Avatar
 
Join Date: Apr 2007
Location: Canberra, Australia
Age: 57
Posts: 9,465
Donated: $60
Nick will become famous soon enoughNick will become famous soon enough
Quote:
Originally Posted by nppangband View Post
I worded that poorly. I meant to ask, what version of the Angband codebase is FAA based on? IIRC it was based on Oangband, which might have gotten its start with Angband 2.8.3. And I don't know if either have kept up with recent Angband development. I was trying to guess how much of the base code will have to be udpated.
Yes, it came from O which came from V2.8.3, but my most recent import of codebase from V was 3.0.9 IIRC. Which means it has little bit and pieces from every version of V since 2.8.3
__________________
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.
Nick is offline   Reply With Quote
Old February 10, 2011, 06:26   #17
dcztmband
Rookie
 
dcztmband's Avatar
 
Join Date: Jan 2011
Age: 51
Posts: 15
dcztmband is on a distinguished road
Hello,

I'm new to the linux world and I can't compile this

Quote:
Originally Posted by nppangband View Post
with the instructions shown here:

http://rephial.org/wiki/Compiling#s2_2

A simple

Code:
./configure --prefix=$HOME
make
make install
doesn't work, where is the configure file?

Please could you help me?

Thanks in advance!
dcztmband is offline   Reply With Quote
Old February 10, 2011, 07:20   #18
Nick
Vanilla maintainer
 
Nick's Avatar
 
Join Date: Apr 2007
Location: Canberra, Australia
Age: 57
Posts: 9,465
Donated: $60
Nick will become famous soon enoughNick will become famous soon enough
Quote:
Originally Posted by dcztmband View Post
Please could you help me?
Code:
cd src
make -f Makefile.std
will do it, almost. It is also (I just now see) missing src/snd-sdl.c. The simple fix is to copy it from another *band (V and FA both work); alternatively, remove the snd-sdl.o from Makefile.std.
__________________
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.
Nick is offline   Reply With Quote
Old February 10, 2011, 12:10   #19
dcztmband
Rookie
 
dcztmband's Avatar
 
Join Date: Jan 2011
Age: 51
Posts: 15
dcztmband is on a distinguished road
[Solved] Compiling NPPAngband on linux platforms

Quote:
Originally Posted by Nick View Post
Code:
cd src
make -f Makefile.std
will do it, almost. It is also (I just now see) missing src/snd-sdl.c. The simple fix is to copy it from another *band (V and FA both work); alternatively, remove the snd-sdl.o from Makefile.std.
Yes, this worked fine, thank you!

All the best!
dcztmband is offline   Reply With Quote
Reply


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
[Announce] NPPAngband 0.5.1 WIP 3 nppangband Development 4 September 7, 2010 02:57
[Announce] NPPAngband 0.5.1 WIP 2 nppangband Development 24 August 27, 2010 11:24
[Announce] NPPAngband 0.5.1 WIP nppangband Development 30 August 18, 2010 16:59
[announce] Sangband version 1.0.0 Final is out. Leon Marrick Variants 6 March 7, 2010 18:17
New Verison of NPPAngband version 050 to be released in about a week nppangband Variants 17 January 31, 2010 18:55


All times are GMT +1. The time now is 16:25.


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