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

Messages - Neurox

#1
Quote from: Kitty Hello on 2013-Sep-10
Am I paranoid? 

No! You're living in XXI century :)

Paolo
#2
Quote from: mentalthink on 2013-Sep-06
I'm not sure if Pebble whit the Samsung watches will sell to much clocks... I think Samsung will do some strategy market for they are the first whit this product...

At July Pebble Technology has sold over 85.000 Pebble Watch
For Samsun Galaxy Gear will be released worldwide by October 2013

Quote
I'm not sure but I think apple will do something similar, perhaps this product are the new mode like tablets and mobile devices...  ;/

Yes Apple announced from July 2013 and have registered 79 patents. Will be very similar to Pebble and other smart watches.

Paolo
#3
Quote from: Kitty Hello on 2013-Jun-17
Anyone with a pebble, too?
We should also make this a cross platform lib so we can access other wathes as well.

Hi Gernot,
my Pebble it's arrived today  :good:


I'm ready to make a betatester  :)

Paolo
#4
Happy Birthday GLBasic!!!
Thank you Gernot for GLBasic.  :booze:

Paolo
#5
Quote from: fasasoftware on 2013-Aug-30
I have tryed to zip on pc and unzip the file but the problem still remain.....The app start and then quit unexpectly

Have you set the parameters for read / write?
Have you seen the activities logo with Console.app ?
#6
No with Safari Version 6.0.5 (8536.30.1) on iMac don't works :-(
#7
Done!
#8
Quote from: Kitty Hello on 2013-Mar-24
Could you try the attached file? If it was working, I could link this from my PC again

After running in terminal, the program give me this message "illegal instruction: 4"

Paolo
#9
Quote from: Kitty Hello on 2012-Dec-29
Yes. Just takes some time. Sorry.

Hi Gernot,
any news?

Paolo
#10
Off Topic / Re: Coding humor
2013-Mar-14
For me the must is :

#11
I've problem with scroll image on iPhone   :rant:
On windows the program run very well.
I'm crazy out, If I touch the image without draging, image not scrolling but change position.

The image "mappa2.png" is here http://www.borzini.it/mappa2.png

Code (glbasic) Select

// --------------------------------- //
// Project: TestScroll
// Start: Friday, May 18, 2012
// IDE Version: 10.283

TYPE TIPOMAPPA
   mmx
   mmy
   mmaxx
   mmaxy
ENDTYPE

SETCURRENTDIR("Media") // go to media files

GLOBAL Mappa AS TIPOMAPPA
GLOBAL GNoldx, GNoffx
GLOBAL GNoldy, GNoffy
GLOBAL GAmappa%[],GAmappa2%[]
GLOBAL mx,my,b1,b2
LOCAL LBciclo


DIM GAmappa[0]
DIM GAmappa2[320*480]

LBciclo = TRUE

SYSTEMPOINTER TRUE

CaricaMappa("mappa2.png",1024,1024)
AggiornaMappa(100,100,TRUE)

LOCAL LNi

WHILE LBciclo
   DisegnaMappa()
   SHOWSCREEN
   SETACTIVEMOUSE 0
      GNoldy = my
  GNoldx = mx
   MOUSESTATE mx,my,b1,b2
   IF b1 = TRUE
      ControllaOffset(mx,my)
      GNoldy = my
  GNoldx = mx
      AggiornaMappa(GNoffx,GNoffy)
   ELSE
      GNoldy = my
  GNoldx = mx
  GNoffx = 0
  GNoffy = 0
   ENDIF
WEND

FUNCTION ControllaOffset: FNx, FNy
IF FNx > GNoldx
GNoffx = FNx - GNoldx
ELSE
GNoffx = -1*(GNoldx - FNx)
ENDIF

IF FNy > GNoldy
GNoffy = FNy - GNoldy
ELSE
GNoffy = -1*(GNoldy - FNy)
ENDIF
ENDFUNCTION

FUNCTION DisegnaMappa:
   DRAWSPRITE 100,0,0
   PRINT "X:"+mx+" d:"+GNoldx+" f:"+GNoffx,0,0
   PRINT "Y:"+my+" d:"+GNoldy+" f:"+GNoffy,160,0
   PRINT "MappaX:"+ Mappa.mmx +" MappaY:"+ Mappa.mmy ,0,20   
ENDFUNCTION

FUNCTION AggiornaMappa: FNx,FNy,FNforce = FALSE
LOCAL LNi,LNii,LNx,LNy,LNoffx,LNoffy
LOCAL LNspr%,LNw,LNh
IF ABS(FNx) < 2 AND ABS(FNy) < 2 AND FNforce = FALSE
ELSE
   IF FNx > 0
      INC Mappa.mmx, FNx
      IF Mappa.mmx > 1023 THEN Mappa.mmx = 1023
   ELSE
      IF FNx < 0
         DEC Mappa.mmx, ABS(FNx)
         IF Mappa.mmx < 0 THEN Mappa.mmx = 0
      ENDIF
   ENDIF

   IF FNy > 0
      INC Mappa.mmy, FNy
      IF Mappa.mmy > 1023 THEN Mappa.mmy = 1023
   ELSE
      IF FNy < 0
         DEC Mappa.mmy, ABS(FNy)
         IF Mappa.mmy < 0 THEN Mappa.mmy = 0
      ENDIF
   ENDIF

   IF Mappa.mmx > 703 THEN Mappa.mmx = 703 //1023 - 320
   IF Mappa.mmy > 543 THEN Mappa.mmy = 543 //1023 - 480
   IF Mappa.mmx < 0 THEN Mappa.mmx = 0
   IF Mappa.mmy < 0 THEN Mappa.mmy = 0


   //
   LNoffx = Mappa.mmx
   LNoffy = Mappa.mmy

   LNi = 0
   FOR LNy = LNoffy TO (LNoffy + 479)
      FOR LNx = LNoffx TO (LNoffx + 319)
         GAmappa2[LNi] = GAmappa[LNx+LNy*1024] //copio la parte della mappa
         INC LNi,1
      NEXT
   NEXT

   
   LNspr=100; LNw=320; LNh = 480
   IF MEM2SPRITE(GAmappa2[],LNspr,LNw,LNh) = TRUE
   ELSE
      DEBUG "errore aggiorna mappa"
   ENDIF
ENDIF

ENDFUNCTION

FUNCTION CaricaMappa: FSmappa$,FNx%,FNy%
   IF LOADSPRITEMEM(FSmappa$,FNx,FNy,GAmappa[]) = TRUE
      Mappa.mmx = 0
      Mappa.mmy = 0
      Mappa.mmaxx = FNx
      Mappa.mmaxy = FNy
   ELSE
      DEBUG "errore carica mappa"
      //Errore
   ENDIF
ENDFUNCTION
#12
Only text. I would print/save an HTML file.
#13
I've attempted but App into iOS is sandboxed and Safari don't open the file in "Document" or "tmp" directory  :(
#14
Yes...Sometimes they come back,
In my App I would include :
AirPrint support
iCloud support

I've tried many times to include AirPrint but nothing to do  :giveup:

any ideas ?
  :nw:
#15
I've started to make a game for the completion today.
It's a simple 3d Maze.

Paolo