参考变量,使用变量

时间:2018-05-27 14:13:53

标签: vb.net variables

我正在创建一个游戏,它会将地图存储在不同的文件中 这是在该文件中使用变量完成的:

Public X1Y1 = "idle"

包含我的屏幕绘图引擎的位置和像素信息 要绘制每个像素,我需要遍历所有这些变量。

我想如图所示这样做,但我无法弄清楚如何引用地图文件中的变量
(例如:X1Y1X5Y4),使用存储所需变量名称的变量(pos)。

  Dim targetmap As SplashMap = New SplashMap()
    For rowcount = 0 To targetmap.xRes Step 1
        'for each row on the map
        For columncount = 0 To targetmap.yRes Step 1
            'place the pixel in each column
            Dim pos = "X" & rowcount & "Y" & columncount
            PlacePixel(pos, targetmap.'var <- problem, vbNull)
          'call engine(Pixel Location, Pixel information stored in var, special control instruction (unused)) 
        Next
    Next

0 个答案:

没有答案