Giter VIP home page Giter VIP logo

sgreader's People

Contributors

theonly92 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

bmcustodio

sgreader's Issues

Red Images

I am loading a bitmap from Master of Olympus: Zeus and attempting to display it via Pixel. However the image is showing with incorrect colours. Does the bitmap need to be modified at all before displaying?

func loadImg() *pixel.PictureData {
	file := sgreader.ReadFile("data/zeus_artemis.sg3")
	err := file.Load()
	if err != nil {
		panic(err)
	}
	bitmaps := file.BitmapCount()
	fmt.Printf("Bitmaps: %d\n", bitmaps)

	bitmap := file.GetBitmap(0)
	img, err := bitmap.GetImage(3)
	if err != nil {
		panic(err)
	}
	return pixel.PictureDataFromImage(img)
}

func run() {
	cfg := pixelgl.WindowConfig{
		Title:  "Pixel Rocks!",
		Bounds: pixel.R(0, 0, 1024, 768),
		VSync:  true,
	}
	win, err := pixelgl.NewWindow(cfg)
	if err != nil {
		panic(err)
	}

	pic := loadImg()

	sprite := pixel.NewSprite(pic, pic.Bounds())

	win.Clear(colornames.Skyblue)
	sprite.Draw(win, pixel.IM.Moved(win.Bounds().Center()))

	for !win.Closed() {
		win.Update()
	}
}

image

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.