* [gentoo-user] Lov'n Gentoo
@ 2010-05-26 17:45 James
2010-05-26 23:23 ` Peter Humphrey
2010-05-27 0:50 ` [gentoo-user] danger-deep Iain Buchanan
0 siblings, 2 replies; 6+ messages in thread
From: James @ 2010-05-26 17:45 UTC (permalink / raw
To: gentoo-user
Folks,
I just had to share this.....
So I read the Linux journal, mostly to do my
part to keep publications about Linux alive.
Occationally they write about something cool,
though rarely related to Gentoo....
So I read about a very cool submarine game today
on LJ:
http://www.linuxjournal.com/content/danger-deep
Only to discover it's already in portage.
KUDOS to the Gentoo game devs for being
on top of this one........
I'm so glad I hate windows and love Gentoo......
Sure, I'm an old fart, but, I'm going off to
test out this game (so I can tell my kids about it
and be cool.............for about 5 seconds).....
James
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] Lov'n Gentoo
2010-05-26 17:45 [gentoo-user] Lov'n Gentoo James
@ 2010-05-26 23:23 ` Peter Humphrey
2010-05-27 0:50 ` [gentoo-user] danger-deep Iain Buchanan
1 sibling, 0 replies; 6+ messages in thread
From: Peter Humphrey @ 2010-05-26 23:23 UTC (permalink / raw
To: gentoo-user
On Wednesday 26 May 2010 18:45:53 James wrote:
> I read the Linux journal, mostly to do my part to keep publications
> about Linux alive.
I gave up on that one years ago - so many that I can't remember how
many. I couldn't see why I should continue to buy a Linux mag that
didn't help me to run Linux, preferring to spend its time waffling and
pontificating. I still can't. Maybe it's changed since.
Journal? I don't think so.
--
Rgds
Peter.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-user] danger-deep
2010-05-26 17:45 [gentoo-user] Lov'n Gentoo James
2010-05-26 23:23 ` Peter Humphrey
@ 2010-05-27 0:50 ` Iain Buchanan
2010-05-27 11:18 ` Arttu V.
2010-05-27 13:38 ` [gentoo-user] danger-deep Grant Edwards
1 sibling, 2 replies; 6+ messages in thread
From: Iain Buchanan @ 2010-05-27 0:50 UTC (permalink / raw
To: gentoo-user
On Wed, 2010-05-26 at 17:45 +0000, James wrote:
> Folks,
>
> I just had to share this.....
>
> So I read the Linux journal, mostly to do my
> part to keep publications about Linux alive.
> Occationally they write about something cool,
> though rarely related to Gentoo....
FTA:
The Web site provides a lovely binary installer that feels much
like that of a commercial game. You can compile the game from
source if you want, but would you really do that when you can
simply click Next, Next, Next?
*sigh*
> So I read about a very cool submarine game today
> on LJ:
> http://www.linuxjournal.com/content/danger-deep
>
> Only to discover it's already in portage.
> KUDOS to the Gentoo game devs for being
> on top of this one........
Doesn't run here. Something to do with getting the available
resolutions:
SDL_Rect** modes = SDL_ListModes(NULL, SDL_FULLSCREEN|SDL_HWSURFACE);
must be returning nothing, because later when it tests the resolution it
wants to use against the resolutions available:
for (list<vector2i>::const_iterator it = available_resolutions.begin(); it != available_resolutions.end(); ++it) {
if (*it == vector2i(res_x_, res_y_)) {
ok = true;
break;
}
}
if (!ok)
throw invalid_argument("invalid resolution requested!");
I get the exception. No matter what res I specify on the command
line :(
$ dangerdeep
Caught exception: invalid resolution requested!
Anyone know about SDL?
thanks,
--
Iain Buchanan <iaindb at netspace dot net dot au>
If you stand on your head, you will get footprints in your hair.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] danger-deep
2010-05-27 0:50 ` [gentoo-user] danger-deep Iain Buchanan
@ 2010-05-27 11:18 ` Arttu V.
2010-05-28 0:56 ` Iain Buchanan
2010-05-27 13:38 ` [gentoo-user] danger-deep Grant Edwards
1 sibling, 1 reply; 6+ messages in thread
From: Arttu V. @ 2010-05-27 11:18 UTC (permalink / raw
To: gentoo-user
On 5/27/10, Iain Buchanan <iaindb@netspace.net.au> wrote:
> On Wed, 2010-05-26 at 17:45 +0000, James wrote:
>> Folks,
>>
>> I just had to share this.....
>>
>> So I read the Linux journal, mostly to do my
>> part to keep publications about Linux alive.
>> Occationally they write about something cool,
>> though rarely related to Gentoo....
>
> FTA:
> The Web site provides a lovely binary installer that feels much
> like that of a commercial game. You can compile the game from
> source if you want, but would you really do that when you can
> simply click Next, Next, Next?
> *sigh*
>
>> So I read about a very cool submarine game today
>> on LJ:
>> http://www.linuxjournal.com/content/danger-deep
>>
>> Only to discover it's already in portage.
>> KUDOS to the Gentoo game devs for being
>> on top of this one........
>
> Doesn't run here. Something to do with getting the available
> resolutions:
>
> SDL_Rect** modes = SDL_ListModes(NULL, SDL_FULLSCREEN|SDL_HWSURFACE);
>
> must be returning nothing, because later when it tests the resolution it
> wants to use against the resolutions available:
>
> for (list<vector2i>::const_iterator it = available_resolutions.begin(); it
> != available_resolutions.end(); ++it) {
> if (*it == vector2i(res_x_, res_y_)) {
> ok = true;
> break;
> }
> }
> if (!ok)
> throw invalid_argument("invalid resolution requested!");
>
> I get the exception. No matter what res I specify on the command
> line :(
>
> $ dangerdeep
> Caught exception: invalid resolution requested!
>
> Anyone know about SDL?
I really don't, but I'm just wondering if you are looking at the 0.3.0
source tarball code or their svn trunk? system.cpp is quite different
in the trunk, including changes which probably should add support for
"less common" screen sizes and modes.
--
Arttu V.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-user] Re: danger-deep
2010-05-27 0:50 ` [gentoo-user] danger-deep Iain Buchanan
2010-05-27 11:18 ` Arttu V.
@ 2010-05-27 13:38 ` Grant Edwards
1 sibling, 0 replies; 6+ messages in thread
From: Grant Edwards @ 2010-05-27 13:38 UTC (permalink / raw
To: gentoo-user
On 2010-05-27, Iain Buchanan <iaindb@netspace.net.au> wrote:
>> So I read about a very cool submarine game today
>> on LJ:
>> http://www.linuxjournal.com/content/danger-deep
>>
>> Only to discover it's already in portage.
>> KUDOS to the Gentoo game devs for being
>> on top of this one........
>
> Doesn't run here. Something to do with getting the available
> resolutions:
I've tried several times over the past couple years to get dangerdeep
going. I can get it to run briefly, but it always crashes if I try
to do much of anything. I've pretty much given up on it.
--
Grant Edwards grant.b.edwards Yow! Give them RADAR-GUIDED
at SKEE-BALL LANES and
gmail.com VELVEETA BURRITOS!!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] danger-deep
2010-05-27 11:18 ` Arttu V.
@ 2010-05-28 0:56 ` Iain Buchanan
0 siblings, 0 replies; 6+ messages in thread
From: Iain Buchanan @ 2010-05-28 0:56 UTC (permalink / raw
To: gentoo-user
On Thu, 2010-05-27 at 14:18 +0300, Arttu V. wrote:
> On 5/27/10, Iain Buchanan <iaindb@netspace.net.au> wrote:
> > Doesn't run here. Something to do with getting the available
> > resolutions:
> >
> > Anyone know about SDL?
>
> I really don't, but I'm just wondering if you are looking at the 0.3.0
> source tarball code or their svn trunk? system.cpp is quite different
> in the trunk, including changes which probably should add support for
> "less common" screen sizes and modes.
0.3.0. I just emerged the version in portage. I might try svn later
(when I'm not at work ;)
--
Iain Buchanan <iaindb at netspace dot net dot au>
Experience is that marvelous thing that enables you recognize a mistake
when you make it again.
-- Franklin P. Jones
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-05-28 1:08 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-26 17:45 [gentoo-user] Lov'n Gentoo James
2010-05-26 23:23 ` Peter Humphrey
2010-05-27 0:50 ` [gentoo-user] danger-deep Iain Buchanan
2010-05-27 11:18 ` Arttu V.
2010-05-28 0:56 ` Iain Buchanan
2010-05-27 13:38 ` [gentoo-user] danger-deep Grant Edwards
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox