Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo apt-get update
<br/>
sudo apt-get install build-essential binutils-gold freeglut3 freeglut3-dev libglew-dev libglfw-dev libxrandr2 libxrandr-dev libglew libglew1.8
<br/>
go get github.com/vova616/GarageEngine
go get github.com/LaPingvino/GarageEngine

## To-Do list
Clean project:<br/>
Expand Down
2 changes: 1 addition & 1 deletion engine/Camera.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package engine
import (
"errors"
"github.com/go-gl/gl"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine/input"
)

type Rect struct {
Expand Down
6 changes: 3 additions & 3 deletions engine/Engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package engine
import (
"github.com/go-gl/gl"
//"log"
"github.com/vova616/GarageEngine/engine/bt"
"github.com/vova616/GarageEngine/engine/cr"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine/bt"
"github.com/LaPingvino/GarageEngine/engine/cr"
"github.com/LaPingvino/GarageEngine/engine/input"
//"os"
"fmt"
"github.com/go-gl/glfw"
Expand Down
2 changes: 1 addition & 1 deletion engine/audio/AudioClip.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package audio

import (
//"errors"
//"github.com/vova616/GarageEngine/engine"
//"github.com/LaPingvino/GarageEngine/engine"
"github.com/vova616/go-openal/openal"
)

Expand Down
2 changes: 1 addition & 1 deletion engine/audio/AudioListener.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package audio

import (
//"errors"
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/vova616/go-openal/openal"
)

Expand Down
4 changes: 2 additions & 2 deletions engine/audio/AudioSource.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package audio

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/vova616/go-openal/openal"
)

Expand Down Expand Up @@ -126,7 +126,7 @@ func (this *AudioSource) updateBuffers() {

func (this *AudioSource) Update() {
if currentDistanceModel != this.distanceModel {
openal.SetDistanceModel(openal.DistanceModel(this.distanceModel))
openal.SetDistanceModel(openal.GetDistanceModel())
}
this.UpdateTransform()
this.updateBuffers()
Expand Down
2 changes: 1 addition & 1 deletion engine/audio/ibxm/ibxm.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ibxm

import (
"github.com/vova616/GarageEngine/engine/audio"
"github.com/LaPingvino/GarageEngine/engine/audio"
"github.com/vova616/ibxmgo"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion engine/audio/wav/wav.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package wav
import (
"encoding/binary"
"fmt"
"github.com/vova616/GarageEngine/engine/audio"
"github.com/LaPingvino/GarageEngine/engine/audio"
"io"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion engine/components/Collider.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package components

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"image"
)

Expand Down
2 changes: 1 addition & 1 deletion engine/components/Controller.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package components

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"Engine/input"
//"log"
)
Expand Down
2 changes: 1 addition & 1 deletion engine/components/SmoothFollow.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package components

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"math"
//"log"
)
Expand Down
4 changes: 2 additions & 2 deletions engine/components/UIButton.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package components

import (
//"gl"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/input"
)

type UIButton struct {
Expand Down
4 changes: 2 additions & 2 deletions engine/components/UIText.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
//"os"
//"strconv"
//"github.com/go-gl/glfw"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/input"
"github.com/vova616/chipmunk/vect"
//"runtime"
)
Expand Down
2 changes: 1 addition & 1 deletion engine/components/tween/Tween.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tween

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion engine/components/tween/Tweens.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package tween

import (
//"fmt"
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion engine/components/tween/Type.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tween

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"

//"math"
//"time"
Expand Down
2 changes: 1 addition & 1 deletion engine/components/tween/algo.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tween

import (
//"github.com/vova616/GarageEngine/engine"
//"github.com/LaPingvino/GarageEngine/engine"
"math"

//"time"
Expand Down
2 changes: 1 addition & 1 deletion engine/components/tween/loop.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tween

import (
//"github.com/vova616/GarageEngine/engine"
//"github.com/LaPingvino/GarageEngine/engine"
//"math"
//"time"
)
Expand Down
14 changes: 7 additions & 7 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package main
import (
"flag"
"fmt"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/input"
"github.com/vova616/GarageEngine/networkOnline"
"github.com/vova616/GarageEngine/spaceCookies/game"
"github.com/vova616/GarageEngine/spaceCookies/login"
"github.com/vova616/GarageEngine/spaceCookies/server"
"github.com/vova616/GarageEngine/zumbies"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/networkOnline"
"github.com/LaPingvino/GarageEngine/spaceCookies/game"
"github.com/LaPingvino/GarageEngine/spaceCookies/login"
"github.com/LaPingvino/GarageEngine/spaceCookies/server"
"github.com/LaPingvino/GarageEngine/zumbies"
//"math"
//"github.com/go-gl/gl"
"os"
Expand Down
4 changes: 2 additions & 2 deletions networkOnline/Camera.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package networkOnline

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"log"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine/input"
)

type CameraController struct {
Expand Down
6 changes: 3 additions & 3 deletions networkOnline/GameScene.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package networkOnline

import (
"fmt"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/bt"
"github.com/vova616/GarageEngine/engine/components"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/bt"
"github.com/LaPingvino/GarageEngine/engine/components"
_ "image/jpeg"
_ "image/png"
//"gl"
Expand Down
4 changes: 2 additions & 2 deletions networkOnline/MouseDebugger.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package networkOnline

import (
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/input"
//"log"
"github.com/go-gl/glfw"
"github.com/vova616/chipmunk"
Expand Down
6 changes: 3 additions & 3 deletions networkOnline/PlayerController.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package networkOnline

import (
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/cr"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/cr"
//"Engine/components"
"github.com/go-gl/glfw"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine/input"
//"log"
"github.com/vova616/chipmunk"
"github.com/vova616/chipmunk/vect"
Expand Down
2 changes: 1 addition & 1 deletion networkOnline/Rotator.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package networkOnline

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"log"
)

Expand Down
2 changes: 1 addition & 1 deletion spaceCookies/game/Background.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"reflect"
)

Expand Down
4 changes: 2 additions & 2 deletions spaceCookies/game/Client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
//"log"
"encoding/gob"
"fmt"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/spaceCookies/server"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/spaceCookies/server"
"log"
"net"
"time"
Expand Down
2 changes: 1 addition & 1 deletion spaceCookies/game/DamageDealer.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"reflect"
)

Expand Down
2 changes: 1 addition & 1 deletion spaceCookies/game/Destroyable.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"reflect"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions spaceCookies/game/EnemeyAI.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package game

import (
//"fmt"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/bt"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/bt"
"math/rand"
)

Expand Down
2 changes: 1 addition & 1 deletion spaceCookies/game/Missle.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"math/rand"
//"reflect"
)
Expand Down
4 changes: 2 additions & 2 deletions spaceCookies/game/MouseDebugger.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/input"
//"log"
//"github.com/go-gl/glfw"
//c "github.com/vova616/chipmunk"
Expand Down
2 changes: 1 addition & 1 deletion spaceCookies/game/PowerUp.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"math/rand"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion spaceCookies/game/ResizeScript.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
"math/rand"
)

Expand Down
6 changes: 3 additions & 3 deletions spaceCookies/game/ShipController.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package game

import (
"github.com/vova616/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine"
//"Engine/components"
//"github.com/go-gl/glfw"
"github.com/vova616/GarageEngine/engine/input"
"github.com/LaPingvino/GarageEngine/engine/input"
//"log"
//"fmt"
//
"github.com/vova616/GarageEngine/engine/audio"
"github.com/LaPingvino/GarageEngine/engine/audio"
"math"
"math/rand"
"time"
Expand Down
12 changes: 6 additions & 6 deletions spaceCookies/game/SpaceScene.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ package game

import (
"fmt"
"github.com/vova616/GarageEngine/engine"
"github.com/vova616/GarageEngine/engine/audio"
"github.com/vova616/GarageEngine/engine/audio/ibxm"
"github.com/vova616/GarageEngine/engine/audio/wav"
"github.com/vova616/GarageEngine/engine/components"
"github.com/LaPingvino/GarageEngine/engine"
"github.com/LaPingvino/GarageEngine/engine/audio"
"github.com/LaPingvino/GarageEngine/engine/audio/ibxm"
"github.com/LaPingvino/GarageEngine/engine/audio/wav"
"github.com/LaPingvino/GarageEngine/engine/components"
_ "image/jpeg"
_ "image/png"
//"gl"
"strconv"
"time"
//"strings"
//"math"
"github.com/vova616/GarageEngine/spaceCookies/server"
"github.com/LaPingvino/GarageEngine/spaceCookies/server"
"github.com/vova616/chipmunk"
"github.com/vova616/chipmunk/vect"
//"image"
Expand Down
Loading