Oxygen Basic

Information => Open Forum => Topic started by: RobbeK on December 18, 2014, 02:32:17 PM

Title: The chain shot challenge
Post by: RobbeK on December 18, 2014, 02:32:17 PM
Hi,

Coding something for the kids of the kids --
I already wrote the interface ,   the question is can we develop something that beats the human.

Kind of puzzle game :
Clicking stones of a certain colour, removes all the connected of the same colour (left, right, up , down connected).
The game has to be finished with as less as possible stones.
Clicking a not-connected square does not work (that would be too easy).

So, C , C++ , Basic ...  etc ... hackers , if interested ..  can we set up a bot competition ?

attached, a program that explains it all  -- do some left mouse-clicks -- but does not play itself (thinking about how to do it).
Graphics are still simple, but easy to change into sprites with sound etc ...   (that's the easy thing)

Anyone interested ??


best Rob
(doing it in NewLISP for the moment,   scripting , works fast and easy )

as usual ...   use USE THIS TO START ....   to remove the evil Java task after exit
..  again gives the same grid ,     ... new    a new random one.

the slightly difficult part of this code was :


(define (remove-blocks x y matchb)
  (if (!= matchb (board x y)) true
    (begin (setf (board x y) leeg)
       (remove-blocks (+ 1 x) y matchb)
       (remove-blocks x (+ 1 y) matchb)
       (remove-blocks (- x 1) y matchb)
       (remove-blocks x (- y 1) matchb))))

Quadruple recursion  8) 

 

.
Title: Re: The chain shot challenge
Post by: JRS on December 18, 2014, 03:21:20 PM
I would give it a shot if you post the TinyScheme code for it. (functions and value output) I will add the container (IUP) and canvas (SDL_gfx) with the data you provide.

Thanks Rob!

Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 18, 2014, 08:54:35 PM
Hi Rob,

Thanks, I was always fascinated by this particular game, kids or no kids. :)

Exactly what do you mean by "something that beats the human"? This game is all about a human vs. random number generator. The better the generator, the fewer chances for the human to clear the entire window. You can find the optimum strategy algo for the bot but it wouldn't guarantee the epic win either.
Title: Re: The chain shot challenge
Post by: JRS on December 18, 2014, 09:36:28 PM
For those that want to play the game rather the write it, Klickety (SameGame) alternative.

Note: Installed from Ubuntu software center.



.
Title: Re: The chain shot challenge
Post by: RobbeK on December 19, 2014, 12:30:07 PM
Hi ,

@ John, wouldn't it be better I rewrite it in Basic ?  (this way I can try the SB)
  (ps , Scheme does not have arrays (which I used here) but of course it can be done with vectors)
@ Mike :
  yes, play a puzzle and then the code tries to do it better ( I don't think it can be calculated to the end/bottom like some other games (well , it can -- be it will take too long )  , but I have some patterns in mind -- it should be unbeatable ..
if you like the game , I compiled it now with the Austin Kyoto CL , and made it variadic  (but limited here to max 20x20 and max 7 colours - as a joke one colour is included too  ;D 

best Rob   


.
Title: Re: The chain shot challenge
Post by: JRS on December 19, 2014, 12:48:45 PM
Quote
John, wouldn't it be better I rewrite it in Basic ?  (this way I can try the SB)
  (ps , Scheme does not have arrays (which I used here) but of course it can be done with vectors)

Sorry, I misunderstood what you were after. I thought that this was a Lisp based challenge and not a general create a game effort.

The Script BASIC forum (and this one) has many examples of using the language and extension modules. Feel free to use any of those examples to bring you up to speed with SB.

I'm overwhelmed with BASM at the moment so I think I'm going to have to pass.

Title: Re: The chain shot challenge
Post by: Charles Pegge on December 20, 2014, 04:24:17 AM
Great idea for seeding a game system. I'll give it a go, Rob.

Recursive logic for block of 8 x 8 cells:

Code: [Select]
  function GameLogic(sys i,optional a) as sys
  ===========================================
  '
  sys j,m,x,y
  if not i then exit sub
  x=cell[i].x
  y=cell[i].y
  if not a then
    a=cell[i].a
    if not a then
      exit sub
  end if
  end if
  '
  macro GameLogicAct()
    if cell[j].a=a then
      cell[j].a=0
      cell[i].a=0
      GameLogic j,a 'RECURSE
      m=1
    end if
  end macro
  '
  if x>1 then
    j=i-1
    GameLogicAct() 'LEFT
  end if
  if x<8 then
    j=i+1
    GameLogicAct() 'RIGHT
  end if
  if y>1 then
    j=i-8
    GameLogicAct() 'ABOVE
  end if
  if y<8 then
    j=i+8
    GameLogicAct() 'BELOW
  end if
  return m
  end function





.
Title: Re: The chain shot challenge
Post by: RobbeK on December 20, 2014, 05:28:31 AM
Great Charles  :)

With a 10x10 grid and calculating it till the end , the number of "clusters" (those not empty and not single , those that can be removed) varies around 20 for full board.
At best we can expect something as 20! (probably more) posssibilities

that gives :

>
(lambda (n)
 (let ((acc 1))
  (for (i 1 n)
   (setq acc (* acc i))) acc))
 
> (fac 20)
2432902008176640000    ???

I already tried this algorithm (only one deep) :

from all possibilites take the one that produces the least single blocks (or most clusters) -- but of course it does not eleminate single blocks may be separated in a way they never will make contact with a "friend" -- so worthless to build any recursion/iteration on it ....
Thinking about a "brute force" method from a certain number of blocks (short processing time) and something Monte Carlo like.

best, Rob


Title: Re: The chain shot challenge
Post by: RobbeK on December 20, 2014, 05:41:20 AM
Hi John,

I was just curious to see such problems solved in languages as basic/C/Fortran/Pascal etc ...

best Rob
Title: Re: The chain shot challenge
Post by: RobbeK on December 20, 2014, 05:51:40 AM
Addendum for Charles,

Looking at your code , a trick (i use) is setting up a 10x10 grid (for your 8x8) where the borders are empty (zero) - in case of calculation (as there is no calculation on empty squares ) the algorithms   for exam. left right up down do not to be tested if on a border (pos 1 or 8  )   the neighbour is just an empty space    ( less calculations )

best Rob

(define (remove-blocks x y matchb)
  (if (!= matchb (board x y)) true
    (begin (setf (board x y) leeg)
       (remove-blocks (+ 1 x) y matchb)
       (remove-blocks x (+ 1 y) matchb)
       (remove-blocks (- x 1) y matchb)
       (remove-blocks x (- y 1) matchb))))       ;;   does not need any limit test --  full variadic !!!!  -- works on any grid of any size


ah yes, leeg means empty in my language (Flemish ; leer in German) , it means empty but that word is already in use by NewLISP , the true is just a void output, it has no meaning or use here
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 20, 2014, 09:54:27 AM
2432902008176640000    ???

Hehe Rob,

In fact, I was waiting for you to come to that conclusion yourself in relation to your projected bot strategy. I presume both you and Charles do see the basic difference between what it means to find out which squares/balls to remove in response to the user click and to predict where to actually click in order to be able to ultimately remove all the balls in the window?

That's essentially very close to trying to pre-calculate the best strategy for all possible positions of chessmen on the chess board for the ultimate chess player program. They say they've been calculating it for over two decades already on the world's most powerful mainframe clusters but they have done it only for some 10 or 11 moves following the initial e2-e4 so far.

There's an Oriental parable about Nasreddin Hodja, his ass, and the amir:

Once Nasreddin had a bet with the amir that he could teach his ass to speak human language if the amir would give him a purse of 1,000 gold pieces. Overwhelmed with grief, Hodja's wife cried "Why did you do that? You're going to have your head chopped off!" "Stop that awful noise, woman," said Nasreddin. "I bargained for a term of 20 years. So, before the time comes, either the ass will be dead, or the amir, or I." :)

Still wanting to create the ultimate chain shot bot algorithm, Rob? ;)
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 20, 2014, 10:39:44 AM
Not trying to compete with DeepBlue here :)

---

After recursively taking out the matching cells, the next task is compaction:

Vertical compaction:

Code: Text
  1.   sub compact()
  2.   ==============
  3.   sys i,j,k,w,x,y
  4.   for x=1 to 8
  5.     i=56+x
  6.     j=i
  7.     k=j-8
  8.     for y=8 to 2 step -1
  9.       if cell[j].a then
  10.         j-=8
  11.       elseif cell[k].a then
  12.         transfer cell[j],cell[k]
  13.         j-=8
  14.       end if
  15.       k-=8
  16.     next
  17.   next
  18.   end sub
  19.  

I wonder if horizontal compaction would be desirable too? Maybe restricted to removing empty columns.




.
Title: Re: The chain shot challenge
Post by: RobbeK on December 20, 2014, 11:23:04 AM
Hi Mike,

"Still wanting to create the ...  "  yep , or better, something that comes close.
Those 4x4 magic squares give 20922789888000 possibilites, it's a question of filtering/elemination --  iirc on your PC it took around 30 sec completely solving it .  But in this case it's much more difficult to filter out suspect positions.

In the mean time the best chess engines are over 3000 ELO -  Carlsen (the World Champ) has 2870 (?) are so - the highest ranking ever (more than Kasparov ever had).
But there's a kind of sadness on this computer chess -- unless it's in their opening book , no one of those engines will ever decide to play openings as the Kings gambit , the Latvian gambit , the Philidor defence etc ... the first two risky with an uncertain outcome , the latter not very active -- a human may have certain reasons to play such - Fischer, Spaski, Bronstein sometimes played the King's gambit, not for its strength but for the psychology behind it.
 
For endgames computers these days use Nalimov table bases (which produce the exact results) -- but have a look  --   for only 6 pieces on the board :
https://chessprogramming.wikispaces.com/Nalimov+Tablebases

As for these chess engines, there were some scandals previous years :  Rybka being based on the french chess engine "fruit" - the world champion computer chess -> stripped of all its official titles now ....   etc       

very interesting to read --    :   (Russian chess engines, not allowed to play in any competition ) ...

https://ivanhoe.wikispaces.com/

best Rob
Title: Re: The chain shot challenge
Post by: RobbeK on December 20, 2014, 11:28:44 AM
Hi Charles,

I remove the empty columns  -- shifting to the left so they make contact again.
My code plays the game now , but not perfect -- but already sometimes it ends with an empty board  (2 from 10 tested).
(not yet good enough)


best Rob

(ok , i added the AI thing - use the button with the |     °(-_-)°       | , in the second frame.  (some tasks are uncoupled now , and the terminal window gives some information in manual mode (needed for statistics)   )

it's far from good, but a start  (and the interface removed from some tasks for the moment)
-- forgot to mention this one and previous runs in interpreted mode (nothing is compiled for the moment).


.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 20, 2014, 01:48:03 PM
Hi Rob,

A strategic choice of compaction enhances the game:

left-click:   chainshot with vertical compaction
right-click: chainshot with horizontal compaction



16 x 16 cells

.
Title: Re: The chain shot challenge
Post by: JRS on December 20, 2014, 02:13:35 PM
Quote
I was just curious to see such problems solved in languages as basic/C/Fortran/Pascal etc ...

You might get more mileage if you also create a http://rosettacode.org/ task (Charles is active there.) to expand your reach. I don't think a project like this exists there at the moment.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 21, 2014, 02:52:07 AM

Here is my o2 16 x 16 chain shot, with red,blue, gold and silver balls.

It is not intended to be a game of frustration, and is best played intuitively to get the lowest clicks and the least spheres left over.  I managed, by sheer luck, and a little strategy, to eliminate all 256 spheres in 66 clicks! :)

included source codes and binary:


.
Title: Re: The chain shot challenge
Post by: RobbeK on December 21, 2014, 10:57:47 AM
Hi Charles,  :)

Maybe a version to play with 3 (4 ?)  -- to the left , to the right (up ? )
A 3D model is also easy to make (only 2 directions extra ) - but the interface has to be smart to look through the cube/pyramid.

good show,

Rob
Title: Re: The chain shot challenge
Post by: RobbeK on December 21, 2014, 11:02:07 AM
ChainShot XMas style now  ::)

It can be used to play - the same board can be reloaded (in case others want to try) , and Lisp also plays the game
-- I found a very deep profound algorithm   (that plays worse than one iteration deep  ;D   

Maybe updated if I find something better ...


best Rob

.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 21, 2014, 12:44:04 PM
Yes, the 3-dimensional game is fun too.  :)

I'm using OpenGl's pick system - any visible named object can be identified. So interior balls can be picked if you can see them through the gaps. The whole block rotates slowly about the vertical axis.




.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 21, 2014, 05:31:37 PM
Chain Shot 8 x 8 x 8

Left-click  for vertical compaction
Right-click for compaction in the xz plane

Best scores so far:

67 clicks 1 ball remaining
43 clicks 3 balls remaining


Binary and source code included:

.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 21, 2014, 07:31:40 PM
Charles,

That last one is ... gorgeous! :D

Thanks a lot!

.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 21, 2014, 07:49:58 PM
Rob,

Your Xmas one is very, very cool as well! You've been restricted just a little bit by this multi-language mess that distracts you from the presentation side of this otherwise very entertaining challenge. Thank you for your submission too! :)
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 22, 2014, 04:25:25 AM
Hi Charles,

That JPEG picture above looks like your 3D scene has a pronounced DOF (depth of field) blur effect. If that's true then why don't I see the same in the game proper?
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 22, 2014, 05:19:10 AM
Hi Mike,

Congratulations on your excellent score of 43 :)

The image is a 50% quality jpeg snapshot (Ctrl-P) - naturally blurry when taken from a small window.

I think focal blur would be very expensive - even with graphics hardware support.
Title: Re: The chain shot challenge
Post by: RobbeK on December 22, 2014, 06:56:08 AM
Thanks Mike,

Looking great Charles (slow on my pc, but then everything is slow there).
What's that Chaos lib ?
Starting something similar now -- the problem is the coordinate picking (but asked Petr in the mean time)  -- think i'm going to work with wireframed and solid objects at the same time....

best Rob
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 22, 2014, 08:34:10 AM
@Charles:
Quote
I think focal blur would be very expensive - even with graphics hardware support.
IIRC it needs 3 or 4 render passes per frame. So, if the scene isn't overpopulated (and that one certainly isn't), the FPS rate will still be very high even in the full-screen mode.


@Rob:
Quote
slow on my pc, but then everything is slow there
That's most probably because your PC is using Windows original software OpenGL renderer. If your computer isn't an old-fashioned laptop, then perhaps you could find and buy yourself a cheap second-hand nVidia graphics card for some 10 to 15 euros that would suit perfectly your existing low-frequency CPU. nVidia still offers quite satisfactory hardware-accelerated OpenGL drivers for its old lower-end products under Windows 7.
Title: Re: The chain shot challenge
Post by: RobbeK on December 22, 2014, 10:12:12 AM
Hi Mike,

It's on old Intel Card (64 Mb iirc) - no drivers for Win7 , but I installed a hack from the XP drivers.
My wife has an Hp Pavilion -- mainly for Twitter and facebook ;D

best Rob ( c new post)
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 22, 2014, 11:16:06 AM
Rob,

That Intel is certainly a no-go. I'd be surprised if it would launch an OpenGL application at all.

You can keep an eye on these pages at eBay (http://www.ebay.com/sch/Graphics-Video-Cards-/27386/i.html) and find yourself a low-cost add-on nVidia (better) or ATT (worse) card istallable in an expansion slot of your motherboard. Naturally you will have to first find out exactly what kind of extension slots are available on your motherboard.

If you can post here a clear picture of your PC innards here so that its motherboard slots are seen, then perhaps I will be able to advise you on what particular nVidia card makes you should be looking for.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 22, 2014, 12:34:04 PM
Hi Rob,

Picking involves interleaving a special render, with a very small viewport at the mouse position, then collecting all the labelled (glLoadName) objects whose surfaces appear within this view. The object with the nearest (lowest depth)  surface, is the one chosen.

All this stuff is deployed in inc/openglsceneframe.inc. If I had to do it again from scratch, I would struggle like a complete novice :). But you are welcome to use it in any shape or form. Pick is the integrating keyword to look for.




inc/chaos.inc contains pseudorandom, chaotic, interpolation and noise frequency functions.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 22, 2014, 05:28:59 PM
Charles,

There is also an alternative (unofficial) picking technique that might work considerably faster than the official glLoadName() method.

The official method implies looping through all the objects in the scene to find out the one whose coordinates are the closest to the viewer's cursor in the given state of the frame's z-buffer. The looping is relatively slow, and especially so for heavily populated scenes with a few hundred thousand polies and more in view.

The unofficial method also presupposes an extra render invisible to the viewer because it is executed without the usual SwapBuffers() call (the hungriest FPS eater) at the end of frame render. The scene is rendered untextured and unlit, which makes the render yet faster. Instead, the objects are rendered simply in shades of red, green, or blue where each shade corresponds directly to the respective object's index in the array of scene objects.

For simplicity, let the number of objects in the scene be not more than 256. Then object 0 could be rendered in integer color RGB(0,0,0), object 1, in color RGB(0,0,1) (blue), object 2, in color RGB(0,0,2) (lighter blue), etc. etc. etc. All we have to do now is just poll the pixel color under the cursor's hotspot with glReadPixels() during this invisible render -- et voila the desired index of the object the cursor is pointing to, without unnecessary looping! 8)

Below please find a screenshot of XANEngine's pick render forced on-screen for demonstration purposes. It uses shades of blue but in a 32-bit float color space because there may be up to 1K objects in the current field of view with some 200K+ visible (unculled) polies, some of which may also be alpha transparent. glLoadName() would've been unbearably slow in this environment.

The second screenshot is a practical use case of this unofficial color-coded method in the XANEngine Editor where it powers, amongst other things, the tooltip used to optionally display some data about the object that the cursor is currently pointing at within the famous 3D model of Sponza Palace in Aurel's beloved Croatia. :)

.
Title: Re: The chain shot challenge
Post by: JRS on December 22, 2014, 10:41:49 PM
Amazing detail and realism with those cloths.

Great stuff, keep it coming!
 
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 23, 2014, 10:37:19 AM
Hi Mike,

We can reduce the burden of the pick-rendering quite a lot. - no shading or texturing - no buffer swap. Also replacing objects with bounding boxes or simple polyhedra. Furthermore, Pick is usually activated only on a mouse-click.

For my Opengl EditBox, I use 3 converging pick-passes. The passes converge with minimal geometry thus:

1: boxes to represent each text window.
2: boxes to represent each visible line within the selected text window.
3: boxes representing the left half and right-half of each character in the selected line.

This information is used to place the caret to the left or to the right of the identified character.



In this example, spheres are face-stepped at 45 degres instead of 6 degrees, during the pick pass:

Code: OxygenBasic
  1.  '#compact
  2.  includepath "$\inc\"
  3.   % filename "t.exe"
  4.  'include    "RTL32.inc"
  5.  % Title    "Chainshot3D:    (left-click & right-click)"
  6.   % Animated
  7.   % ScaleUp
  8.  '% PlaceCentral
  9. '% AnchorCentral
  10.  includepath "$\inc\"
  11.   include "ConsoleG.inc"
  12.   include "chaos.inc"
  13.   %side 8
  14.  
  15.   indexbase 1
  16.  
  17.   type celltype
  18.   long  a,n
  19.   long  x,y,z
  20.   float px,py,pz
  21.   float tx,ty,tz
  22.   end type
  23.  
  24.   sys sseed=GetTickCount
  25.   celltype cell[side*side*side]
  26.   sys      vsphere
  27.  
  28.   sub initcells()
  29.   ===============  
  30.   sys r,x,y
  31.   'seed=0x2468abcd
  32.  seed=sseed
  33.   celltype *c
  34.   @c=@cell
  35.   for z=1 to side
  36.     for y=1 to side
  37.       for x= 1 to side
  38.         r=irnd(1,4)
  39.         c.x=x
  40.         c.y=y
  41.         c.z=z
  42.         c.a=r
  43.         c.n=z*64+y*side+x-side
  44.         c.px= rnd()*32
  45.         c.py= rnd()*32
  46.         c.pz=-arnd()*100+10
  47.         @c+=sizeof cell
  48.       next
  49.     next
  50.   next
  51.   end sub
  52.  
  53.   initcells()
  54.  
  55.   function GameLogic(sys i,optional a) as sys
  56.   ===========================================
  57.   '
  58.  if not i then exit sub
  59.   cell[i].a=0
  60.   return 1
  61.   end function
  62.  
  63.  
  64.   sub render(celltype*c)
  65.   ======================
  66.   sys a
  67.   a=c.a
  68.   if a then
  69.     glpushmatrix
  70.     move c.px+c.tx, c.py+c.ty, c.pz+c.tz
  71.     if pick then
  72.       Picklabel c.n
  73.       go vsphere 'crude bounding sphere
  74.    else
  75.       select a
  76.       case 1 : RedShinyMaterial.act
  77.       case 2 : BlueShinyMaterial.act
  78.       case 3 : WhiteShinyMaterial.act
  79.       case 4 : GoldMaterial.act
  80.       end select
  81.       'REDUCE TRANSITION DISTANCE
  82.      'if c.tx then c.tx*=.75
  83.      'if c.ty then c.ty*=.75
  84.      'if c.tz then c.tz*=.75
  85.      go sphere
  86.     end if
  87.     glpopmatrix
  88.    end if
  89.   end sub
  90.  
  91.   sub main()
  92.   ==========
  93.   if not vsphere then
  94.     'CRUDE SPHERE
  95.    vsphere   = CompileList : Spheric 1,1,45 : glEndList
  96.   end if
  97.   '
  98.  static float az
  99.   static sys   pki,count
  100.   glClearColor 0,0.10,0,0
  101.   Fog          0,0.10,0,0.05 'FOR SENSE OF DISTANCE
  102.  '
  103.  pushstate
  104.   shading 'opposite of 'flat'
  105.  '
  106.  'DISPLAY TOP SECTION
  107.  pushstate
  108.     move 2
  109.     color .90,.90,.90,.99
  110.     scale 2 : print3d "Popped  id: " pki " count: " count
  111.   popstate
  112.   '
  113.  move 16,-16,-4
  114.   rotatez az : az+=.03125
  115.   scale 2
  116.   '
  117.  'DISPLAY
  118.  sys a,i,x,y
  119.   for z=1 to side
  120.     for y=1 to side
  121.       for x=1 to side
  122.         i++ : render cell[i]
  123.         if picked=cell[i].n then pki=i
  124.       next
  125.     next
  126.   next
  127.   picklabel 0
  128.   '
  129.  popstate 'whole
  130.  '
  131.  if picked then
  132.     GameLogic(pki)
  133.     count++
  134.     picked=0
  135.   end if
  136.   '
  137.  end sub
  138.  
  139.   EndScript
  140.  

Images showing 45 degree spheres and 6 degree spheres:

.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 23, 2014, 01:11:10 PM
Quote from: Charles
Also replacing objects with bounding boxes or simple polyhedra.

I'm afraid this won't really work, Charles, except in very rare cases of extremely primitive shapes like in your example. It will certainly not work for the use case depicted in the attached screenshot where the task is to spot the red chair (ID 15) lying on the floor in the library, through the delicate suspension of the roof-mounted chandelier (ID 113).

Quote from: Charles
Code: OxygenBasic
  1.   for z=1 to side
  2.     for y=1 to side
  3.       for x=1 to side
  4.         i++ : render cell[i]
  5.         if picked=cell[i].n then pki=i
  6.       next
  7.     next
  8.   next
  9.  

Now how am I supposed to do all this picking in case I prefer to have all the balls in the scene precompiled in a list of draw lists in order to further improve the overall render speed rather than call each ball's draw list separately in a triply nested loop? Keep this loop in the code just for the sole purpose of if picked=cell(i).n then pki=i, really?

.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 23, 2014, 02:21:17 PM

Yes Mike, I can see the advantage of using a color signature for picking, in those scenes. But the standard pick system works well in more abstract modelling, which might involve picking objects or their components, potentially thousands of similar items on the screen.

PS: an array of objects is most efficiently named using its index. However, in this case  I have chosen to use the object's n(ame) attribute - nothing to worry about in the broader scheme of things :)
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 23, 2014, 03:01:57 PM
Quote from: Charles
potentially thousands of similar items on the screen

Coloring the objects in a pick render with glColor3i(red , green, blue) in the following simple integer sequence:
will allow you to color code 16M distinct objects maximum.

Then, following the pseudo-code below:

Code: OxygenBasic
  1. Type PIXCOLOR
  2.         BYTE r
  3.         BYTE g
  4.         BYTE b
  5.         =
  6.         int i
  7. End Type
  8.  
  9. PIXCOLOR pixel
  10.  
  11. glReadPixels(x, y, 1, 1, GL_RGB, GL_UNSIGNED_BYTE, @pixel) // x, y are cursor coords in OpenGL coord system
  12.  
  13. int index = pixel.i

will yield the required object's index in just one function call instead of triply nested loop.



If I were you (which of course I ain't :) ), I'd have Oxygen re-armed with this tool a.s.a.p.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 23, 2014, 03:35:02 PM
Thanks Mike. I will think about it. Though I am am sceptical about how efficient this is when compared with colorless/non-pixelised passes in glrender GL_SELECT mode, and a tiny 2x2 viewport. Usually there are very few hits to resolve depthwise.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 23, 2014, 03:56:10 PM
There's nothing that prevents you from restricting your viewport to 2x2 px (or even 1x1 px, for that matter) in the color coded pick render method either, is there? And a single hardware accelerated glReadPixels() call for just one pixel in the frame buffer would hardly be slower than a call to GDI's GetPixelV(). Just think how much obsolete vendor code may be hidden behind the entire glRenderMode(GL_SELECT) method.


[EDIT] And oh, glColor() is usable in between glBegin() and glEnd(), i.e. freely compilable in a draw list. Also, please read Answer 15 on this StackOverflow page (http://stackoverflow.com/questions/4040616/opengl-gl-select-or-manual-collision-detection). Perhaps it will help alleviate your steady skepticism towards my methods. :) I'm not pressing you in any way, though.


Have a nice night, Charles!
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 24, 2014, 04:56:36 PM
Hi Mike,

Well, the article convinced me, so I dunnit! Your persistence has paid off :) I see that GL_SELECT is doomed to eventual obsolescence, along with numerous other OpenGl features traditionally used by CADs.

% ColorCodedPick will be used to switch-in the new picking system. The change is not quite so convenient to deploy, since the backdrop must be set to black during the pick phase, and also, no coloring of objects, between a pick-label and their  vertex specs.


Merry Chrismas all!
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 25, 2014, 11:52:32 AM
Nice to hear that, Charles, and sorry for a delayed response but I've got an urgent business in the last 24 hours and I couldn't come here earlier.


Merry Christmas and a happy and prosperous New Year 2015 to you, Charles, and all the forum members and OxygenBasic fans who drop by from time to time!

(http://www.fbsl.net/phpbb2/images/smilies/icon_ml_noel.gif)
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 27, 2014, 12:21:47 PM
:)

.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 28, 2014, 03:08:00 AM
With horizontal profiling:


.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 28, 2014, 04:21:50 AM
Cheers! :D
Title: Re: The chain shot challenge
Post by: RobbeK on December 30, 2014, 05:19:34 AM
Thanks for all this info  ;)

What'd you think about the Chain Shot Cylinder or the CS Sphere ?    8)


best , Rob
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 30, 2014, 07:04:46 AM
Hi Rib,

A cylinder seems as feasible to play as a cube but a sphere would be very difficult to beat. There will be at least one splice of balls whose rim will have nothing both on top and beneath it. These balls will have only one chance to be blasted, which is with the right mouse click on the z axis.

But I like the idea immensely. Perhaps Charles could add those options to his game? :D
Title: Re: The chain shot challenge
Post by: RobbeK on December 30, 2014, 08:28:46 AM
Hi Mike,

Yes, a sphere (curved in all (human) dimensions) can not be unfolded -- but I was thinking to use hexagons then  (somewhat the way a leather football is made ) & only "playing" on the surface of course there are 6 neighbours / cell
(the incredible way would be, instead of moving cells towards one of the poles or the equator , making a collapese when enough cells are gone !!!   goint to a lower level  --    what'd you think ???  )
The cylinder is challenging too - Lisp can not set up cyclic data structures  ::)   -- really challenging !  I mean like for a square, rect .. I define the border inside the array (like zero's or whatever ) , this has the advantage any recursive algorithm can run on any size of such figure whitout the code has to know the width or height (this is very Scheme-ish )  ,   but on a cylinder (?)  -- I have to think about this -- it's very interesting !!   :)

best ,  Rob
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on December 30, 2014, 09:46:56 AM
(the incredible way would be, instead of moving cells towards one of the poles of the equator , making a collapese when enough cells are gone !!!   goint to a lower level  --    what'd you think ???  )

Hehe, that would essentially introduce yet another shape into the game; this time, a cone! :D
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 31, 2014, 12:05:20 AM

Another possibility is to go into the fourth dimension, having two or more cubes, representing adjacent volumes :)
Title: Re: The chain shot challenge
Post by: RobbeK on December 31, 2014, 01:08:54 AM
 into the fourth dimension,  8)  cool,

how should we call the two new directions       --   beam up and beam down  (but up and down may be confusing ) ... 
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 31, 2014, 09:36:29 AM

Chain Shot 4D

A simple shallow (2 volume) implementation.

I have minimised the sphere polygons to lighten the GPU load


.
Title: Re: The chain shot challenge
Post by: Charles Pegge on December 31, 2014, 04:31:26 PM
Happy New Year !


(http://www.oxygenbasic.org/o2pics/opengl/BendyVessels.jpg)
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on January 01, 2015, 02:06:44 AM
Thanks Charles,

So far I've been able to play the 4D version down to 1 ball in 30 clicks twice but never managed to kill them all. It seems like playing 4D is easier than 3D.
Title: Re: The chain shot challenge
Post by: erosolmi on January 01, 2015, 02:41:30 AM
grrr 2 spheres left in 23 clicks
 ;D
Title: Re: The chain shot challenge
Post by: Charles Pegge on January 01, 2015, 03:54:54 AM
The 4D version has 1024 cells, and potentially 8 neighbours instead of 6. It might benefit from some extra colors to make it more challenging :)

Hexagonal stacking in 3D would have 12 neighbours!
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on January 01, 2015, 07:22:29 AM
On my PC, everything runs pretty smoothly with Spheric 1,1,5 and ay=.25. CPU load is less than 5%. Still no epic win though. :)


[UPD] Unremming %ColorCodedPick crashes the app!
Title: Re: The chain shot challenge
Post by: Charles Pegge on January 02, 2015, 12:02:27 PM
Hi Mike,

I'm doing a little more work on ColorCodedPick to get the cleanest semantics, but the crash was most likely caused by indexing the array of cells on a non-flat color. The index must be checked against an upper limit. Unlike conventional picking, color-coded picking cannot be entirely hidden.



There is an alternative game objective: To leave the maximum stable number of spheres, and the highest columns. :)



.
Title: Re: The chain shot challenge
Post by: Mike Lobanovsky on January 02, 2015, 04:02:15 PM
There is an alternative game objective

Hi Charles,

Hehe, looks like a giveaway alternative for losers. :)