我正在将我的游戏从 Java 移植到 Objective C,并且我有大量的关卡数据。我希望有一种简单的方法可以通过正则表达式使用某种替换来改变它。
Java 格式如下所示 -
level1.addWave(240, 0, 120, 1, Constants.DOWN_STRAIGHT, .03f, 0.15f,
Constants.WANDER_RIGHT, Constants.TOP_SIDE, 250, 390, Sheep.WHITE, 2);
Objective C 版本应该是这样的——
[level1 addWave_offset:0 waveTimer:0 nextSheepCD:0 numberOfWaves:1 startingDirection:DOWN_STRAIGHT wanderRate:0.03 wanderLean:0.15
wanderDirection:WANDER_NONE side:TOP_SIDE minPixel:200 maxPixel:200 type:WHITE amount:1];
有没有办法通过正则表达式进行替换?