标题: [已结]如何接受用户输入更改文本内容
[打印本页]
作者: beyoungse
时间: 2008-12-25 01:19
标题: [已结]如何接受用户输入更改文本内容
rev.ini文本如下:
# Game Config dods.cn
[Emulator]
# CachePath - set to the folder where your GCF files are located
#
CacheEnabled=False
CachePath=d:\Steam\SteamApps
# Language - rev emu will automagically load the correct language files.
# This can be English, French, Italian, German, Spanish, sChinese,
# Korean, Koreana, tChinese, Japanese, Russian, Thai, or Portugeuse
#
Language=sChinese
# Change Logging to True to enable/disable log file output for steam.dll
#
Logging=False
# Change SteamDll to point to your official Steam client DLL.
# This setting is required for Steam UserID Validation functions
# to support legit Steam IDs. Otherwise, all clients would get
# IDs generated from their IP addresses.
# Also make sure you uncomment the line below (remove "#")
# if you want to use this setting!
#
SteamDll=bin\steam_old.dll
# Change SteamClient to True if you want to use steamclient emulator
#
SteamClient=True
# 如果要使用steam上的用户名,请修改SteamUser后面的内容
# Defaults to revCrew if not specified
SteamUser=revCrew
[Log]
# If Logging is set to True, choose which functions would you like to log.
#
FileSystem=False
Account=False
UserID=False
[steamclient]
################################### NOTE ####################################
# These settings may apply even if you don't choose to use steamclient.dll! #
#############################################################################
#
# 玩家名称在下面修改,将DODS.CN修改为你的名字 (仅用于起源2007引擎的游戏)
#
PlayerName="[color=Red][b]test[/b][/color]"
# Change the setting below to enable/disable log file output for steamclient.dll
#
Logging=False
# Change the setting below to enable a different master server for the server
# browser
#MasterServer=213.239.209.221
上面的rev.ini配置文件中红色字体如何用批处理接受用户输入做出相应更改
[
Last edited by HAT on 2008-12-26 at 23:19 ]
作者: tireless
时间: 2008-12-25 15:27
标题: 这样:
@echo off
set /p input=请输入 PlayerName:
set file=d:\test\rev.ini
for /f "delims=" %%a in ('findstr /n .* "%file%"') do (
set "str=%%a"
if not defined Overwrite (
>"%file%" call echo.%%str:~2%%
set Overwrite=.
) else (
setlocal enabledelayedexpansion
set str=!str:*:=!
if /i "!str:~,10!"=="PlayerName" (
>>"%file%" echo PlayerName="%input%"
) else (>>"%file%" echo.!str!)
endlocal
)
)
[
Last edited by tireless on 2008-12-25 at 16:55 ]
作者: tireless
时间: 2008-12-25 15:28
标题: 或者这样:
@echo off
set /p input=请输入 PlayerName:
set "file=d:\test\rev.ini"
more +15 %0>"%file%"
>>"%file%" echo PlayerName="%input%"
>>"%file%" echo.
>>"%file%" echo # Change the setting below to enable/disable log file output for steamclient.dll
>>"%file%" echo #
>>"%file%" echo Logging=False
>>"%file%" echo.
>>"%file%" echo # Change the setting below to enable a different master server for the server
>>"%file%" echo # browser
>>"%file%" echo #MasterServer=213.239.209.221
exit /b
# Game Config dods.cn
[Emulator]
# CachePath - set to the folder where your GCF files are located
#
CacheEnabled=False
CachePath=d:\Steam\SteamApps
# Language - rev emu will automagically load the correct language files.
# This can be English, French, Italian, German, Spanish, sChinese,
# Korean, Koreana, tChinese, Japanese, Russian, Thai, or Portugeuse
#
Language=sChinese
# Change Logging to True to enable/disable log file output for steam.dll
#
Logging=False
# Change SteamDll to point to your official Steam client DLL.
# This setting is required for Steam UserID Validation functions
# to support legit Steam IDs. Otherwise, all clients would get
# IDs generated from their IP addresses.
# Also make sure you uncomment the line below (remove "#")
# if you want to use this setting!
#
SteamDll=bin\steam_old.dll
# Change SteamClient to True if you want to use steamclient emulator
#
SteamClient=True
# 如果要使用steam上的用户名,请修改SteamUser后面的内容
# Defaults to revCrew if not specified
SteamUser=revCrew
[Log]
# If Logging is set to True, choose which functions would you like to log.
#
FileSystem=False
Account=False
UserID=False
[steamclient]
################################### NOTE ####################################
# These settings may apply even if you don't choose to use steamclient.dll! #
#############################################################################
#
# 玩家名称在下面修改,将DODS.CN修改为你的名字 (仅用于起源2007引擎的游戏)
#
作者: HAT
时间: 2008-12-25 16:11
标题: Re 3楼
PlayerName="test"下面的几行直接more一下原始ini文件更简介些吧^_^
作者: yishanju
时间: 2008-12-25 16:15
#开头的注释内容全不要了吧
然后按配置文件的格式ECHO 生成一个配置文件。这样或许更好写
[
Last edited by yishanju on 2008-12-25 at 16:20 ]
作者: yishanju
时间: 2008-12-25 16:16
去年注释后的配置文件就像被拔光毛的狮子。
[Emulator]
CacheEnabled=False
CachePath=d:\Steam\SteamApps
Language=sChinese
Logging=False
SteamDll=bin\steam_old.dll
SteamClient=True
SteamUser=revCrew
[Log]
FileSystem=False
Account=False
UserID=False
[steamclient]
PlayerName="test"
Logging=False
[
Last edited by yishanju on 2008-12-25 at 16:21 ]
作者: tireless
时间: 2008-12-25 16:42
Quote: |
Originally posted by HAT at 2008-12-25 04:11 PM:
PlayerName="test"下面的几行直接more一下原始ini文件更简介些吧^_^ |
|
我刚想说是,发现这样不对,因为我前面已经把原文件覆盖了...而且不可以 more 到同一个文件,如 more 1.txt>1.txt
[
Last edited by tireless on 2008-12-25 at 16:46 ]
作者: HAT
时间: 2008-12-25 16:46
标题: Re 7楼
是的,如果要采用4楼的方法,就要使用临时文件了。
作者: beyoungse
时间: 2008-12-26 14:33
谢谢各位热心的大大
作者: kurt101
时间: 2008-12-26 19:28
来学习了。。看到那么多代码头有点大