Re: [Factor-talk] Could not initialize OpenAL

2016-09-11 Thread Jon Harper
Openal works for me on Ubuntu 14.04

Le 12 sept. 2016 08:32, "Alexander Ilin"  a écrit :

Hello!

Win 8x64, Factor 32-bit.

I'm trying to run some demos, and they say I need alut.dll and
openal32.dll, both of which I've downloaded and placed in the Factor.exe
folder.

When I click some of the buttons on the `"demos" run` page I see some
modules loading, and then "Could not initialize OpenAL" with the Abort
option.
Is it just me, or do some other people have the same issue?

The demos that fail are: balloon-bomber, jamshred, space-invaders.

---=---
Александр



--

___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk
--
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] Could not initialize OpenAL

2016-09-11 Thread Alexander Ilin
Hello! Win 8x64, Factor 32-bit. I'm trying to run some demos, and they say I need alut.dll and openal32.dll, both of which I've downloaded and placed in the Factor.exe folder. When I click some of the buttons on the `"demos" run` page I see some modules loading, and then "Could not initialize OpenAL" with the Abort option.Is it just me, or do some other people have the same issue? The demos that fail are: balloon-bomber, jamshred, space-invaders. ---=---Александр 

--
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] openal32.dll

2016-09-11 Thread Alexander Ilin
Hello! There are two instances of openal32.dll at http://downloads.factorcode.org/dlls/The contents are the same, the only difference is in the name:"openal32.dll" vs."OpenAL32.dll" I think one can be removed (OpenAL32.dll) to avoid confusion. ---=---Александр 

--
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] paste.factorcode.org

2016-09-11 Thread John Benediktsson
I think we were having a ton of spam problems and @erg disabled it temporarily. 
We had wanted to maybe upgrade to Googles new "I am not a robot" captcha system 
but didn't have that patched yet. 


> On Sep 11, 2016, at 7:29 AM, Jon Harper  wrote:
> 
> Hey,
> trying to write a new paste on http://paste.factorcode.org , I'm getting 
> 404 Not found
> 
> Anyone knows what's up ?
> 
> Jon
> --
> ___
> Factor-talk mailing list
> Factor-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/factor-talk
--
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] paste.factorcode.org

2016-09-11 Thread Jon Harper
Hey,
trying to write a new paste on http://paste.factorcode.org , I'm getting
404 Not found

Anyone knows what's up ?
Jon
--
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] prettyprinter number-base float errors

2016-09-11 Thread Jon Harper
Hi list,
I'm working on factor's number parsing/printing. I'd like some inputs on
the following problem:

Basically the problem can be seen from this paste:
http://pastebin.com/jxV8UKG2 : setting number-base to 2 or 8 gives
pprint-errors for floats.

So we have the number-base variable in prettyprint.config to chose the
prettyprinter base for numbers. For reals, it supports 2 8 10 and 16. For
floats, only 10 and 16.
Since 99804fd054d5, using an unsupported base throws an exception instead
of defaulting to base 10. What should we do ?
  - go back to the previous behavior: default to base 10 ?
  - add new variables to configure rationals (integers + ratios) and floats
separately?
  - allow floats to be printed in base 2 and 8 ? (for info the parser
supports it: 0b1.1p0 0o1.4p0 0x1.8p0 all parse to 1.5)
  - a mix of the previous ?

What do you think ?
Jon
--
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk