Page 1 of 2
game server gameserver
Posted: Wed Aug 24, 2011 10:11 am
by tukune
login directory is the same name.
L2J_Server/dist/login
L2J_DataPack/sql/login
build/dist/login
L2J_Server.zip /login
game server directory are all different names.
L2J_Server/dist/game
L2J_DataPack/sql/server
build/dist/gameserver
L2J_Server.zip /gameserver
I want the same.
Re: game server gameserver
Posted: Wed Aug 24, 2011 11:25 am
by MELERIX
imho if we want to follow a "standar structure", we should rename...
community -> communityserver
game-> gameserver
login -> loginserver
Re: game server gameserver
Posted: Wed Aug 24, 2011 1:26 pm
by jurchiks
what do you need the "server" at the end of each name for? the whole thing is a server, you don't need to explicitly say it...
Re: game server gameserver
Posted: Sat Aug 27, 2011 11:17 pm
by MELERIX
is just a cosmetic change suggested by tukune to maintain project consistency

Re: game server gameserver
Posted: Sun Aug 28, 2011 9:44 am
by jurchiks
He didn't suggest to add "server" (that's what you suggested), he suggested to have directory names same as login, all with the same name... and login has no "server" appended to it.
Re: game server gameserver
Posted: Sun Aug 28, 2011 7:39 pm
by MELERIX
ok, then is just gameserver -> game ?
Re: game server gameserver
Posted: Sun Aug 28, 2011 8:13 pm
by Stake
Let's just give the name GS and LS!

Re: game server gameserver
Posted: Mon Aug 29, 2011 1:26 pm
by jurchiks
@MELERIX -
quoting tukune:
L2J_Server/dist/game
L2J_DataPack/sql/server
build/dist/gameserver
L2J_Server.zip /gameserver
should be:
L2J_Server/dist/game
L2J_DataPack/sql/game
build/dist/game
L2J_Server.zip /game
3rd+4th are in build.xml, 2nd is just a rename of sql folder.
Same for community, if there is smth like that.
Re: game server gameserver
Posted: Mon Aug 29, 2011 7:13 pm
by dream555
.........................................
Re: game server gameserver
Posted: Tue Aug 30, 2011 2:07 pm
by tukune
Code: Select all
L2J_DataPack_BETA +- dist | +- community | +- data +- logindata +- data
Code: Select all
L2J_DataPack_BETA +- dist +- community | +- data +- login | +- data +- game +- data
build.xml
Code: Select all
<target name="dist" depends="init" description="Syncronizes build space contents with project."> <sync todir="build/dist"> <fileset dir="dist" /> </sync></target>
Re: game server gameserver
Posted: Tue Aug 30, 2011 2:17 pm
by MELERIX
yes
is the same that I want to do in DP, but trouble is the amount of files to move in DP, thats why I leave it as is for now xD
Re: game server gameserver
Posted: Tue Aug 30, 2011 5:18 pm
by jurchiks
well, at least the login/community part can be done, I think...
Re: game server gameserver
Posted: Wed Aug 31, 2011 7:38 am
by tukune

svn move data dist/game/data
very very easy
Re: game server gameserver
Posted: Wed Aug 31, 2011 4:11 pm
by jurchiks
he means the changeset would be huge. AFAIK SVN considers it a deleted + added file, it can't say "this file was moved to that folder" remotely.
Re: game server gameserver
Posted: Wed Aug 31, 2011 4:28 pm
by MELERIX
tukune wrote:
svn move data dist/game/data
very very easy
yes, is totally easy, you can do that with few clicks in Eclipse, but the trouble is other...
is that the amount of files is really big, and it will affect a lot of contributions xD