Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - acristo

#1
Dear all, after almost two years of absence I'm officially back.
It is so good to see that most of you are still here and doing a great job

Since last week I returned to work on my main project which is a space strategy and has about 70% of the work done, so now it is just a matter of time until I can finally release a alpha version ...

will post some things about my project on my blog later...


I'm happy to be back. .!!


ps. what happened to the gallery of player's screenshoots ?
#2
GLBasic - en / HSL and HSV
2008-Aug-15
there is any way of using HSL or HSV color modes with glbasic ?
#3
GLBasic - en / ATAN
2008-Aug-01
I'd like to know what lib the atan function calls... if it is the math.atan2 or math.atan itselft ?
#4
Hello there,

I'm trying to use the netwebget cmd to retrieve some data from a server, actually it is a game server that provide read only data through http request.

problem look like is a HTTP/1.0 at the end of cmd submited by netwebget as you can see the msg bellow...

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>400 Bad Request</TITLE>
</HEAD><BODY>
<H1>Bad Request</H1>
Your browser sent a request that this server could not understand.<P>
Invalid URI in request GET servlet/API?game=1&amp;player=xxxx&amp;apikey=c99d9aaf1999e7bf43 HTTP/1.0<P>
</BODY></HTML>

is netwebget suitable for this as well ? or do i need to find another way to do these http requests...

Thanks
Alessandro


#5
Has anyone here been through the Trademark Registration Process ?
Any suggestion ?
#6
Is there anyway of changing the hue/sat of picture on GLBasic ?
Technical information bellow.
http://en.wikipedia.org/wiki/Hue
#7
Is anyone successfully using the network features of GLB ??
I was able to built a simple client server with few examples from the forums... but...

It worked the way it should only that the server hangs after I connect a client and return the focus to the server window... Even with one single client connected to the server window it hangs...this test was done in a single machine...so lookback was used.... Anyone has another tests to share with us? I saw on the german forum that the network commands were kinda broken somethime ago... not sure how many efford was put on fixing it...

Best Regards
Alessandro
#8
GLBasic - en / Network help
2008-May-23
Can anyone help with this piece of code ?

Why it is not allocating any resource ?

Code (glbasic) Select
GLOBAL timer, ntimer
GLOBAL elapsed = 10
GLOBAL a$

AUTOPAUSE FALSE
GLOBAL scy=600

ok=NETHOSTGAME(0,0, "127.0.0.1","")


IF ok=TRUE
a$= "Network on. Last check at"
myplayer$ = NETCREATEPLAYER$("Admin")
ELSE
a$= "Network off. Last check at"
ok=NETHOSTGAME(0,0, "","")
ENDIF

ips$ = NETGETIP$()
num = SPLITSTR(ips$, ip$[], "|")

WHILE TRUE

FOR i=0 TO num-1
    PRINT "IP: "+ ip$[i], 0, scy-((i+1)*20)
NEXT

timer = INTEGER((GETTIMERALL())/1000)
PRINT "Elapsed time " + timer,0,20

IF elapsed - timer = 0
elapsed =(INTEGER((GETTIMERALL())/1000))+10
TestNet()
ELSE
PRINT a$ +" "+ ntimer,0,0
ENDIF
PRINT "Network"+ok,0,40
PRINT "Admin= "+myplayer$,0,60

  SHOWSCREEN

WEND

Code (glbasic) Select

FUNCTION TestNet:

ntimer=INTEGER((GETTIMERALL())/1000)

IF ok=TRUE
a$="Network on. Last check at"
ELSE
a$="Network off. Last check at"
ENDIF

ENDFUNCTION
#9
I wish there were more screenshoots there.. Also comments are welcome.
Ok. you don't know where is it ??
Click here http://www.glbasic.com/forum/index.php?action=gallery
#10
Just bought the GLBasic SDK premium  :good:  version and I'm very happy   :booze: !!! :D just wanted to share it if you guys...   :whistle:
#11
GLBasic - en / My First post
2008-May-05
Hello guys, as the subject says it is my first post so far here. I've been around for a month or so, reading posts, studying the tutorials ( big thanks to the contributors), and learning how GLBASIC works.

Since I begun with GLBASIC I did a BIG improvement on game development, starting from zero to a small playble game, although very basic at moment, its growing to a project that I wanted to start since long time ago.

I have one question for the moment. How does you guys do when you need to work with databases ? or you don't? 
I already used TYPE, write and load of .ini files... but it will be not enough, what I needed was a kind of wrapper for odbc or any specific database.

Can anyone help me ?

Big thx

Ale