用VR观看LoL,这到底是如何实现的

前段时间,网上出现了一段使用HTC vive观看LoL的视频,相关链接在这里。这是由一位名叫Fire-Proof的大神开发完成的,并且大神公布了源代码。作为一名程序员,对牛掰的代码自然充满了好奇,用VR观看LoL,这到底是如何实现的呢?

查看代码发现,程序完全使用Python开发(再次感受到Python的强大),包含的代码并不多,一共也就10几个文件。


这里写图片描述

首先查看main.py。在最下方定义了start_app方法

def start_app():
    app = QApplication(sys.argv)
    tray_icon = MainDialog()
    tray_icon.show()
    app.exec_()

程序创建了一个名为MainDialog的对话框,让我们看一下MainDialog中有些什么(代码有删减)

class MainDialog(QDialog, Ui_MainDialog):
    def __init__(self, parent=None):
        super(MainDialog, self).__init__(parent)
        self.spectate = None
        self.spectate_started = False
        self.setupUi(self)
        self.lol_watcher = ProcessWatcher(b"League of Legends")
        self.lol_watcher.running.connect(self.lol_watcher_update, Qt.QueuedConnection)
        self.lol_watcher.start()
        self.vorpx_watcher = ProcessWatcher(b"vorpControl")
        self.vorpx_watcher.running.connect(self.vorpx_watcher_update,Qt.QueuedConnection)
        self.vorpx_watcher.start()
        self.pushButtonStart.clicked.connect(self.toggle_spectate)
    def toggle_spectate(self):
        if self.spectate_started:
            self.pushButtonStart.setText("Start")
            self.stop_spectate()
            self.spectate_started = False
        else:
            self.pushButtonStart.setText("Stop")
            self.start_spectate()
            self.spectate_started = True
    def start_spectate(self):
        if self.spectate is None:
            self.spectate = SpectateThread()
            self.spectate.error.connect(self.spectate_error, Qt.QueuedConnection)
        self.spectate.start()

对话框创建了一个start按钮,并将该按钮的点击事件绑定到了toggle_spectate方法上,该方法会调用start_spectate方法,并最终通过SpectateThread创建了一个线程。继续查看SpectateThread(代码有删减)

class SpectateThread(QThread):
    def __init__(self):
        super(SpectateThread, self).__init__()
        self.spectate = None
    def run(self, *args, **kwargs):
        self.spectate = VRSpectate()
        self.spectate.run()    

看来玄机在VRSpectate方法中。在查看VRSpectate之前,注意到MainDailog中开启了两个线程来检测"League of Legends"进程和"vorpControl"进程。前一个很好理解,观看LoL自然需要"League of Legends"进程,那这个"vorpControl"进程又是什么鬼呢?这是vorpX软件的运行进程,用来将非VR游戏的画面转换成VR模式并同步到头显设备中。看到这里是不是有种被欺骗的感觉,通过VR观看LoL是通过软件来实现的?答案确实如此,Python程序并不负责转换LoL的画面到VR设备上,它只是不停的检测VR头显和控制器的状态,并以此调整LoL的画面,这样就可以通过转动头部或触发控制器来以不同的视角观看LoL画面(比如站立时鸟瞰整个战场,蹲下来观看局部战场)。

VRSepecaterun方法中,会不停的调用_next_frame 方法来更新画面

def _next_frame(self):
  self.scale = self.z_offset
  controller_frame = self.vr.controller_frame()
  # Camera movement
  if len(controller_frame) == 2:
    if all(controller_frame.button_pressed("trigger")):
      self.yaw_offset += self.prev_controller_frame.relative_rotation - controller_frame.relative_rotation
      self.z_offset += (self.prev_controller_frame.relative_distance - controller_frame.relative_distance) * self.z_offset * 2
      self._move_offset(self.prev_controller_frame.position(), controller_frame.position())
    elif any(controller_frame.button_pressed("trigger")):
        active_controller = [i for i, x in enumerate(controller_frame.button_pressed("trigger")) if x][0]
        self._move_offset(self.prev_controller_frame.position(active_controller), controller_frame.position(active_controller))
 if len(controller_frame) == 1:
   if any(controller_frame.button_pressed("trigger")):
     self._move_offset(self.prev_controller_frame.position(), controller_frame.position(), update_z=True)

  self.prev_controller_frame = controller_frame
  pos = self.vr.hmd.position()
  self.lol.yaw = pos.yaw + self.yaw_offset
  self.lol.pitch = pos.pitch*-1
  self.lol.x = (pos.x*self.scale) + self.x_offset
  self.lol.y = (pos.y*self.scale) + self.y_offset
  self.lol.z = (pos.z*self.scale) + self.z_offset

该方法会首先来检测VR控制器是否触发,并获取VR头显的位置信息,根据这些数据来更新LoL的画面信息。其中访问VR设备是通过调用openvr库来实现的,并在OpenVR.py中做了进一步的封装。那么更新LoL画面如何实现呢,答案是修改LoL进程的内存。

在LeagueOfLegends.py中,封装了修改LoL进程内存的方法,例如执行self.lol.x = 520,实际上执行的是下面的代码

 @x.setter
 def x(self, val):
   self._x.write(val, type="float")

而更底层的实现是通过memorpy目录中的相关代码来实现的。那么如何知道应该修改哪些内存位置呢(毕竟直接修改内存一个不慎可能进程就挂了)。涉及到画面信息的内存位置都是通过一个cam_base_address 进行偏移得到的,作者给出了cam_base_address 的搜索方法:

HOW TO: Find base addr

  1. Move screen to lowest y coord
  2. Scan for float = 520
  3. Move screen to highest y coord
  4. Scan for float = 14765
  5. Select the address that will updated the camera pos when changed
  6. Right click this address and click "find out what accesses this address"
  7. Select an element and press more information
  8. Copy the value which is listed at the end of the string "The value of the pointer needed to find this ..."
  9. Search for this this value as an 8-bit hex value
  10. Now search for the first address found
  11. You should now have found a "green" address, select this and double click the address
  12. You should now be able to see a string similar to "League of Legends.exe"+13D4280 <-- base addr

看起来作者是通过某些内存查看软件(例如IDA)来进行分析得到的内存地址(在此膜拜大神)。

了解了这些,基本就明白程序的技术原理了,剩下的部分感兴趣的同学可以自行查看源码,当然有条件可以上设备体验一番。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,817评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,329评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,354评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,498评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,600评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,829评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,979评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,722评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,189评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,519评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,654评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,329评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,940评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,762评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,993评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,382评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,543评论 2 349

推荐阅读更多精彩内容