project-planning

Class diagram examples for RPG (Role Playing Game)

徘徊边缘 提交于 2019-11-27 08:57:18
问题 Does anyone know where I can find examples of class diagrams for RP game development? Something similar to here would be quite useful. I'm not looking for things I can slavishly copy, but just for different examples that diagram various solutions to the problems I'm discovering as I try and pencil down my own classes. 回答1: I know Emmanuel Deloget from GameDev.net but I'm not sure I would choose to use the hierarchy he's got there! Too much inheritance, not enough flexibility. If I was writing

Developing a Robocode type game with .Net, for a School Assignment

我是研究僧i 提交于 2019-11-27 08:56:06
I am currently in my final year at school, studying for a Higher National Diploma in Computer Studies, and basically in this final semester, we need to develop a Software Project, that basically incorporates a whole system. Now, what I'm thinking of doing is something along the lines of Robocode , but instead of Java, I will be doing this with the .Net Framework. What is Robocode ? For those of you don't know what Robocode is, it's basically a sort of programming game in where people develop their own robots using methods from the class interfaces and downloadable classes that exist, and then

Update a development team with rewritten Git repo history, removing big files

夙愿已清 提交于 2019-11-27 07:14:30
I have a git repo with some very large binaries in it. I no longer need them, and I don't care about being able to checkout the files from earlier commits. So, to reduce the repo size, I want to delete the binaries from the history altogether. After a web search, I concluded that my best (only?) option is to use git-filter-branch : git filter-branch --index-filter 'git rm --cached --ignore-unmatch big_1.zip big_2.zip etc.zip' HEAD Does this seem like a good approach so far? Assuming the answer is yes, I have another problem to contend with. The git manual has this warning : WARNING! The

VSS or SVN for a .Net Project? [closed]

懵懂的女人 提交于 2019-11-26 15:38:50
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 years ago . At work, one of the head managers asked me to research on what could be the benefits of changing the current source control server (Visual Source Safe) of my project to SVN. I really don't have anything against SVN, actually I kind of dig it, but in my humble opinion, change

Update a development team with rewritten Git repo history, removing big files

时光毁灭记忆、已成空白 提交于 2019-11-26 13:05:52
问题 I have a git repo with some very large binaries in it. I no longer need them, and I don\'t care about being able to checkout the files from earlier commits. So, to reduce the repo size, I want to delete the binaries from the history altogether. After a web search, I concluded that my best (only?) option is to use git-filter-branch : git filter-branch --index-filter \'git rm --cached --ignore-unmatch big_1.zip big_2.zip etc.zip\' HEAD Does this seem like a good approach so far? Assuming the