package Lima import ( //"fmt" //"io/ioutil" //"path/filepath" "github.com/mitchellh/go-homedir" "github.com/veandco/go-sdl2/ttf" "runtime" "strings" "github.com/cuu/gogame/color" "github.com/cuu/gogame/draw" "github.com/cuu/gogame/event" "github.com/cuu/gogame/rect" "github.com/cuu/gogame/surface" "github.com/cuu/gogame/time" "github.com/clockworkpi/LauncherGoDev/sysgo/UI" ) type ListPageSelector struct { UI.InfoPageSelector } func NewListPageSelector() *ListPageSelector { p := &ListPageSelector{} p.Width = UI.Width p.BackgroundColor = &color.Color{131, 199, 219, 255} //SkinManager().GiveColor('Front') return p } func (self *ListPageSelector) Draw() { idx := self.Parent.GetPsIndex() mylist := self.Parent.GetMyList() if idx < len(mylist) { x, y := mylist[idx].Coord() _, h := mylist[idx].Size() self.PosX = x + 2 self.PosY = y + 1 self.Height = h - 3 canvas_ := self.Parent.GetCanvasHWND() rect_ := rect.Rect(self.PosX, self.PosY, self.Width-4, self.Height) draw.AARoundRect(canvas_, &rect_, self.BackgroundColor, 4, 0, self.BackgroundColor) } } type PageListItem struct { UI.InfoPageListItem Active bool Value string } func NewPageListItem() *PageListItem { p := &PageListItem{} p.Height = UI.DefaultInfoPageListItemHeight p.ReadOnly = false p.Labels = make(map[string]UI.LabelInterface) p.Icons = make(map[string]UI.IconItemInterface) p.Fonts = make(map[string]*ttf.Font) return p } func (self *PageListItem) Draw() { x, _ := self.Labels["Text"].Coord() w, h := self.Labels["Text"].Size() self.Labels["Text"].NewCoord(x, self.PosY+(self.Height-h)/2) if self.Active == true { self.Parent.(*GPUDriverPage).Icons["done"].NewCoord(self.Parent.(*GPUDriverPage).Width-30, self.PosY+5) self.Parent.(*GPUDriverPage).Icons["done"].Draw() } self.Labels["Text"].SetBold(self.Active) self.Labels["Text"].Draw() if _, ok := self.Labels["Small"]; ok { x, _ = self.Labels["Small"].Coord() w, h = self.Labels["Small"].Size() self.Labels["Small"].NewCoord(self.Width-w-10, self.PosY+(self.Height-h)/2) self.Labels["Small"].Draw() } canvas_ := self.Parent.GetCanvasHWND() draw.Line(canvas_, &color.Color{169, 169, 169, 255}, self.PosX, self.PosY+self.Height-1, self.PosX+self.Width, self.PosY+self.Height-1, 1) } type GPUDriverPage struct { UI.Page ListFont *ttf.Font BGwidth int BGheight int DrawOnce bool Scroller *UI.ListScroller Icons map[string]UI.IconItemInterface } func NewGPUDriverPage() *GPUDriverPage { p := &GPUDriverPage{} p.ListFont = UI.Fonts["notosanscjk12"] p.FootMsg = [5]string{"Nav", "", "", "Back", "Select"} p.BGwidth = UI.Width p.BGheight = UI.Height - 24 - 20 p.Icons = make(map[string]UI.IconItemInterface) return p } func (self *GPUDriverPage) GenList() { self.MyList = nil start_x := 0 start_y := 0 last_height := 0 var drivers = [][2]string{[2]string{"fbturbo", "FBTURBO driver (Software Rendering)"}, [2]string{"modesetting", "LIMA driver (Experimental Hardware Rendering)"}} for _, u := range drivers { li := NewPageListItem() li.Parent = self li.PosX = start_x li.PosY = start_y + last_height li.Width = UI.Width li.Fonts["normal"] = self.ListFont li.Active = false li.Value = u[0] li.Init(u[1]) last_height += li.Height self.MyList = append(self.MyList, li) } } func (self *GPUDriverPage) Init() { if self.Screen != nil { if self.Screen.CanvasHWND != nil && self.CanvasHWND == nil { self.HWND = self.Screen.CanvasHWND self.CanvasHWND = surface.Surface(self.Screen.Width, self.Screen.Height) } } self.PosX = self.Index * self.Screen.Width self.Width = self.Screen.Width self.Height = self.Screen.Height done := UI.NewIconItem() done.ImgSurf = UI.MyIconPool.GetImgSurf("done") done.MyType = UI.ICON_TYPES["STAT"] done.Parent = self self.Icons["done"] = done ps := NewListPageSelector() ps.Parent = self self.Ps = ps self.PsIndex = 0 self.GenList() self.Scroller = UI.NewListScroller() self.Scroller.Parent = self self.Scroller.PosX = self.Width - 10 self.Scroller.PosY = 2 self.Scroller.Init() self.Scroller.SetCanvasHWND(self.HWND) } func (self *GPUDriverPage) Click() { if len(self.MyList) == 0 { return } if self.PsIndex >= len(self.MyList) { self.PsIndex = len(self.MyList) - 1 } cur_li := self.MyList[self.PsIndex].(*PageListItem) if cur_li.Active == true { return } if strings.Contains(runtime.GOARCH, "arm") == true { for i, _ := range self.MyList { self.MyList[i].(*PageListItem).Active = false } cur_li.Active = true self.Screen.MsgBox.SetText("Applying") self.Screen.MsgBox.Draw() self.Screen.SwapAndShow() if strings.Contains(cur_li.Value, "modesetting") { lockfile, _ := homedir.Expand("~/.lima") UI.System("touch " + lockfile) UI.ArmSystem("sudo mv /usr/lib/xorg/modules/drivers/modesetting_drv.so.lima /usr/lib/xorg/modules/drivers/modesetting_drv.so") UI.ArmSystem("sudo sed -i '/^#.*lima/s/^#//' /etc/ld.so.conf.d/00-arm-linux-gnueabihf.conf") UI.ArmSystem("sudo ldconfig") } else { lockfile, _ := homedir.Expand("~/.lima") UI.System("rm " + lockfile) UI.ArmSystem("sudo mv /usr/lib/xorg/modules/drivers/modesetting_drv.so /usr/lib/xorg/modules/drivers/modesetting_drv.so.lima") UI.ArmSystem("sudo sed -i 's/^[^#]*lima/#&/' /etc/ld.so.conf.d/00-arm-linux-gnueabihf.conf") UI.ArmSystem("sudo ldconfig") } time.BlockDelay(1000) UI.System("sudo reboot") } else { self.Screen.MsgBox.SetText("Do it in GameShell") self.Screen.MsgBox.Draw() self.Screen.SwapAndShow() } } func (self *GPUDriverPage) OnLoadCb() { self.PosY = 0 self.DrawOnce = false thedrv := "" if strings.Contains(runtime.GOARCH, "arm") == true { lockfile, _ := homedir.Expand("~/.lima") if UI.FileExists(lockfile) { thedrv = "modesetting" } else { thedrv = "fbturbo" } } if thedrv == "" { thedrv = "fbturbo" } for i, v := range self.MyList { if strings.Contains(v.(*PageListItem).Value, thedrv) { self.MyList[i].(*PageListItem).Active = true break } } } func (self *GPUDriverPage) KeyDown(ev *event.Event) { if ev.Data["Key"] == UI.CurKeys["A"] || ev.Data["Key"] == UI.CurKeys["Menu"] { self.ReturnToUpLevelPage() self.Screen.Draw() self.Screen.SwapAndShow() } if ev.Data["Key"] == UI.CurKeys["B"] { self.Click() } if ev.Data["Key"] == UI.CurKeys["Up"] { self.ScrollUp() self.Screen.Draw() self.Screen.SwapAndShow() } if ev.Data["Key"] == UI.CurKeys["Down"] { self.ScrollDown() self.Screen.Draw() self.Screen.SwapAndShow() } } func (self *GPUDriverPage) Draw() { self.ClearCanvas() if len(self.MyList) == 0 { return } if len(self.MyList)*UI.DefaultInfoPageListItemHeight > self.Height { self.Ps.(*ListPageSelector).Width = self.Width - 11 self.Ps.Draw() for _, v := range self.MyList { if v.(*PageListItem).PosY > self.Height+self.Height/2 { break } if v.(*PageListItem).PosY < 0 { continue } v.Draw() } self.Scroller.UpdateSize(len(self.MyList)*UI.DefaultInfoPageListItemHeight, self.PsIndex*UI.DefaultInfoPageListItemHeight) self.Scroller.Draw() } else { self.Ps.(*ListPageSelector).Width = self.Width self.Ps.Draw() for _, v := range self.MyList { if v.(*PageListItem).PosY > self.Height+self.Height/2 { break } if v.(*PageListItem).PosY < 0 { continue } v.Draw() } } if self.HWND != nil { surface.Fill(self.HWND, UI.MySkinManager.GiveColor("White")) rect_ := rect.Rect(self.PosX, self.PosY, self.Width, self.Height) surface.Blit(self.HWND, self.CanvasHWND, &rect_, nil) } }