def _load_clanIcon(self, pl): try: if pl.clanInfo: rank = int(pl.clanInfo.get('rank', -1)) url = pl.clanInfo.get('emblem', None) # url = 'http://stat.modxvm.com:81' if url and 0 <= rank <= token.networkServicesSettings['topClansCount']: url = url.replace('{size}', '32x32') tID = 'icons/clan/{0}'.format(pl.clanInfo['cid']) self._loadingClanIconsCount += 1 debug('clan={0} rank={1} url={2}'.format(pl.clan, rank, url)) filecache.get_url(url, (lambda url, bytes: self._load_clanIcons_callback(pl, tID, bytes))) except Exception: err(traceback.format_exc())
def _load_clanIcon(self, pl): try: if hasattr(pl, 'x_emblem'): BigWorld.callback(0, lambda: as_xfw_cmd(XVM_COMMAND.AS_ON_CLAN_ICON_LOADED, pl.vehicleID, pl.name)) elif hasattr(pl, 'x_emblem_loading'): return elif pl.clanInfo: rank = pl.clanInfo.get('rank', -1) url = pl.clanInfo.get('emblem', None) if url and rank >= 0: url = url.replace('{size}', '32x32') tID = 'icons/clan/{0}'.format(pl.clanInfo['clan_id']) self._loadingClanIconsCount += 1 pl.x_emblem_loading = True debug('clan={0} rank={1} url={2}'.format(pl.clan, rank, url)) filecache.get_url(url, (lambda url, bytes: self._load_clanIcons_callback(pl, tID, bytes))) except Exception: err(traceback.format_exc())
def _load_clanIcon(self, pl): try: if hasattr(pl, 'x_emblem'): BigWorld.callback(0, lambda: as_xfw_cmd(XVM_COMMAND.AS_ON_CLAN_ICON_LOADED, pl.vehicleID, pl.name)) elif hasattr(pl, 'x_emblem_loading'): return elif pl.clanInfo: rank = pl.clanInfo.get('rank', -1) url = pl.clanInfo.get('emblem', None) # url = 'http://stat.modxvm.com:81' if url and 0 <= rank <= config.networkServicesSettings.topClansCount: url = url.replace('{size}', '32x32') tID = 'icons/clan/{0}'.format(pl.clanInfo['cid']) self._loadingClanIconsCount += 1 pl.x_emblem_loading = True debug('clan={0} rank={1} url={2}'.format(pl.clan, rank, url)) filecache.get_url(url, (lambda url, bytes: self._load_clanIcons_callback(pl, tID, bytes))) except Exception: err(traceback.format_exc())
def _init(): res = [_UNKNOWN_VEHICLE_DATA] try: for nation in nations.NAMES: nationID = nations.INDICES[nation] for (id, descr) in vehicles.g_list.getList(nationID).iteritems(): if descr.name.endswith('training'): continue item = vehicles.g_cache.vehicle(nationID, id) #log('%i %i %s %s' % (descr.level, descr.compactDescr, descr.name, descr.shortUserString)) data = dict() data['vehCD'] = descr.compactDescr data['key'] = descr.name data['nation'] = nation data['level'] = descr.level data['vclass'] = tuple(vehicles.VEHICLE_CLASS_TAGS & descr.tags)[0] data['localizedName'] = descr.shortUserString data['localizedShortName'] = descr.shortUserString data['localizedFullName'] = descr.userString data['premium'] = 'premium' in descr.tags data['special'] = 'special' in descr.tags stockTurret = item.turrets[0][0] topTurret = item.turrets[0][-1] topGun = topTurret.guns[-1] #if len(item.hulls) != 1: # log('WARNING: TODO: len(hulls) != 1 for vehicle ' + descr.name) data['hpStock'] = item.hulls[0].maxHealth + stockTurret.maxHealth data['hpTop'] = item.hulls[0].maxHealth + topTurret.maxHealth data['turret'] = _getTurretType(item, nation) (data['visRadius'], data['firingRadius'], data['artyRadius']) = \ _getRanges(topTurret, topGun, nation, data['vclass']) (data['tierLo'], data['tierHi']) = vehinfo_tiers.getTiers(data['level'], data['vclass'], data['key']) data['shortName'] = vehinfo_short.getShortName(data['key'], data['level'], data['vclass']) data['isReserved'] = False #log(data) res.append(data) ResMgr.purge(_VEHICLE_TYPE_XML_PATH + nation + '/components/guns.xml', True) vehinfo_short.checkNames(res) global _vehicleInfoData _vehicleInfoData = {x['vehCD']:x for x in res} # load cached values _load_xvmscale_data_callback(None, userprefs.get('cache/xvmscales.json.gz')) _load_wn8_data_callback(None, userprefs.get('cache/wn8exp.json.gz')) _load_xte_data_callback(None, userprefs.get('cache/xte.json.gz')) _load_xtdb_data_callback(None, userprefs.get('cache/xtdb.json.gz')) # request latest values filecache.get_url(_XVMSCALE_DATA_URL, _load_xvmscale_data_callback) filecache.get_url(_WN8_DATA_URL, _load_wn8_data_callback) filecache.get_url(_XTE_DATA_URL, _load_xte_data_callback) filecache.get_url(_XTDB_DATA_URL, _load_xtdb_data_callback) except Exception, ex: err(traceback.format_exc())
def _init(): res = [_UNKNOWN_VEHICLE_DATA] try: for nation in nations.NAMES: nationID = nations.INDICES[nation] for (id, descr) in vehicles.g_list.getList(nationID).iteritems(): if descr.name.endswith('training'): continue item = vehicles.g_cache.vehicle(nationID, id) #log('%i %i %s %s' % (descr.level, descr.compactDescr, descr.name, descr.shortUserString)) data = dict() data['vehCD'] = descr.compactDescr data['key'] = descr.name data['nation'] = nation data['level'] = descr.level data['vclass'] = tuple(vehicles.VEHICLE_CLASS_TAGS & descr.tags)[0] data['localizedName'] = descr.shortUserString data['localizedShortName'] = descr.shortUserString data['localizedFullName'] = descr.userString data['premium'] = 'premium' in descr.tags stockTurret = item.turrets[0][0] topTurret = item.turrets[0][-1] topGun = topTurret.guns[-1] #if len(item.hulls) != 1: # log('WARNING: TODO: len(hulls) != 1 for vehicle ' + descr.name) data['hpStock'] = item.hulls[0].maxHealth + stockTurret.maxHealth data['hpTop'] = item.hulls[0].maxHealth + topTurret.maxHealth data['turret'] = _getTurretType(item, nation) (data['visRadius'], data['firingRadius'], data['artyRadius']) = \ _getRanges(topTurret, topGun, nation, data['vclass']) (data['tierLo'], data['tierHi']) = vehinfo_tiers.getTiers(data['level'], data['vclass'], data['key']) data['shortName'] = vehinfo_short.getShortName(data['key'], data['level'], data['vclass']) data['isReserved'] = False #log(data) res.append(data) ResMgr.purge(_VEHICLE_TYPE_XML_PATH + nation + '/components/guns.xml', True) vehinfo_short.checkNames(res) global _vehicleInfoData _vehicleInfoData = {x['vehCD']:x for x in res} # load cached values _load_xvmscale_data_callback(None, userprefs.get('cache/xvmscales.json.gz')) _load_wn8_data_callback(None, userprefs.get('cache/wn8exp.json.gz')) _load_xte_data_callback(None, userprefs.get('cache/xte.json.gz')) _load_xtdb_data_callback(None, userprefs.get('cache/xtdb.json.gz')) # request latest values filecache.get_url(_XVMSCALE_DATA_URL, _load_xvmscale_data_callback) filecache.get_url(_WN8_DATA_URL, _load_wn8_data_callback) filecache.get_url(_XTE_DATA_URL, _load_xte_data_callback) filecache.get_url(_XTDB_DATA_URL, _load_xtdb_data_callback) except Exception, ex: err(traceback.format_exc())