GLBasic, 2008/2009 plans

Previous topic - Next topic

Hemlos

#75
This is thread has been moderated, and off topic messages have been deleted.

Re: GLBasic, 2008/2009 plans

That is the topic, this thread is designated for GLBASIC future planning.
This thread has been moderated for GLBASIC planning only.

Please dont spam this thread with anything, other than GLBASIC ideas for 2008/2009 plans.
Any Flaming and/or off-topic posts in this thread will be moderated/deleted.  :offtopic:

Stick to the topic.
------------------------------------------------------------------------------------------
Re: GLBasic, Pläne 2008/2009

Das ist das Thema, diesem Thread ist für GLBasic Zukunft planen.
Zu dieser Diskussion wurde moderiert für GLBasic Planung nur.

Bitte keine Spam diesem Thread etwas mit, außer GLBasic Ideen für 2008/2009 geplant.
Jede Flaming und / oder Off-Topic Beiträge in diesem Thread wird moderiert / gelöscht.

Stick zum Thema.

---------------------------------------------------------------------------------------------

これはスレッド管理され、メッセージのトピックとオフもできます。
再:  GLBasic 、 2008/2009 の計画
のトピックでは、このスレッドが指定さ GLBasic 将来計画です。
このスレッドを減速され GLBasic 計画のみです。
このスレッドをマークしないでください何でも、 2008/2009 以外のアイデアを GLBasic 計画です。
任意のフレーミングおよび/またはオフされるトピックの投稿はこちらのスレッドを管理/削除されます。
に固執するのトピックを表示します。

Bing ChatGpt is pretty smart :O

Kuron

#76


*edit*  Apologies.  I logged into my other account to delete it since I never use it anymore.  I was logged into this account at the same time and in the same browser and it got deleted when I deleted the other one.


Hemlos

idea: an option in the editor to preset a default font image.

If im not mistaking we were able to change the root directory smalfont.bmp.
This would be obsolete now because, Dings font creator makes png files.

Maybe add it to the editor outfit?
Bing ChatGpt is pretty smart :O

Kitty Hello

Next version will try to load both: smalfont.bmp and smalfont.png automatically.

Hemlos

#79
Quote from: Kitty Hello on 2008-Oct-02
Next version will try to load both: smalfont.bmp and smalfont.png automatically.

:good:

Couple questions please?

Do you make all those fonts by hand, Or is the dings creator, building them?

Is there a way to add fonts without manipulating an image in a paint editor?
Edit: Hmm im checking that hangul thing.
Bing ChatGpt is pretty smart :O

Kitty Hello

The font creator, yes.

Hemlos

Idea: translate GETPIXEL() to a rgb value

what type of value is it reporting atm?
Bing ChatGpt is pretty smart :O

Moru

I always thought GETPIXEL returned the RGB values? That's how I use it so far at least.

Neurox

Quote
Idea: translate GETPIXEL() to a rgb value

I've wrote this function for translate rgb value into Red,Green,Blue.
Code (glbasic) Select

// ------------------------------------------------------------- //
// -=#  F_rgb #=-
//
// ------------------------------------------------------------- //
FUNCTION F_rgb: cRGB, BYREF wR, BYREF wG, BYREF wB
   wR = bAND(cRGB,255)
   wG = INTEGER(bAND(cRGB,65280)/ 0x100)
   wB = INTEGER(bAND(cRGB,16711680)/0x10000)
ENDFUNCTION // F_rgb


Neurox
Paolo Borzini | paolo@borzini.it
The WhiteFly Software | www.thewhitefly.it
Service on line for screen printers | www.4pellicole.it

Kitty Hello

playmusic should be able to handle midi files.

Moru

Can you mabe post a midi file that you can't play? All midifiles I can find plays just fine on my computer.

Moru

The helpfile says:

QuoteLOADSOUND
Loads the wav file file$ (PCM-wav format only) to be used with the ID num#.

PLAYMUSIC
Plays a music file in the background. All music-formats with installed codecs are supported. (midi, wav, mp3...)

Try Playmusic, is that fast enough for soundeffects when the file is cashed?

Neurox

Hi Gernot,
is possible to have in new GLBasic version a command
similar to PLAY (QBasic style http://www.petesqbsite.com/sections/tutorials/tuts/sounds.htm) ?

Bye bye,
Neurox

Paolo Borzini | paolo@borzini.it
The WhiteFly Software | www.thewhitefly.it
Service on line for screen printers | www.4pellicole.it

Moru

It plays with PLAYMUSIC, just as he said. I don't see anyone saying that playsound would work?

Ian Price

Some of those things never made it into the current GLBasic; maybe next year eh? :P
I came. I saw. I played.