ZorbaTHut
ZorbaTHut t1_j0hofzs wrote
If you can set up a Git client that's user-friendly enough that an artist can use it, you might be able to steal the entire game industry from using Perforce.
You've got half the work done, and, god, we would love to stop using Perforce.
Happy to talk to you if you're interested in learning more about this - there's an entire largely-untapped business opportunity out there :)
ZorbaTHut t1_ix2b6b6 wrote
Reply to comment by paulfdietz in Super-hot salt could be coming to a battery near you by Apart_Shock
Yeah, there are systems that use molten salt to store heat, so I understand the confusion . . . but this isn't one of them, it's a chemical process that only functions at high temperatures.
ZorbaTHut t1_iwavhby wrote
Reply to comment by Due_Platypus_3913 in Farmers in China and Uganda move to high-yielding, cost-saving perennial rice by tonymmorley
Keep in mind that the twin problem of rice using lots of water and California not having much water can be easily solved by not growing rice in California.
Not every crop needs to be viable everywhere, and there's honestly probably a market for extra-water-hungry rice as long as it produces even more.
ZorbaTHut t1_j0kosbx wrote
Reply to comment by rajatarya in [P] XetHub: We scaled Git to support 1 TB repos by rajatarya
DM sent!
I'm actually not sure how much of game-industry workflow is because that's the workflow we'd want to use, and how much of it is because we're stuck with Perforce and that's the workflow Perforce supports. But in general, it's:
If you're doing a release (assuming you're working on a game-as-service that's expected to have rolling releases), then often that gets branched into a Test branch and eventually a Stable branch. Besides that, branches are extremely rare and everyone is basically just working on the main branch all the time.
The reason for a lot of this is artists and designers. I love artists and designers, but complicated tools are just a non-starter for a lot of 'em; hell, there's programmers who have trouble with Git. Perforce's GUI is actually pretty clean and easy to use even for non-technical people and turns out to be a pretty good fit here.
The other thing to note is that any replacement needs to have file locking and Unreal Engine/Unity integration. File locking already exists on Git as a plugin, Git integration exists on those two platforms as well. But if you were building something that merely kinda looked like Git but wasn't actually Git-backed, you might need to do some work there. Unity's source control plugins can be distributed as .dll's, Unreal Engine probably requires that you submit a pull request to Epic (and contact the company first so you can get it through in less than half a year, they're pretty backed up.)
The reason we can't use Git is pure size. I've found it to be a surprisingly accurate rule of thumb that the final build of a game is 10% the size of a clean checkout. So, if your game is 10gb, the raw checkout is 100gb. The X-COM 2 full install was 78gb and it would not surprise me if this means the clean checkout is 780gb.
But that's just the clean checkout of the last version! I'm not sure what all the incremental updates look like, but a lot of that size consists of binary files that traditionally do not diff very well. I'm not sure if your system will be able to make this better, since many of these files weren't designed for it - it might be one of those deals where you move a single vertex on a model and the entire file gets changed because the designers didn't bother with binary stability.
Anyway, if you're including the entire history, it would not surprise me if this regularly gets another order of magnitude, and now the repo as a whole is passing 10tb.
Git in theory now supports doing partial syncs, so it can retrieve data in-flight from the server. Git in theory also supports partial tree syncs so you can choose a set of directories that you have in your filesystem, which would also be necessary.
In practice, I think this entire product looks like:
I have no idea if this ends up being worth the effort for your company, but god, I wish someone would do it :V