Edit light source location


I had a new feature to edit light source for mine sweeper app. On 2020 April 26th, I started to develop to have a procedure to move light source location.

My first plan is followings.

  1. Select light source editing menu item.
  2. Display light source icon on game board.
  3. You can tap game board to move light source.
  4. Light source and its icon move to the place you tapped.
  5. Update scene with moved light source.

The app is rendered with webgl which displays 3d image. Internal all objects in game are 3 dimension information. I had to write procedure to calculate 3d coordinate from 2d coordinate. Because the display is 2d coordinate system. You get only a x-y coordinate from system. I need to get z coordinate which are related x-y coordinate from system. In computer programs, we call “z-depth” or “depth” for a x-y coordinate. Most of 3d graphics libraries are keeping z-depth when render 3d objects into display. To get z-depth, you just read a z-depth from an accumulated z-depth information. I read technical documents for the way to get z-depth. In webgl(ver 1.0), I did not get z-depth directly. I could get color value related x-y coordinate in Webgl(ver 1.0). I read some articles further. I could read depth as color value. The way to read depth is following.

  1. prepare offscreen buffer which is never show user.
  2. prepare shader program to convert depth value to color value and write the value into offscreen buffer.
  3. Render 3d object into offscreen buffer.
  4. Read a color value from offscreen buffer.
  5. Convert the color value to depth

In webgl(ver 1.0), You can read color value as 16 bits value. The each components (rgba) are 4 bits. In shader language specification the depth is represented 24 or more bits floating value. It would loose information about depth. I tried to read depth value from offscreen buffer. Some values I got, are greater than 1.0. It was incorrect value. Because depth must be in range from 0.0 to 1.0. I checked my code about 4 hours. But I had no bugs to generate 1.0 over z-depth. I write test code to write 0.5 value into offscreen buffer. I got values in range greater than 0.4 and less than 0.5. I got also some values in range greater than 0.5 and less than 0.6. but I did not get exactly 0.5 value. I calculate average of values. It was 0.5. I thought the color could not represent exact 0.5 value for lower bits than internal depth bits. I checked shader program to covert depth to color. I got the bug to store value with 8 bits floating value. Each components could have 4 bits. If the value grater than 6/8, the component would 1.0. It was the reason why I get the depth greater than 1.0. I fixed the bug. I got depth less than 1.0. It seems correct. Then I applied inverse matrix to the depth, I had a light source z coordinate. I noticed the original z coordinate from rendered 2d image is less than light source coordinate I put. The difference is about 0.3. I thought that the difference came from 16 bit floating value. This difference is not allowable for me. I gave up to read depth from offscreen buffer.

I stepped up second plan. I wrote code to read depth with projection matrix and invert projection matrix. It was to project 3d rectangle which is restricted bound you can move the light source. Each projected coordinate has z value. The rectangle was composed by two triangles. You can get z-depth according to followings.

  1. find a triangle composing rectangle which contains x-y coordinate.
  2. calculate interpolation ratio the coordinate in triangle.
  3. calculate z-depth by interpolation of each triangle z coordinates.

I needed the procedure to create invert matrix. The webgl use 4×4 matrix. It is not hard to write algorithm to resolve 4 x 4 invert matrix. But I would like write the algorithm to resolve n x n invert matrix. I decided to use cofactor matrix to resolve invert matrix. It is not so first way to resolve invert matrix, if matrix is large. I thought you would not mind the calculation time, if the matrix is small as like 4 x 4. It is natural for me to choose kotlin for this algorithm. But I choose Rust language. The rust language can generate web assembly. We expect to process the algorithm with web assembly faster than javascript. I had an another reason to use Rust language, but I will describe another article.

In the second plan, I was satisfied getting nice result to calculate z depth.

Matrix operation program by Rust is here.

You can play mine sweeper app.


Leave a Reply

Your email address will not be published. Required fields are marked *