Git Product home page Git Product logo

Comments (1)

snake-biscuits avatar snake-biscuits commented on July 23, 2024

You can contact me on Discord, my tag is b!scuit#3659.
I'll grab myself a copy of CSO2 so I can get the original maps and test any conversions I attempt.
Can't promise I'll be able to make any progress anytime soon though, converting between branches can get hard.

I'm already looking at converting maps for Titanfall, so I am planning to make tools for this.
However I'm pretty flat out with Uni & other life stuff at the moment so I can't make any promises.

If you can offer any kind of payment I'd look into allocating some time to it, but I need to prioritise my studies.

If you'd be more interested in mapping out CSO2's .bsp format, I wrote this guide a while back that may help:
https://github.com/snake-biscuits/bsp_tool/wiki/Writing-a-custom-branch-script

If you develop a decent mapping for the format developing an converter function tool should become possible.

def css_to_cso2(css_map_filename: str):
	css_map = bsp_tool.load(css_map_filename)
	cso2_map = bsp_tool.ValveBsp(f"cso2/{css_map.filename}")
	for lump in css_map.HEADERS:
		lump_data = getattr(css_map, lump)
		# change the lump to CSO2 format
		setattr(cso2_map, lump, lump_data)
	cso2_map.save()

from bsp_tool.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.