start-client.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. #!/usr/bin/env python
  2. """
  3. @file start-client.py
  4. @brief 
  5. $LicenseInfo:firstyear=2007&license=mit$
  6. Copyright (c) 2007-2010, Linden Research, Inc.
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13. The above copyright notice and this permission notice shall be included in
  14. all copies or substantial portions of the Software.
  15. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. THE SOFTWARE.
  22. $/LicenseInfo$
  23. """
  24. import sys, getopt
  25. import os
  26. import llstart
  27. def usage():
  28.     print """start-client.py
  29.     
  30.     --grid <grid>
  31.     --farm <grid>
  32.     --region <starting region name>
  33.     """
  34. def start_client(grid, slurl, build_config, my_args):
  35.     login_url = "https://login.%s.lindenlab.com/cgi-bin/login.cgi" % (grid)
  36.     viewer_args = { "--grid" : grid,
  37.                     "--loginuri" : login_url }
  38.     viewer_args.update(my_args)
  39.     # *sigh*  We must put --url at the end of the argument list.
  40.     if viewer_args.has_key("--url"):
  41.         slurl = viewer_args["--url"]
  42.         del(viewer_args["--url"])
  43.     viewer_args = llstart.get_args_from_dict(viewer_args)
  44.     if slurl is not None:
  45.         viewer_args += " --url %s" % slurl
  46.     # Figure out path stuff.
  47.     # The client should run from indra/newview
  48.     # but the exe is at indra/build-<xxx>/newview/<target>
  49.     build_path = os.path.dirname(os.getcwd());    
  50.     f = open("start-client.log", "w")
  51.     print >>f, "Viewer startup arguments:"
  52.     llstart.start("viewer", "../../newview", 
  53.         "%s/newview/%s/secondlife-bin.exe" % (build_path, build_config),
  54.         viewer_args, f)
  55.     f.close()
  56. if __name__ == "__main__":
  57.     grid = llstart.get_config("grid")
  58.     
  59.     if grid == None:
  60.         grid = "aditi"
  61.         
  62.     build_config = llstart.get_config("build_config")
  63.     my_args = llstart.get_config("viewer_args", force_dict = True)
  64.     opts, args = getopt.getopt(sys.argv[1:], "u:r:f:g:i:h",
  65.         ["region=", "username=", "farm=", "grid=", "ip=", "help"])
  66.     region = None
  67.     for o, a in opts:
  68.         if o in ("-r", "--region", "-u", "--username"):
  69.             region = a
  70.         if o in ("-f", "--farm", "-g", "--grid"):
  71.             grid = a
  72.         if o in ("-h", "--help"):
  73.             usage()
  74.             sys.exit(0)
  75.             
  76.     slurl = llstart.get_config("slurl")            
  77.     if slurl == None:
  78.         if region is None:
  79.             region = llstart.get_user_name()
  80.         slurl = "//%s/128/128/" % (region)
  81.     # Ensure the slurl has quotes around it.
  82.     if slurl is not None:
  83.         slurl = '"%s"' % (slurl.strip('"''))
  84.     
  85.     start_client(grid, slurl, build_config, my_args)